diff --git a/app/fax/fax_edit.php b/app/fax/fax_edit.php index 67b6d62b5f..f21c48eac6 100644 --- a/app/fax/fax_edit.php +++ b/app/fax/fax_edit.php @@ -246,7 +246,7 @@ foreach ($fax_email_outbound_authorized_senders as $sender_num => $sender) { if ($sender == '' || !valid_email($sender)) { unset($fax_email_outbound_authorized_senders[$sender_num]); } } - $fax_email_outbound_authorized_senders = implode(',', $fax_email_outbound_authorized_senders); + $fax_email_outbound_authorized_senders = strtolower(implode(',', $fax_email_outbound_authorized_senders)); } if ($action == "add" && permission_exists('fax_extension_add')) {