From 299c70e1ccf19768fce415e673304378b714b181 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Sun, 16 Aug 2020 03:00:27 +0300 Subject: [PATCH] configure: add "mail." to smtp_server when configuring SMTP --- src/configure/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configure/mod.rs b/src/configure/mod.rs index 2e133d10a..011c7e591 100644 --- a/src/configure/mod.rs +++ b/src/configure/mod.rs @@ -550,7 +550,7 @@ async fn try_smtp_hostnames( } progress!(context, 850); - param.mail_server = "mail.".to_string() + ¶m_domain; + param.send_server = "mail.".to_string() + ¶m_domain; try_smtp_ports(context, param, smtp).await } else { progress!(context, 850);