From 1f736301361662a99f0e9d39dccb23954c6d96b6 Mon Sep 17 00:00:00 2001 From: Justus Dicker Date: Wed, 20 Aug 2025 23:50:52 +0200 Subject: [PATCH] fix typo in description of helo_name (#6194) fix(config): also correct typo in config.rs --- .env.template | 2 +- src/config.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.template b/.env.template index e31e2f34..1e9a189e 100644 --- a/.env.template +++ b/.env.template @@ -611,7 +611,7 @@ # SMTP_AUTH_MECHANISM= ## Server name sent during the SMTP HELO -## By default this value should be is on the machine's hostname, +## By default this value should be the machine's hostname, ## but might need to be changed in case it trips some anti-spam filters # HELO_NAME= diff --git a/src/config.rs b/src/config.rs index 545d7dce..6d375a96 100644 --- a/src/config.rs +++ b/src/config.rs @@ -776,7 +776,7 @@ make_config! { smtp_auth_mechanism: String, true, option; /// SMTP connection timeout |> Number of seconds when to stop trying to connect to the SMTP server smtp_timeout: u64, true, def, 15; - /// Server name sent during HELO |> By default this value should be is on the machine's hostname, but might need to be changed in case it trips some anti-spam filters + /// Server name sent during HELO |> By default this value should be the machine's hostname, but might need to be changed in case it trips some anti-spam filters helo_name: String, true, option; /// Embed images as email attachments. smtp_embed_images: bool, true, def, true;