aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Enotify.php
diff options
context:
space:
mode:
authorredmatrix <mike@macgirvin.com>2016-09-29 17:54:11 -0700
committerredmatrix <mike@macgirvin.com>2016-09-29 17:54:11 -0700
commit2728cdaf2382ed64942f6a0761279f2fde55375f (patch)
tree742d852c02ca598a414a3d21c02808507fe9091b /Zotlabs/Lib/Enotify.php
parent4117ada2fd52e8189fae547887af7711e9f8af54 (diff)
downloadvolse-hubzilla-2728cdaf2382ed64942f6a0761279f2fde55375f.tar.gz
volse-hubzilla-2728cdaf2382ed64942f6a0761279f2fde55375f.tar.bz2
volse-hubzilla-2728cdaf2382ed64942f6a0761279f2fde55375f.zip
change notify param
Diffstat (limited to 'Zotlabs/Lib/Enotify.php')
-rw-r--r--Zotlabs/Lib/Enotify.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php
index 421d310d9..0a15e9fe5 100644
--- a/Zotlabs/Lib/Enotify.php
+++ b/Zotlabs/Lib/Enotify.php
@@ -70,7 +70,10 @@ class Enotify {
$hostname = substr($hostname,0,strpos($hostname,':'));
// Do not translate 'noreply' as it must be a legal 7-bit email address
- $sender_email = 'noreply' . '@' . $hostname;
+
+ $sender_email = get_config('system','reply_address');
+ if(! $sender_email)
+ $sender_email = 'noreply' . '@' . $hostname;
$additional_mail_header = "";