From 8fb817e1825744f00c927a10810ae789db9b9b67 Mon Sep 17 00:00:00 2001 From: kink Date: Sun, 18 May 2003 11:52:50 +0000 Subject: [PATCH] Make this test accept uppercase values, eg as supplied by administrator plugin (fixes #734895). git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4880 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- config/conf.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/conf.pl b/config/conf.pl index ac66f420..99bb4c5a 100755 --- a/config/conf.pl +++ b/config/conf.pl @@ -246,7 +246,7 @@ while ( $line = ) { } } close FILE; -if ( $useSendmail ne "true" ) { +if ( lc($useSendmail) ne "true" ) { $useSendmail = "false"; } if ( !$sendmail_path ) { -- 2.25.1