noreply should not be translate-able in email addresses

This commit is contained in:
Tobias Diekershoff 2018-04-11 08:17:44 +02:00
parent 4a67bc60b0
commit ef8e984c62
2 changed files with 2 additions and 2 deletions

View File

@ -1062,7 +1062,7 @@ class App
$hostname = substr($hostname, 0, strpos($hostname, ':')); $hostname = substr($hostname, 0, strpos($hostname, ':'));
} }
$sender_email = L10n::t('noreply') . '@' . $hostname; $sender_email = 'noreply@' . $hostname;
} }
return $sender_email; return $sender_email;

View File

@ -399,7 +399,7 @@ class Delivery {
$headers = 'From: '.Email::encodeHeader($local_user[0]['username'],'UTF-8').' <'.$local_user[0]['email'].'>'."\n"; $headers = 'From: '.Email::encodeHeader($local_user[0]['username'],'UTF-8').' <'.$local_user[0]['email'].'>'."\n";
} }
} else { } else {
$headers = 'From: '. Email::encodeHeader($local_user[0]['username'],'UTF-8') .' <'. L10n::t('noreply') .'@'.$a->get_hostname() .'>'. "\n"; $headers = 'From: '. Email::encodeHeader($local_user[0]['username'],'UTF-8') .' <noreply@'.$a->get_hostname() .'>'. "\n";
} }
//if ($reply_to) //if ($reply_to)