/** Spam and Antyvirus configuration */
export interface SpamAndVirusConfiguration {
    /** Check DKIM of message */
    checkDKIM: boolean;
    /** Check SPF of message */
    checkSPF: boolean;
    /** If message is a spam delete it */
    deleteSpam: boolean;
    /** If message is a virus delete it */
    deleteVirus: boolean;
    /** If message is a spam or virus put in junk. Overridden by deleteSpam or deleteVirus */
    putInJunk: boolean;
    /** If message is a spam change its subject */
    tagSpam: boolean;
    /** If message is a virus change its subject */
    tagVirus: boolean;
}
//# sourceMappingURL=SpamAndVirusConfiguration.d.ts.map