diff options
author | friendica <info@friendica.com> | 2012-06-02 18:23:54 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-02 18:23:54 -0700 |
commit | 3d39e6e59489cf5013d7515a6e9deb2175d433ee (patch) | |
tree | b72bc909122e16bd3401ad616c7a90d650987cd8 /include | |
parent | 4978ee12d10a9a18f9fc26795e09515ef6db7949 (diff) | |
download | volse-hubzilla-3d39e6e59489cf5013d7515a6e9deb2175d433ee.tar.gz volse-hubzilla-3d39e6e59489cf5013d7515a6e9deb2175d433ee.tar.bz2 volse-hubzilla-3d39e6e59489cf5013d7515a6e9deb2175d433ee.zip |
bug #439 - remove web port number from notification email "from" address
Diffstat (limited to 'include')
-rw-r--r-- | include/enotify.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/enotify.php b/include/enotify.php index f7ef74fac..fe0f128b6 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -20,6 +20,9 @@ function notification($params) { $sender_name = $product; $hostname = $a->get_hostname(); + if(strpos($hostname,':')) + $hostname = substr($hostname,0,strpos($hostname,':')); + $sender_email = t('noreply') . '@' . $hostname; $additional_mail_header = ""; |