diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-05-01 12:30:27 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-05-01 13:06:17 -0400 |
commit | 20f3875f1b5b319f9b35524787e67895da8acd02 (patch) | |
tree | 427f4b8751f01ba06325fb73cc4f4e884f50ab41 /apps/files_sharing | |
parent | 254b8b95065b4e2f27a8d2620f26bef65269957b (diff) | |
download | nextcloud-server-20f3875f1b5b319f9b35524787e67895da8acd02.tar.gz nextcloud-server-20f3875f1b5b319f9b35524787e67895da8acd02.zip |
Change default from address to sharing-noreply@server for emailing private links
Diffstat (limited to 'apps/files_sharing')
-rwxr-xr-x | apps/files_sharing/ajax/email.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php index c0835f4946e..b74e163b841 100755 --- a/apps/files_sharing/ajax/email.php +++ b/apps/files_sharing/ajax/email.php @@ -6,7 +6,7 @@ $user = OCP\USER::getUser(); $subject = $user + ' ' + 'shared a file with you'; $link = $_POST['link'] + '&f=' + $_POST['f']; $text = $user + ' ' + 'shared the file' + ' ' + $_POST['f'] + ' ' + 'with you.' + ' ' + 'It is available for download here:' + ' ' + $link; -$fromaddress = OC_Preferences::getValue($user, 'settings', 'email', 'owncloud.org'); +$fromaddress = OC_Preferences::getValue($user, 'settings', 'email', 'sharing-noreply@'.$_SERVER['HTTP_HOST']); OC_Mail::send($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user); ?>
\ No newline at end of file |