mirror of
https://github.com/friendica/friendica
synced 2024-11-20 11:43:41 +00:00
bug #439 - remove web port number from notification email "from" address
This commit is contained in:
parent
4978ee12d1
commit
3d39e6e594
1 changed files with 3 additions and 0 deletions
|
@ -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 = "";
|
||||
|
||||
|
|
Loading…
Reference in a new issue