From 5e9c278bd3247568e4702095cc07da0e71a613c7 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 17 Jun 2024 21:11:08 -0400 Subject: [PATCH] fixup: typo in smtp.config.php Signed-off-by: Josh --- .config/smtp.config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/smtp.config.php b/.config/smtp.config.php index 1b738de9..66a2ef7e 100644 --- a/.config/smtp.config.php +++ b/.config/smtp.config.php @@ -5,7 +5,7 @@ if (getenv('SMTP_HOST') && getenv('MAIL_FROM_ADDRESS') && getenv('MAIL_DOMAIN')) 'mail_smtphost' => getenv('SMTP_HOST'), 'mail_smtpport' => getenv('SMTP_PORT') ?: (getenv('SMTP_SECURE') ? 465 : 25), 'mail_smtpsecure' => getenv('SMTP_SECURE') ?: '', - 'mail_smtpauth' => getenv('SMTP_NAME') && (getenv('SMTP_PASSWORD') || (getenv('SMTP_PASSWORD_FILE')), + 'mail_smtpauth' => getenv('SMTP_NAME') && (getenv('SMTP_PASSWORD') || getenv('SMTP_PASSWORD_FILE')), 'mail_smtpauthtype' => getenv('SMTP_AUTHTYPE') ?: 'LOGIN', 'mail_smtpname' => getenv('SMTP_NAME') ?: '', 'mail_from_address' => getenv('MAIL_FROM_ADDRESS'),