@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
22 lines • 899 B
TypeScript
/** Exchange Account Diagnosis */
export interface ExchangeAccountDiagnosis {
/** Determines if ingoing message has been received */
canReceiveEmail: boolean;
/** Determines if outgoing message has been delivered */
canSendEmail: boolean;
/** Determines if possible to authenticate with credentials */
connectiveOWA: boolean;
/** Determines if account is locked */
isLocked: boolean;
/** Determines if MX record for account's domain is properly set */
isMxValid: boolean;
/** Determines if account is flagged as spammer */
isSpammer: boolean;
/** Determines if SRV (autodiscovery) record for account's domain is properly set */
isSrvValid: boolean;
/** Determines if account is suspended */
isSuspended: boolean;
/** Last performed diagnostics date */
lastCheck: string;
}
//# sourceMappingURL=ExchangeAccountDiagnosis.d.ts.map