If automatic mail file location detection is ENABLED then we need to check for the mail server

This commit is contained in:
Jamie Cameron
2014-02-09 14:27:58 -08:00
parent a9beab743b
commit e93b665cdf

View File

@@ -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;