summaryrefslogtreecommitdiffstats
path: root/usr.sbin/mailwrapper (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Symlinks to binaries should belong to root:bin.natano2016-09-111-1/+5
| | | | tweaks and ok guenther
* remove unused copy argument from addarg()jung2015-12-281-12/+9
| | | | | | diff from Serguey Parkhomovsky via tech@ ok sunil millert
* Update default MTA reference to smtpd(8). Rectify documentation ofsunil2015-12-142-7/+9
| | | | | | | | fallback behaviour when configuration file is missing. Documentation bits from Serguey Parkhomovsky. Ok jung@ "if the fallback code stays"
* Update EXAMPLES to use smtpctl(8).sunil2015-12-081-4/+4
|
* surprisingly, this can pledge "stdio rpath exec" right at start. oncederaadt2015-10-121-2/+10
| | | | | the config file is opened, it can pledge "stdio exec", and be on its merry way to start the real MTA
* reduce .Nd to one line and kill .Tn while hereschwarze2015-09-101-4/+3
|
* simple reallocarray() use; ok dougderaadt2014-10-081-2/+2
|
* smtpd in SEE ALSO;jmc2014-09-161-3/+3
|
* one more Xr to smtpd;jmc2014-03-271-3/+4
|
* switch smtpd and sendmail examples now that smtpd is the defaultgilles2014-03-271-17/+17
| | | | ok jmc@ tedu@
* use .Mt for email addresses; from Jan Stary <hans at stare dot cz>; ok jmc@schwarze2013-07-162-6/+6
|
* sync with code change for mailq in smtpctlian2009-08-081-2/+3
|
* swap the postfix example for an smtpd one;jmc2009-08-061-8/+9
| | | | | | | | based on a diff from Peter J. Philipp, documentation/6205 ok gilles, millert while here, add missing makemap entry to the sendmail example
* makemap symlink should be in /usr/sbin; ok gilles@jacekm2009-03-161-2/+2
|
* run makemap through mailwrapper(8), to avoid conflict betweenjacekm2009-03-161-1/+2
| | | | | | sendmail and smtpd. ok gilles@, "Go go go!" todd@
* remove leftover from mdoc.samples; ok jmc@martynas2009-02-072-6/+4
|
* avoid coredump when ther;s only one token on a line; ok millert@otto2007-11-061-2/+2
|
* use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsgderaadt2007-09-021-2/+2
|
* convert to new .Dd format;jmc2007-05-312-4/+4
|
* Back out rev 1.2 as it doesn't make sense--since we exit on failuremillert2004-07-061-12/+3
| | | | | there is no need to save the old value of the pointer we are realloc()ing. Based on a diff from Andrey Matveev.
* - section reorderjmc2003-06-122-11/+12
| | | | | | - macro fixes - kill whitespace at EOL - new sentence, new line
* As pointed out by Perry, mailwrapper is never invoked directly,millert2003-03-091-3/+8
| | | | | | | err/warn will show names like sendmail, mailq, etc which is confusing. However, prefixing "mailwrapper" to the string passed to err/warn is ugly too. The least evil alternative seems to be to stash the value of __progname for checking and assign "mailwrapper" to __progname.
* Bleah, someone beat me to this but I have some minor chagesmillert2003-03-081-3/+3
|
* fix err/errx uses; andrushock@korovino.netderaadt2003-03-081-11/+10
|
* typos; isakmpd(8) ok niklas@, mailwrapper(8) help kjell@jmc2003-02-051-2/+2
|
* Don't bother free()ing memory when we are just headed for exit().millert2002-12-201-17/+1
| | | | Fixes a bug whereby freed memory was used in an error case.
* KNFderaadt2002-12-091-18/+9
|
* yet another round of SEE ALSO fixes.fgsch2002-11-091-2/+2
|
* fix Xr refs; frisco@blackant.netderaadt2002-09-182-8/+8
|
* Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.millert2002-02-161-5/+5
|
* do not free unallocated memory, PR#1989jakob2001-08-081-2/+1
|
* we don't like:mpech2001-07-201-2/+1
| | | | | | o) .Pp before/after .Sh; o) .Pp before/after .Sh; o) .Nm without argument in SYNOPSIS;
* clarify & highlightjakob2001-07-071-6/+14
|
* correct postfix example; PR#1366; loict@bougon.netjakob2000-08-181-4/+4
|
* newaliases(1) -> newaliases(8)millert2000-06-112-6/+6
|
* Trailing whitespace begone!aaron2000-04-121-6/+6
|
* Don't make a sendmail smtpd link, it will be confused with beck's smtpd.millert2000-04-061-2/+1
|
* Add smtpd linkmillert2000-04-041-1/+2
|
* Remove hard sentence breaks. Add $OpenBSD$ tags where appropriate. Some otheraaron2000-03-192-11/+16
| | | | cleanup along the way.
* Place NULL arg on end of argv array only after all other args. mickey@ okimp2000-01-101-3/+4
|
* extra : in err(); impderaadt2000-01-101-2/+2
|
* terminate an arg vector w/ NULLmickey1999-12-171-1/+3
|
* Proper error output.ho1999-09-281-2/+2
|
* Fallback to sendmail if /etc/mailer.conf is missing.jakob1999-08-021-3/+14
|
* Indentationjakob1999-08-021-12/+12
|
* Fix realloc bug.jakob1999-08-021-4/+13
|
* Integration of mailwrapper (from NetBSD)jakob1999-08-024-0/+416
"The mailwrapper program is designed to replace /usr/sbin/sendmail and to invoke an appropriate MTA instead of sendmail(8) based on configuration information placed in /etc/mailer.conf. This permits the administrator to configure which MTA is to be invoked on the system at run time." OK deraadt, millert