ts-mailcow-api
    Preparing search index...

    Interface DkimEntry

    Represents a DKIM entry returned by the Mailcow API.

    interface DkimEntry {
        dkim_selector: string;
        dkim_txt: string;
        length: string;
        privkey: string;
        pubkey: string;
    }
    Index

    Properties

    dkim_selector: string

    The DKIM selector used.

    dkim_txt: string

    The DKIM TXT record value.

    length: string

    The length of the DKIM key.

    privkey: string

    The private key associated with the DKIM entry.

    pubkey: string

    The public key associated with the DKIM entry.