aboutsummaryrefslogtreecommitdiffstats
path: root/CVSROOT/cfg.pm
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2001-10-23 23:47:26 +0800
committerjoe <joe@FreeBSD.org>2001-10-23 23:47:26 +0800
commit6897c4288a1bd44840f0adce4517451cf8f4c9de (patch)
tree94f5e8d1b05779147b35765ba9bf3a664f473335 /CVSROOT/cfg.pm
parent0ad42b286162f3c3b7f70f0f6151e5e19b8c69a3 (diff)
downloadfreebsd-ports-gnome-6897c4288a1bd44840f0adce4517451cf8f4c9de.tar.gz
freebsd-ports-gnome-6897c4288a1bd44840f0adce4517451cf8f4c9de.tar.zst
freebsd-ports-gnome-6897c4288a1bd44840f0adce4517451cf8f4c9de.zip
Move the mail header that carries the list of branches that were
committed to into the config file.
Diffstat (limited to 'CVSROOT/cfg.pm')
-rwxr-xr-xCVSROOT/cfg.pm10
1 files changed, 9 insertions, 1 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm
index 219751242d53..f9f1c3ebc4e5 100755
--- a/CVSROOT/cfg.pm
+++ b/CVSROOT/cfg.pm
@@ -11,7 +11,8 @@
package cfg;
use strict;
use vars qw($DEBUG $FILE_PREFIX $MAILADDRS $MAILBANNER $MAILCMD
- $MAIL_ON_DIR_CREATION $TMPDIR %TEMPLATE_HEADERS
+ $MAIL_BRANCH_HDR $MAIL_ON_DIR_CREATION
+ $TMPDIR %TEMPLATE_HEADERS
$CHECK_HEADERS $LAST_FILE $PID $IDHEADER $UNEXPAND_RCSID);
@@ -103,6 +104,10 @@ $MAILBANNER = "";
# 0 = off, 1 = on.
$MAIL_ON_DIR_CREATION = 0;
+# Include the names of the branches committed to in the commit email,
+# using this header. (leave off the trailing ':'). Use "" if you don't
+# want one.
+$MAIL_BRANCH_HDR = "X-CVS-Branch";
##############################################################
@@ -125,6 +130,9 @@ if ($hostname =~ /^(freefall|internat)\.freebsd\.org$/i) {
$MAILBANNER = "FreeBSD International Crypto Repository";
}
$MAILADDRS = $meister if $DEBUG;
+
+
+ $MAIL_BRANCH_HDR = "X-FreeBSD-CVS-Branch:";
}