diff options
author | friendica <info@friendica.com> | 2012-02-15 15:28:32 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-15 15:28:32 -0800 |
commit | d05442610158eb21cd3e9b9b3cd8cd3e5d56c13c (patch) | |
tree | 3f5c295ceb5f488394becb28458ff27c2e6df24a /include/notifier.php | |
parent | c965074e5343bf97a8d077e1dc00384f36f90acc (diff) | |
download | volse-hubzilla-d05442610158eb21cd3e9b9b3cd8cd3e5d56c13c.tar.gz volse-hubzilla-d05442610158eb21cd3e9b9b3cd8cd3e5d56c13c.tar.bz2 volse-hubzilla-d05442610158eb21cd3e9b9b3cd8cd3e5d56c13c.zip |
encode email headers on message deliveries
Diffstat (limited to 'include/notifier.php')
-rwxr-xr-x | include/notifier.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/notifier.php b/include/notifier.php index 53178ce53..70fd1d52c 100755 --- a/include/notifier.php +++ b/include/notifier.php @@ -35,7 +35,7 @@ function notifier_run($argv, $argc){ require_once("datetime.php"); require_once('include/items.php'); require_once('include/bbcode.php'); - + require_once('include/email.php'); load_config('config'); load_config('system'); @@ -626,14 +626,14 @@ function notifier_run($argv, $argc){ if($r1 && $r1[0]['reply_to']) $reply_to = $r1[0]['reply_to']; - $subject = (($it['title']) ? $it['title'] : t("\x28no subject\x29")) ; + $subject = (($it['title']) ? email_header_encode($it['title'],'UTF-8') : t("\x28no subject\x29")) ; // only expose our real email address to true friends if(($contact['rel'] == CONTACT_IS_FRIEND) && (! $contact['blocked'])) - $headers = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n"; + $headers = 'From: ' . email_header_encode($local_user[0]['username'],'UTF-8') . ' <' . $local_user[0]['email'] . '>' . "\n"; else - $headers = 'From: ' . $local_user[0]['username'] . ' <' . t('noreply') . '@' . $a->get_hostname() . '>' . "\n"; + $headers = 'From: ' . email_header_encode($local_user[0]['username'],'UTF-8') . ' <' . t('noreply') . '@' . $a->get_hostname() . '>' . "\n"; if($reply_to) $headers .= 'Reply-to: ' . $reply_to . "\n"; |