ts-mailcow-api
    Preparing search index...

    Interface DkimEndpoints

    Interface for all DKIM endpoints related to Mailcow.

    interface DkimEndpoints {
        create(payload: CreateDkimRequest): Promise<MailcowResponse>;
        delete(payload: DeleteDkimRequest): Promise<MailcowResponse>;
        duplicate(payload: DuplicateDkimRequest): Promise<MailcowResponse>;
        get(domain: string): Promise<DkimEntry>;
    }
    Index

    Methods

    • Retrieves the DKIM public key for a specific domain.

      Parameters

      • domain: string

        The domain to retrieve the DKIM key for.

      Returns Promise<DkimEntry>

      A promise that resolves to a DkimEntry object.