]> source.dussan.org Git - nextcloud-server.git/commitdiff
Change default from address to sharing-noreply@server for emailing private links
authorMichael Gapczynski <GapczynskiM@gmail.com>
Tue, 1 May 2012 16:30:27 +0000 (12:30 -0400)
committerMichael Gapczynski <GapczynskiM@gmail.com>
Tue, 1 May 2012 17:06:17 +0000 (13:06 -0400)
apps/files_sharing/ajax/email.php

index c0835f4946e7fc389c0edf4df4bda6cfed3ca0a2..b74e163b8415af56024a811842ff56725c9b18cb 100755 (executable)
@@ -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