Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
svn co http://svn.collab.net/repos/svn/branches/1.5.x/tools/hook-scripts/mailer/ /path/to/subversion-mailer
2. Configure mailer.conf (just changing the smtp server and from and to email addresses should be enough
3. Add the following post-commit hook to all repositories
#!/bin/sh
# POST-COMMIT HOOK
#
# The post-commit hook is invoked after a commit. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-commit' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this repository)
# [2] REV (the number of the revision just committed)
REPOS="$1"
REV="$2"
/path/to/mailer.py commit "$REPOS" "$REV" /path/to/mailer/mailer.conf
Comments
Comment #1
gábor hojtsyAs-in commit message emails? That would be a great idea!
Comment #2
drummList name? Email address?
Comment #3
damien tournoud commented1.
2. Configure mailer.conf (just changing the smtp server and from and to email addresses should be enough
3. Add the following post-commit hook to all repositories
Comment #4
gerhard killesreiter commentedThe list exists at http://lists.drupal.org/listinfo/svn
We've configured it at I also put in the mailer.py configuration, I am not sure it will work, though.
Comment #5
gerhard killesreiter commentedSeems to work