This commit is contained in:
2025-05-21 10:38:22 +00:00
parent ecb913843c
commit b0a0078ad0
6 changed files with 227 additions and 261 deletions

View File

@ -205,6 +205,16 @@ export interface ISmtpServerOptions {
*/
methods: ('PLAIN' | 'LOGIN' | 'OAUTH2')[];
};
/**
* Socket timeout in milliseconds (default: 5 minutes)
*/
socketTimeout?: number;
/**
* Initial connection timeout in milliseconds (default: 30 seconds)
*/
connectionTimeout?: number;
}
/**