Some email clients (e.g. claws-mail) incorrectly display message body when there is no Content-Type header and charset explicitly defined. So, set explicitly Content-Type header. Its charset can be defined with hooks.emailcharset config variable. NB: This above-mentioned charset may differ from i18n.logOutputEncoding, because e.g. gitweb expects (for now) i18n.logOutputEncoding set to UTF-8 to display logs correctly. Also, introduce hooks.gitopts config variable with the default '-c core.quotepath=false'. This takes into account that we want to see pretty email-message with well-looking messages and list of changed filenames. And usually non-ASCII filenames are in the same encoding that commit messages are. Signed-off-by: Alexey Shumkin <Alex.Crezoff@xxxxxxxxx> --- contrib/hooks/post-receive-email | 43 ++++++++++++++++++++++++++----------- 1 files changed, 30 insertions(+), 13 deletions(-) diff --git a/contrib/hooks/post-receive-email b/contrib/hooks/post-receive-email index ba077c1..913be89 100755 --- a/contrib/hooks/post-receive-email +++ b/contrib/hooks/post-receive-email @@ -65,6 +65,14 @@ # Default is "--stat --summary --find-copies-harder". Add -p to those # options to include a unified diff of changes in addition to the usual # summary output. +# hooks.gitopts +# git options for the git diff-tree invocation that shows changes. +# Default is '-c core.quotepath=false' to be able to see non-ASCII filenames +# used in a project. +# hooks.emailcharset +# The charset used in Content-Type header. UTF-8, if not specified. +# It can differ from i18n.logOutputEncoding (not to mess-up with gitweb +# which expects i18n.logOutputEncoding to be set to UTF-8) # # Notes # ----- @@ -234,6 +242,9 @@ generate_email_header() cat <<-EOF To: $recipients Subject: ${emailprefix}$projectdesc $refname_type $short_refname ${change_type}d. $describe + MIME-Version: 1.0 + Content-Type: text/plain; charset=$emailcharset + Content-Transfer-Encoding: 8bit X-Git-Refname: $refname X-Git-Reftype: $refname_type X-Git-Oldrev: $oldrev @@ -241,7 +252,7 @@ generate_email_header() This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing - the project "$projectdesc". + the project "$projectdesc_e". The $refname_type, $short_refname has been ${change_type}d EOF @@ -255,7 +266,7 @@ generate_email_footer() hooks/post-receive --${SPACE} - $projectdesc + $projectdesc_e EOF } @@ -451,7 +462,7 @@ generate_update_branch_email() # non-fast-forward updates. echo "" echo "Summary of changes:" - git diff-tree $diffopts $oldrev..$newrev + git $gitopts diff-tree $diffopts $oldrev..$newrev } # @@ -656,14 +667,15 @@ show_new_revisions() revspec=$oldrev..$newrev fi + revlistopts="-c i18n.logOutputEncoding=$emailcharset" other_branches=$(git for-each-ref --format='%(refname)' refs/heads/ | grep -F -v $refname) git rev-parse --not $other_branches | if [ -z "$custom_showrev" ] then - git rev-list --pretty --stdin $revspec + git $revlistopts rev-list --pretty --stdin $revspec else - git rev-list --stdin $revspec | + git $revlistopts $rev-list --stdin $revspec | while read onerev do eval $(printf "$custom_showrev" $onerev) @@ -714,14 +726,6 @@ if [ -z "$GIT_DIR" ]; then exit 1 fi -projectdesc=$(sed -ne '1p' "$GIT_DIR/description" 2>/dev/null) -# Check if the description is unchanged from it's default, and shorten it to -# a more manageable length if it is -if expr "$projectdesc" : "Unnamed repository.*$" >/dev/null -then - projectdesc="UNNAMED PROJECT" -fi - recipients=$(git config hooks.mailinglist) announcerecipients=$(git config hooks.announcelist) envelopesender=$(git config hooks.envelopesender) @@ -730,6 +734,19 @@ custom_showrev=$(git config hooks.showrev) maxlines=$(git config hooks.emailmaxlines) diffopts=$(git config hooks.diffopts) : ${diffopts:="--stat --summary --find-copies-harder"} +gitopts=$(git config hooks.gitopts || echo '-c core.quotepath=false') +emailcharset=$(git config hooks.emailcharset || echo 'UTF-8') + +projectdesc=$(sed -ne '1p' "$GIT_DIR/description" 2>/dev/null) +# Check if the description is unchanged from it's default, and shorten it to +# a more manageable length if it is +if expr "$projectdesc" : "Unnamed repository.*$" >/dev/null +then + projectdesc="UNNAMED PROJECT" +fi +# Leave description in UTF-8 to be used in the Subject header +# But convert it to an hooks.emailcharset encoding to be used in a message body +projectdesc_e=$(echo $projectdesc | iconv -f UTF-8 -t $emailcharset 2>/dev/null) # --- Main loop # Allow dual mode: run from the command line just like the update hook, or -- 1.7.7.3.5.g55178 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html