From 99248d00a8e16d2c9b5945994e54807d8d522966 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sat, 25 Jan 2025 17:10:29 +0100 Subject: Fix default port --- src/configuration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/configuration.rs b/src/configuration.rs index 15216a8..1c8741d 100644 --- a/src/configuration.rs +++ b/src/configuration.rs @@ -48,7 +48,7 @@ impl Configuration { local_port: get_env_number("LOCAL_SMTP_PORT", 25)?, bind_address: get_env_var("LOCAL_SMTP_BIND_ADDRESS", Some("0.0.0.0".to_string()))?, remote_host: get_env_var("REMOTE_SMTP_HOST", None)?, - remote_port: get_env_number("REMOTE_SMTP_PORT", 993)?, + remote_port: get_env_number("REMOTE_SMTP_PORT", 465)?, protocol: "SMTP", }), }) -- cgit