From f5e1652bf95ed7b63a27042d8bb8b1195d7c9158 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 8 Mar 2012 11:43:48 +0100 Subject: Always set the "To:" header when sending mail Use "undisclosed-recipients: ;" when sending mass notifications (such as comment notifications and the like. Addresses FS#28229. Signed-off-by: Lukas Fleischer --- web/template/pkg_comment_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/template') diff --git a/web/template/pkg_comment_form.php b/web/template/pkg_comment_form.php index a2bbf71..7606ce9 100644 --- a/web/template/pkg_comment_form.php +++ b/web/template/pkg_comment_form.php @@ -43,7 +43,7 @@ if (isset($_REQUEST['comment'])) { $body = wordwrap($body, 70); $bcc = implode(', ', $bcc); $headers = "Bcc: $bcc\nReply-to: nobody@archlinux.org\nFrom: aur-notify@archlinux.org\nX-Mailer: AUR\n"; - @mail(' ', "AUR Comment for " . $row['Name'], $body, $headers); + @mail('undisclosed-recipients: ;', "AUR Comment for " . $row['Name'], $body, $headers); } } -- cgit v1.2.3-54-g00ecf