We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 088d34b commit 0d4fa4dCopy full SHA for 0d4fa4d
core/src/util/input_output.rs
@@ -96,7 +96,7 @@ pub struct CheckEmailInput {
96
/// Add timeout for the SMTP verification step. Set to None if you don't
97
/// want to use a timeout.
98
///
99
- /// Defaults to 10s.
+ /// Defaults to 15s.
100
pub smtp_timeout: Option<Duration>,
101
/// For Yahoo email addresses, use Yahoo's API instead of connecting
102
/// directly to their SMTP servers.
@@ -147,7 +147,7 @@ impl Default for CheckEmailInput {
147
proxy: None,
148
smtp_port: 25,
149
smtp_security: SmtpSecurity::default(),
150
- smtp_timeout: Some(Duration::from_secs(10)),
+ smtp_timeout: Some(Duration::from_secs(15)),
151
yahoo_use_api: true,
152
gmail_use_api: false,
153
microsoft365_use_api: false,
0 commit comments