Index: CVSROOT/loginfo =================================================================== RCS file: /usr/local/cvsroot/CVSROOT/loginfo,v diff -u -r1.9 -r1.10 --- CVSROOT/loginfo 9 Feb 2004 14:49:36 -0000 1.9 +++ CVSROOT/loginfo 9 Feb 2004 18:22:54 -0000 1.10 @@ -24,9 +24,13 @@ #DEFAULT (echo ""; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog # or #DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog -ALL /cvsroot/CVSROOT/log.pl -f /cvsroot/CVSROOT/commitlog -m openacs-cvs-list@openacs.org %s +# bdolicki 9 Feb 2004 +# Removed the -m option because now we are sending diffs with the line below. +#ALL /cvsroot/CVSROOT/log.pl -f /cvsroot/CVSROOT/commitlog -m openacs-cvs-list@openacs.org %s +ALL /cvsroot/CVSROOT/log.pl -f /cvsroot/CVSROOT/commitlog %s + # bdolicki 9 Feb 2004 # postcomit_actions is a Python script borrowed from zope.org. It does two # things: @@ -35,9 +39,14 @@ # variables in postcomit_actions and traffic_table.py # (2) takes care of symlinks in the repository. It uses adjustlinks.py. Its # config file is repolinks. We are NOT using this feature right now. -^CVSROOT ${CVSROOT}/CVSROOT/postcommit_actions %{sVv} -^openacs-4 ${CVSROOT}/CVSROOT/postcommit_actions %{sVv} +# Here's how you configure this stuff: +# * In postcommit_actions you can set some variables such as CVSMASTER and +# OFFICIAL_SENDER +# * In traffic_table.py you can control which email addresses get alerted +# near the end of the file +ALL ${CVSROOT}/CVSROOT/postcommit_actions %{sVv} + # RBM: 2002-08-30: Add cvs-to-forums script invocation # ALL /cvsroot/CVSROOT/log-new.tcl -l /cvsroot/CVSROOT/commitlog -e cvs@openacs.org -d :5433:openacs.org -u nsadmin -f "CVS Commits" %s Index: CVSROOT/postcommit_actions =================================================================== RCS file: /usr/local/cvsroot/CVSROOT/Attic/postcommit_actions,v diff -u -r1.4 -r1.5 --- CVSROOT/postcommit_actions 9 Feb 2004 14:39:18 -0000 1.4 +++ CVSROOT/postcommit_actions 9 Feb 2004 18:22:54 -0000 1.5 @@ -1,4 +1,4 @@ -#!/var/tmp/py/bin/python2.3 +#!/usr/local/bin/python2.3 # Adapted by bdolicki for openacs.org # Changes to http://dev.zope.org/CVS/postcommit_actions : @@ -69,7 +69,7 @@ LDAP_HOST = "your.ldap.host" # 002 TODO is it OK to use this address? #OFFICIAL_SENDER = "cvs-admin@your.domain" -OFFICIAL_SENDER = "openacs-cvs-list-admin@willfork.com" +OFFICIAL_SENDER = "webmaster@openacs.org" # 003 MY_DOMAIN = "openacs.org" @@ -99,7 +99,7 @@ # Notices about any caught malfunctions will be sent to this address. # 002 TODO is it OK to use this address? #CVSMASTER = "cvs-admin@zope.com" -CVSMASTER = "openacs-cvs-list-admin@willfork.com" +CVSMASTER = "oct@openacs.org" # You have to plug in the recipients email address via '%' string formatting. MAIL_CMD = "/usr/lib/sendmail -t -f %s" Index: CVSROOT/traffic_table.py =================================================================== RCS file: /usr/local/cvsroot/CVSROOT/traffic_table.py,v diff -u -r1.2 -r1.3 --- CVSROOT/traffic_table.py 9 Feb 2004 14:49:36 -0000 1.2 +++ CVSROOT/traffic_table.py 9 Feb 2004 18:22:54 -0000 1.3 @@ -5,6 +5,7 @@ # 003 No catchall # 004 No repolinks (this isn't really necessary because we don't have # any symlinks in the repository) +# 005 No internal address """Table dictating what goes where for the traffic_cop module. @@ -30,7 +31,8 @@ # 001 #internal = ["project-cvs@my.YOURHOST.com", "project-log@my.YOURHOST.com"] # Some openacs.org aliases would be helpful here -internal = ["openacs-cvs-list-admin@willfork.com", "davis@xarg.net"] +# 005 +# internal = ["webmaster@openacs.org"] _TABLE = [] @@ -57,7 +59,9 @@ add_to_table([ # CVSROOT entry is crucial: {'path': "CVSROOT", - 'addrs': internal, + 'addrs': ["openacs-cvs-list@openacs.org"], +# 005 +# 'addrs': internal, # 004 # 'specials': [("repolinks", "adjustlinks.py")], 'verbose': 1}, @@ -67,8 +71,13 @@ # 'addrs': ["project-chat-cvs@my.zope.com", # "project-chat-log@my.zope.com"]}, {'path': "openacs-4", - 'addrs': ["openacs-cvs-list@willfork.com"]}, - + 'addrs': ["openacs-cvs-list@openacs.org"]}, + {'path': "mod_nsd", + 'addrs': ["openacs-cvs-list@openacs.org"]}, + {'path': "ns_xmlrpc", + 'addrs': ["openacs-cvs-list@openacs.org"]}, + {'path': "web", + 'addrs': ["openacs-cvs-list@openacs.org"]}, # 003 # # Catchall for when *no* other entry matches: # {'path': None,