diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-02 04:10:51 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-02 04:10:51 +0000 |
commit | ec732a63601adb4755b3356d1b1f487975279ba3 (patch) | |
tree | 0e7f76b0b8d7aff3498a60b8f838cda236d4b20c /modules/system | |
parent | 3b427fae37f1c706a65f987c6472fe41039f996c (diff) | |
download | brdo-ec732a63601adb4755b3356d1b1f487975279ba3.tar.gz brdo-ec732a63601adb4755b3356d1b1f487975279ba3.tar.bz2 |
#239825 follow-up: Adjusting comments.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/mail.sending.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/system/mail.sending.inc b/modules/system/mail.sending.inc index c0f0738ad..f80b6953c 100644 --- a/modules/system/mail.sending.inc +++ b/modules/system/mail.sending.inc @@ -50,7 +50,9 @@ class DefaultMailSystem implements MailSystemInterface { $message['to'], mime_header_encode($message['subject']), // Note: e-mail uses CRLF for line-endings. PHP's API requires LF - // on Unix and CRLF on Windows. See mail_line_endings in settings.php. + // on Unix and CRLF on Windows. Drupal automatically guesses the + // line-ending format appropriate for your system. If you need to + // override this, adjust $conf['mail_line_endings'] in settings.php. preg_replace('@\r?\n@', $line_endings, $message['body']), // For headers, PHP's API suggests that we use CRLF normally, // but some MTAs incorrectly replace LF with CRLF. See #234403. |