[aur-dev] [PATCH 3/6] Add threading headers to request notification mails
Lukas Fleischer
archlinux at cryptocrack.de
Wed Jun 25 15:58:58 EDT 2014
This allows for grouping mails that belong to the same request.
Signed-off-by: Lukas Fleischer <archlinux at cryptocrack.de>
---
web/lib/pkgbasefuncs.inc.php | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/web/lib/pkgbasefuncs.inc.php b/web/lib/pkgbasefuncs.inc.php
index 68dd656..bab8f4c 100644
--- a/web/lib/pkgbasefuncs.inc.php
+++ b/web/lib/pkgbasefuncs.inc.php
@@ -1038,6 +1038,7 @@ function pkgbase_file_request($ids, $type, $merge_into, $comments) {
$q.= $dbh->quote($merge_into) . ", " . $uid . ", ";
$q.= $dbh->quote($comments) . ", UNIX_TIMESTAMP())";
$dbh->exec($q);
+ $request_id = $dbh->lastInsertId();
/*
* Send e-mail notifications.
@@ -1077,8 +1078,11 @@ function pkgbase_file_request($ids, $type, $merge_into, $comments) {
if (!empty($bcc)) {
$headers .= "Bcc: $bcc\r\n";
}
+ $thread_id = "<pkg-request-" . $request_id . "@aur.archlinux.org>";
$headers .= "Reply-to: noreply at aur.archlinux.org\r\n" .
"From: notify at aur.archlinux.org\r\n" .
+ "In-Reply-To: $thread_id\r\n" .
+ "References: $thread_id\r\n" .
"X-Mailer: AUR";
@mail($AUR_REQUEST_ML, "AUR " . ucfirst($type) . " Request for " .
$row['Name'], $body, $headers);
--
2.0.0
More information about the aur-dev
mailing list