diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2011-06-23 20:35:23 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2011-06-23 20:35:23 +0000 |
commit | 7d92efd246de448e6fb91f652014db2db9853704 (patch) | |
tree | 96278cfa14b7b5a5b617ba2c5dd686b47cc92360 /usr.sbin/smtpd | |
parent | e192765f7f0758656f42c3e96d176eaa48fcd489 (diff) |
Use a common text explaining how the various configuration parsers using
the standard OpenBSD-style parse.y handle continuing lines with backslashes,
paying particular attention to how comments are handled (which can cause
nasty side-effects if you're not expecting it).
Most wording from jmc@, with suggestions from fgsch@, marc@, Richard Toohey,
patrick keshishian and Florian Obser, ok jmc@.
Diffstat (limited to 'usr.sbin/smtpd')
-rw-r--r-- | usr.sbin/smtpd/smtpd.conf.5 | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/smtpd.conf.5 b/usr.sbin/smtpd/smtpd.conf.5 index df9784d676a..07f8381dea5 100644 --- a/usr.sbin/smtpd/smtpd.conf.5 +++ b/usr.sbin/smtpd/smtpd.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: smtpd.conf.5,v 1.43 2011/06/10 11:30:35 jmc Exp $ +.\" $OpenBSD: smtpd.conf.5,v 1.44 2011/06/23 20:35:22 sthen Exp $ .\" .\" Copyright (c) 2008 Janne Johansson <jj@openbsd.org> .\" Copyright (c) 2009 Jacek Masiulaniec <jacekm@dobremiasto.net> @@ -16,7 +16,7 @@ .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" .\" -.Dd $Mdocdate: June 10 2011 $ +.Dd $Mdocdate: June 23 2011 $ .Dt SMTPD.CONF 5 .Os .Sh NAME @@ -27,9 +27,14 @@ is the configuration file for the mail daemon .Xr smtpd 8 . .Pp +The current line can be extended over multiple lines using a backslash +.Pq Sq \e . Comments can be put anywhere in the file using a hash mark -.Pq # , +.Pq Sq # , and extend to the end of the current line. +Care should be taken when commenting out multi-line text: +the comment is effective until the end of the entire block. +.Pp Arguments containing whitespace should be surrounded by double quotes .Pq \&" . .Pp |