Clarify comment

This commit is contained in:
Bruno Bernardino 2025-12-20 11:48:43 +00:00 committed by GitHub
parent 428b5a1a91
commit fdddb1a9f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -208,7 +208,7 @@ export interface Config {
port: number;
/** “auto” means “immediate” on port 465, “starttls” otherwise; `null` is legacy behaviour that will be removed in v4: on port 465 it also means “immediate”, otherwise it will use opportunistic StartTLS falling back to plain transmission */
tlsMode: null | "auto" | "immediate" | "starttls" | "none";
/** Whether to verify the TLS certificate, if a string is used the hostname will be verified using that name */
/** Whether to verify the TLS certificate. If a string is used the hostname will be verified using that name. */
tlsVerify: boolean | string;
};
contacts: {