aboutsummaryrefslogtreecommitdiffstats
path: root/include
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 /include
parent4117ada2fd52e8189fae547887af7711e9f8af54 (diff)
downloadvolse-hubzilla-2728cdaf2382ed64942f6a0761279f2fde55375f.tar.gz
volse-hubzilla-2728cdaf2382ed64942f6a0761279f2fde55375f.tar.bz2
volse-hubzilla-2728cdaf2382ed64942f6a0761279f2fde55375f.zip
change notify param
Diffstat (limited to 'include')
-rw-r--r--include/network.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/network.php b/include/network.php
index c23005935..d8e662083 100644
--- a/include/network.php
+++ b/include/network.php
@@ -1939,7 +1939,9 @@ function format_and_send_email($sender,$xchan,$item) {
$hostname = App::get_hostname();
if(strpos($hostname,':'))
$hostname = substr($hostname,0,strpos($hostname,':'));
- $sender_email = 'noreply' . '@' . $hostname;
+ $sender_email = get_config('system','reply_address');
+ if(! $sender_email)
+ $sender_email = 'noreply' . '@' . $hostname;
// use the EmailNotification library to send the message