From e93b665cdfab3653fe3f95766b9232a1161bda4f Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Sun, 9 Feb 2014 14:27:58 -0800 Subject: [PATCH] If automatic mail file location detection is ENABLED then we need to check for the mail server --- mailboxes/index.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailboxes/index.cgi b/mailboxes/index.cgi index 5402fc323..d74b98f38 100755 --- a/mailboxes/index.cgi +++ b/mailboxes/index.cgi @@ -17,7 +17,7 @@ if ($config{'mail_system'} == 3) { &save_module_config(); } } -elsif (!$config{'send_mode'} || !$config{'auto'}) { +elsif (!$config{'send_mode'} || $config{'auto'}) { # Make sure mail system is valid local ($ms) = grep { $_->[1] == $config{'mail_system'} } @mail_system_modules;