aboutsummaryrefslogtreecommitdiffstats
path: root/CVSROOT
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2001-08-19 19:23:29 +0800
committerjoe <joe@FreeBSD.org>2001-08-19 19:23:29 +0800
commit8c9af079d79b1e149ebc5952cc72c236310aa704 (patch)
tree08d126397ee0d2b2e4b349d03f04dcf0d0d78153 /CVSROOT
parent39533fe1444cf2ab8da13c6c0796c8e14ec8fd82 (diff)
downloadfreebsd-ports-gnome-8c9af079d79b1e149ebc5952cc72c236310aa704.tar.gz
freebsd-ports-gnome-8c9af079d79b1e149ebc5952cc72c236310aa704.tar.zst
freebsd-ports-gnome-8c9af079d79b1e149ebc5952cc72c236310aa704.zip
Improve some comments.
Diffstat (limited to 'CVSROOT')
-rwxr-xr-xCVSROOT/cfg.pm15
1 files changed, 9 insertions, 6 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm
index da2106d0a5d7..a20c7bdca62d 100755
--- a/CVSROOT/cfg.pm
+++ b/CVSROOT/cfg.pm
@@ -26,7 +26,7 @@ $DEBUG = 0;
# Location of temporary directory.
$TMPDIR = "/tmp/";
-# The file prefix used for the temporary files.
+# The filename prefix used for temporary files.
$FILE_PREFIX = "#cvs.files";
@@ -55,18 +55,21 @@ $FILE_PREFIX = "#cvs.files";
### log_accum.pl ###
####################
-# The command used to mail the log messages. Usually something
-# like '/usr/sbin/sendmail'.
+# The command used to mail the log messages.
+# Usually something like '/usr/sbin/sendmail'.
$MAILCMD = "/usr/local/bin/mailsend -H";
-# Email addresses of recipients of commit mail. (might be overridden below)
+# Email addresses of recipients of commit mail.
+# (might be overridden below)
$MAILADDRS = "nobody";
-# Extra banner to add to top of commit messages.
+# Extra banner added to the top of commit email.
# i.e. $MAILBANNER = "Project X CVS Repository";
+# Use "" if you don't want one.
$MAILBANNER = "";
# Send mail when directories are created in the repository.
+# 0 = off, 1 = on.
$MAIL_ON_DIR_CREATION = 0;
@@ -93,4 +96,4 @@ if (hostname() =~ /^(freefall|internat)\.freebsd\.org$/i) {
#end
-1; # Perl required all modules to return true. Don't delete!!!!
+1; # Perl requires all modules to return true. Don't delete!!!!