summaryrefslogtreecommitdiff
path: root/trunk/CVSROOT/notify
diff options
context:
space:
mode:
authorhugues <hugues@0f7e0d06-a6f9-0310-a55f-d5f984f55e4c>2005-02-10 22:47:05 +0000
committerhugues <hugues@0f7e0d06-a6f9-0310-a55f-d5f984f55e4c>2005-02-10 22:47:05 +0000
commit42d83a68fc1cd45019ddbebee041962d2a1783b9 (patch)
tree9929264166f3eedea44f740edce21b31ee3bd2c7 /trunk/CVSROOT/notify
parentaef54bb58582e2e381763f3a9e52167800ba9d50 (diff)
initial checkin
git-svn-id: file:///usr/local/opt/svn/repos/glagen@2 0f7e0d06-a6f9-0310-a55f-d5f984f55e4c
Diffstat (limited to 'trunk/CVSROOT/notify')
-rw-r--r--trunk/CVSROOT/notify17
1 files changed, 17 insertions, 0 deletions
diff --git a/trunk/CVSROOT/notify b/trunk/CVSROOT/notify
new file mode 100644
index 0000000..196c3ea
--- /dev/null
+++ b/trunk/CVSROOT/notify
@@ -0,0 +1,17 @@
+# The "notify" file controls where notifications from watches set by
+# "cvs watch add" or "cvs edit" are sent. The first entry on a line is
+# a regular expression which is tested against the directory that the
+# change is being made to, relative to the $CVSROOT. If it matches,
+# then the remainder of the line is a filter program that should contain
+# one occurrence of %s for the user to notify, and information on its
+# standard input.
+#
+# "ALL" or "DEFAULT" can be used in place of the regular expression.
+#
+# format strings are replaceed as follows:
+# %p = path relative to repository
+# %r = repository (path portion of $CVSROOT)
+# %s = user to notify
+#
+# For example:
+#ALL (echo Committed to %r/%p; cat) |mail %s -s "CVS notification"