From 978a5cf4c286eb3d806e1730b682afb68dbb7a9c Mon Sep 17 00:00:00 2001 From: Michael Krieger Date: Thu, 5 Mar 2020 18:07:34 -0500 Subject: [PATCH] Update functions.inc.php --- functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.inc.php b/functions.inc.php index b2157ca1..e2f2f18e 100644 --- a/functions.inc.php +++ b/functions.inc.php @@ -266,7 +266,7 @@ function check_domain($domain) { * @return string empty if the domain is valid, otherwise string with the errormessage */ function check_localaliasonly($domain) { - // If emailcheck_localonly_domain is set to 'YES', disallow aliases to remote servers (but allow aliases on this server) + // If emailcheck_localaliasonly is set to 'YES', disallow aliases to remote servers (but allow aliases on this server) if (Config::bool('emailcheck_localaliasonly')) { // get the domain part of the e-mail list(/*NULL*/, $domain) = explode('@', $domain);