docker: remove even more unnecessary env vars

This commit is contained in:
Abdullah Atta
2024-08-29 12:19:37 +05:00
parent 63069ae573
commit f3216330a1
5 changed files with 5 additions and 22 deletions

View File

@@ -179,7 +179,7 @@ namespace Streetwriters.Identity.Services
{
if (int.TryParse(Constants.SMTP_PORT, out int port))
{
await mailClient.ConnectAsync(Constants.SMTP_HOST, port, MailKit.Security.SecureSocketOptions.StartTls);
await mailClient.ConnectAsync(Constants.SMTP_HOST, port, MailKit.Security.SecureSocketOptions.Auto);
}
else
{