From 8fdd8434265affbbf64ce23c5f273809d2465c8f Mon Sep 17 00:00:00 2001 From: Roland Becker Date: Tue, 7 Feb 2017 23:06:42 +0100 Subject: [PATCH] Correct documentation of option limit_email_domains Fixes #22335 --- docbook/Admin_Guide/en-US/config/email.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docbook/Admin_Guide/en-US/config/email.xml b/docbook/Admin_Guide/en-US/config/email.xml index 846a84f961..bc1771a848 100644 --- a/docbook/Admin_Guide/en-US/config/email.xml +++ b/docbook/Admin_Guide/en-US/config/email.xml @@ -254,14 +254,14 @@ $g_notify_flags['new'] = array( - $g_limit_email_domain + $g_limit_email_domains - Only allow and send email to addresses in the given domain. + Only allow and send email to addresses in the given domain(s). This is useful as a security feature and it is also useful in cases like Sourceforge where its servers are only limited to send emails to SourceForge email addresses in order to avoid - spam. $g_limit_email_domain = - 'users.sourceforge.net'; + spam. $g_limit_email_domains = + array( 'users.sourceforge.net', 'sourceforge.net' );