From 20f3875f1b5b319f9b35524787e67895da8acd02 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 1 May 2012 12:30:27 -0400 Subject: [PATCH] Change default from address to sharing-noreply@server for emailing private links --- apps/files_sharing/ajax/email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php index c0835f4946..b74e163b84 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