From b3350f5b3787bffc47ebcaaf0e87c781d37cbb50 Mon Sep 17 00:00:00 2001 From: "Maarten Kossen (mpkossen)" Date: Sun, 31 Mar 2024 07:42:03 -0500 Subject: [PATCH] Capitalize SMTP auth command for broader compatibility. --- mailboxes/boxes-lib.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailboxes/boxes-lib.pl b/mailboxes/boxes-lib.pl index 73fba45e7..4eeeea74d 100755 --- a/mailboxes/boxes-lib.pl +++ b/mailboxes/boxes-lib.pl @@ -965,7 +965,7 @@ elsif ($sm) { 'pass' => $pass } ); &error("Failed to create Authen::SASL object") if (!$sasl); local $conn = $sasl->client_new("smtp", &get_system_hostname()); - local $arv = &smtp_command($h, "auth $auth\r\n", 1); + local $arv = &smtp_command($h, uc "auth $auth\r\n", 1); if ($arv =~ /^(334)(\-\S+)?\s+(.*)/) { # Server says to go ahead $extra = $3;