summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-04-24 19:49:01 +0000
committerDries Buytaert <dries@buytaert.net>2007-04-24 19:49:01 +0000
commit91da5f05e4226cd65d11b1aed9ba37defa9f6672 (patch)
tree148e137da3c40cceaf06292b20fafafe79b81d76 /modules
parent359ace36e6a56f815d1bf6e8e03eed5e11badab5 (diff)
downloadbrdo-91da5f05e4226cd65d11b1aed9ba37defa9f6672.tar.gz
brdo-91da5f05e4226cd65d11b1aed9ba37defa9f6672.tar.bz2
- Patch #133789 by John Albin: Drupal-generated email can look like spam.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.module3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index f9cc1b336..55282f3a8 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -574,7 +574,8 @@ function system_site_information_settings() {
'#type' => 'textfield',
'#title' => t('E-mail address'),
'#default_value' => variable_get('site_mail', ini_get('sendmail_from')),
- '#description' => t('A valid e-mail address for this website, used by the auto-mailer during registration, new password requests, notifications, etc.')
+ '#description' => t('A valid e-mail address to be used as the "From" address by the auto-mailer during registration, new password requests, notifications, etc. To lessen the likelihood of e-mail being marked as spam, this e-mail address should use the same domain as the website.'),
+ '#required' => TRUE,
);
$form['site_slogan'] = array(
'#type' => 'textfield',