Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2012-05-01 20:30:27 +0400
committerMichael Gapczynski <GapczynskiM@gmail.com>2012-05-01 21:06:17 +0400
commit20f3875f1b5b319f9b35524787e67895da8acd02 (patch)
tree427f4b8751f01ba06325fb73cc4f4e884f50ab41 /apps/files_sharing
parent254b8b95065b4e2f27a8d2620f26bef65269957b (diff)
Change default from address to sharing-noreply@server for emailing private links
Diffstat (limited to 'apps/files_sharing')
-rwxr-xr-xapps/files_sharing/ajax/email.php2
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