diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2011-10-22 06:42:45 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2011-10-22 06:42:45 +0000 |
commit | 833754cf910a413116dc9612fe3833bff7be8f6e (patch) | |
tree | 74096ceaeb3aaf5bf275d6513592ba67401c93f2 /usr.sbin | |
parent | 69f544e92b75b7071380f4b4d53bc7b851ad28a1 (diff) |
tweak previous;
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/smtpd.8 | 11 | ||||
-rw-r--r-- | usr.sbin/smtpd/smtpd.c | 4 |
2 files changed, 9 insertions, 6 deletions
diff --git a/usr.sbin/smtpd/smtpd.8 b/usr.sbin/smtpd/smtpd.8 index dad4cfa99eb..efc7a9598a8 100644 --- a/usr.sbin/smtpd/smtpd.8 +++ b/usr.sbin/smtpd/smtpd.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: smtpd.8,v 1.13 2011/10/22 00:16:33 eric Exp $ +.\" $OpenBSD: smtpd.8,v 1.14 2011/10/22 06:42:44 jmc Exp $ .\" .\" Copyright (c) 2008, Gilles Chehade <gilles@openbsd.org> .\" Copyright (c) 2008, Pierre-Yves Ritschard <pyr@openbsd.org> @@ -26,6 +26,7 @@ .Op Fl dnv .Op Fl D Ar macro Ns = Ns Ar value .Op Fl f Ar file +.Op Fl T Ar trace .Sh DESCRIPTION .Nm is a Simple Mail Transfer Protocol @@ -68,14 +69,16 @@ Specify an alternative configuration file. Configtest mode. Only check the configuration file for validity. .It Fl T Ar trace -Show additionnal debug traces when one of the +Show additional debug traces when one of the .Fl v or .Fl d -flags is specified. The only accepted value is +flags are specified. +The only accepted value is .Ar imsg , which displays the messages exchanged between the various -smtpd processes. +.Nm +processes. .It Fl v Produce more verbose output. .El diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c index 70be07c00ad..ead1d8911e9 100644 --- a/usr.sbin/smtpd/smtpd.c +++ b/usr.sbin/smtpd/smtpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.c,v 1.132 2011/10/22 00:16:33 eric Exp $ */ +/* $OpenBSD: smtpd.c,v 1.133 2011/10/22 06:42:44 jmc Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -176,7 +176,7 @@ usage(void) extern char *__progname; fprintf(stderr, "usage: %s [-dnv] [-D macro=value] " - "[-f file]\n", __progname); + "[-f file] [-T trace]\n", __progname); exit(1); } |