diff options
author | joe <joe@FreeBSD.org> | 2001-10-23 01:23:27 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-10-23 01:23:27 +0800 |
commit | a737fdc62348e729a6c9646bcdf700c26041308a (patch) | |
tree | 3be66e020401698b8b4f1b972709cd660ae72499 | |
parent | 33f05e44d7909cd004af87b1fddfead3f5a123a2 (diff) | |
download | freebsd-ports-gnome-a737fdc62348e729a6c9646bcdf700c26041308a.tar.gz freebsd-ports-gnome-a737fdc62348e729a6c9646bcdf700c26041308a.tar.zst freebsd-ports-gnome-a737fdc62348e729a6c9646bcdf700c26041308a.zip |
Use single quotes instead of double ones to avoid getting tripped
up with @'s in email addresses.
-rwxr-xr-x | CVSROOT/cfg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm index 1c54f7e6455a..219751242d53 100755 --- a/CVSROOT/cfg.pm +++ b/CVSROOT/cfg.pm @@ -92,7 +92,7 @@ $MAILCMD = "/usr/local/bin/mailsend -H"; # Email addresses of recipients of commit mail. # (might be overridden below) -$MAILADDRS = "nobody"; +$MAILADDRS = 'nobody'; # Extra banner added to the top of commit email. # i.e. $MAILBANNER = "Project X CVS Repository"; |