After git tag foo && git push --tags the commit message produced by git-commit-notifier got stuck in mailman's moderation queue.
Closer inspection revealed that it was sent with a From: mg@fridge.pov.lt header instead of the expected From: Marius Gedminas <marius@pov.lt>.
If git-commit-notifier doesn't have enough metadata (this is a lightweight tag after all) and has to fall back to the Unix user account who ran the post-receive hook, it could at least use that user's ~/.gitconfig to get appropriate user.name and user.email.
After
git tag foo && git push --tagsthe commit message produced by git-commit-notifier got stuck in mailman's moderation queue.Closer inspection revealed that it was sent with a
From: mg@fridge.pov.ltheader instead of the expectedFrom: Marius Gedminas <marius@pov.lt>.If git-commit-notifier doesn't have enough metadata (this is a lightweight tag after all) and has to fall back to the Unix user account who ran the post-receive hook, it could at least use that user's
~/.gitconfigto get appropriate user.name and user.email.