contrib/hooks/post-receive-email: make subject prefix configurable

Email subjects are prefixed with "[SCM] " by default, make this optionally
configurable through the hooks.emailprefix config option.

Suggested by martin f krafft through
 http://bugs.debian.org/428418

Signed-off-by: Gerrit Pape <pape@smarden.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Gerrit Pape 2007-11-06 13:49:30 +00:00 committed by Junio C Hamano
parent 15a2f53011
commit e7509ee388

View File

@ -35,10 +35,12 @@
# hooks.envelopesender # hooks.envelopesender
# If set then the -f option is passed to sendmail to allow the envelope # If set then the -f option is passed to sendmail to allow the envelope
# sender address to be set # sender address to be set
# hooks.emailprefix
# All emails have their subjects prefixed with this prefix, or "[SCM]"
# if emailprefix is unset, to aid filtering
# #
# Notes # Notes
# ----- # -----
# All emails have their subjects prefixed with "[SCM]" to aid filtering.
# All emails include the headers "X-Git-Refname", "X-Git-Oldrev", # All emails include the headers "X-Git-Refname", "X-Git-Oldrev",
# "X-Git-Newrev", and "X-Git-Reftype" to enable fine tuned filtering and # "X-Git-Newrev", and "X-Git-Reftype" to enable fine tuned filtering and
# give information for debugging. # give information for debugging.
@ -188,7 +190,7 @@ generate_email_header()
# Generate header # Generate header
cat <<-EOF cat <<-EOF
To: $recipients To: $recipients
Subject: ${EMAILPREFIX}$projectdesc $refname_type, $short_refname, ${change_type}d. $describe Subject: ${emailprefix}$projectdesc $refname_type, $short_refname, ${change_type}d. $describe
X-Git-Refname: $refname X-Git-Refname: $refname
X-Git-Reftype: $refname_type X-Git-Reftype: $refname_type
X-Git-Oldrev: $oldrev X-Git-Oldrev: $oldrev
@ -604,7 +606,6 @@ send_mail()
# ---------------------------- main() # ---------------------------- main()
# --- Constants # --- Constants
EMAILPREFIX="[SCM] "
LOGBEGIN="- Log -----------------------------------------------------------------" LOGBEGIN="- Log -----------------------------------------------------------------"
LOGEND="-----------------------------------------------------------------------" LOGEND="-----------------------------------------------------------------------"
@ -628,6 +629,7 @@ fi
recipients=$(git repo-config hooks.mailinglist) recipients=$(git repo-config hooks.mailinglist)
announcerecipients=$(git repo-config hooks.announcelist) announcerecipients=$(git repo-config hooks.announcelist)
envelopesender=$(git-repo-config hooks.envelopesender) envelopesender=$(git-repo-config hooks.envelopesender)
emailprefix=$(git-repo-config hooks.emailprefix || echo '[SCM] ')
# --- Main loop # --- Main loop
# Allow dual mode: run from the command line just like the update hook, or # Allow dual mode: run from the command line just like the update hook, or