From 68ea4a368d293b3d2cf0d470af817ec300fd3553 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 20 Apr 2010 17:49:33 +0100 Subject: [PATCH] Substitute the message number for [REFERENCE] in added-headers, if present --- stump/bin/processApproved | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/stump/bin/processApproved b/stump/bin/processApproved index 1b2f176..a62333e 100755 --- a/stump/bin/processApproved +++ b/stump/bin/processApproved @@ -31,7 +31,12 @@ post() { ( echo Path: "$PATH_SUFFIX" - cat $MNG_ROOT/etc/added-headers | grep ': ' + perl <$MNG_ROOT/etc/added-headers -ne ' + next unless m/\:/; + s/\[REFERENCE\]/[$ENV{"WEBSTUMP_MESSAGENUM"}]/g + if defined $ENV{"WEBSTUMP_MESSAGENUM"}; + print or die $!; + ' # I do grep above because a lot of users inserts empty # lines in the added headers. -- 2.30.2