diff options
author | joe <joe@FreeBSD.org> | 2001-10-23 23:47:26 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-10-23 23:47:26 +0800 |
commit | 6897c4288a1bd44840f0adce4517451cf8f4c9de (patch) | |
tree | 94f5e8d1b05779147b35765ba9bf3a664f473335 /CVSROOT/cfg.pm | |
parent | 0ad42b286162f3c3b7f70f0f6151e5e19b8c69a3 (diff) | |
download | freebsd-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-x | CVSROOT/cfg.pm | 10 |
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:"; } |