Follow-up Comment #4, sr #106102 (project administration):

All I did was install libsvn-notify-perl from debian etch and then just put
the contents below in /path/to/repos/phpgroupware/hooks/post-commit

#!/bin/sh
# Make sure I am 770 www-data:phpgroupware

REPOS="$1"
REV="$2"

/usr/bin/svnnotify --repos-path "$REPOS" --revision "$REV" -t
[EMAIL PROTECTED] -D phpgroupware.org -d -S

The extra flags are:

-t the email address to send the notifications to
-D the domain to append to username for messages
-d include a diff
-S send the envelop sender to the from address


in the can of savannah, you probably just want to use
/usr/bin/svnnotify --repos-path "$REPOS" --revision "$REV" -t
[EMAIL PROTECTED] -d -S -f [EMAIL PROTECTED]

-f being to set the from header

HTH

Dave

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/support/?106102>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/



_______________________________________________
phpGroupWare-developers mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/phpgroupware-developers

Reply via email to