Initialize SMTP client with port number

This commit is contained in:
Kitaiti Makoto 2022-01-03 18:09:26 +09:00
parent 6f8d5c1eb4
commit 8888dbba0a
1 changed files with 2 additions and 2 deletions

View File

@ -51,13 +51,13 @@ mod mailer {
extension::ClientId,
ConnectionReuseParameters, SmtpClient, SmtpTransport,
};
use plume_models::CONFIG;
use plume_models::{SmtpNewWithAddr, CONFIG};
pub type Mailer = Option<SmtpTransport>;
pub fn init() -> Mailer {
let config = CONFIG.mail.as_ref()?;
let mail = SmtpClient::new_simple(&config.server)
let mail = SmtpClient::new_with_addr((&config.server, config.port))
.unwrap()
.hello_name(ClientId::Domain(config.helo_name.clone()))
.credentials(Credentials::new(