aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/mailwrapper
Commit message (Collapse)AuthorAgeFilesLines
...
* Do not install SYMLINKS if both NO_MAILWRAPPER andJohan Karlsson2004-01-171-0/+2
| | | | | | | | | | | | | NO_SENDMAIL is defined. PR: 57058 Reported by: Henri Hennebert <hlh@cocoon.cercle.be> Melvyn Sopacua on current@ Submitted by: ru@ MFC after: 2 weeks Notes: svn path=/head/; revision=124644
* add FBSDIDPhilippe Charnier2003-07-061-1/+3
| | | | Notes: svn path=/head/; revision=117280
* mdoc(7) police: Scheduled sweep.Ruslan Ermilov2003-02-241-1/+1
| | | | Notes: svn path=/head/; revision=111447
* Give more information to users replacing sendmail regarding periodic'sGregory Neil Shapiro2003-02-081-0/+11
| | | | | | | | | submit mail queue check. PR: docs/38924 Notes: svn path=/head/; revision=110574
* Drop support for COPY, -c has been the default mode of install(1)Ruslan Ermilov2002-07-291-1/+1
| | | | | | | | | for a long time now. Approved by: bde Notes: svn path=/head/; revision=100872
* If NO_MAILWRAPPER is set, and sendmail is still enabled, then installPeter Wemm2002-07-241-0/+8
| | | | | | | a direct symlink to sendmail. Notes: svn path=/head/; revision=100639
* The .Nm utilityPhilippe Charnier2002-07-141-3/+5
| | | | Notes: svn path=/head/; revision=99968
* de-__P()Alfred Perlstein2002-07-111-4/+4
| | | | Notes: svn path=/head/; revision=99800
* Add the missing hoststat and purgestat commands. These are normallyGregory Neil Shapiro2002-04-051-0/+2
| | | | | | | | | | | symlinks to the sendmail binary but in FreeBSD's case, they are symlinks to mailwrapper. Submitted by: tisco MFC after: 4 days Notes: svn path=/head/; revision=93858
* Don't free memory that was never allocated. This fixes a core dump inDima Dorfman2001-08-091-1/+0
| | | | | | | | | | the case where both the config file and the default MTA don't exist. PR: 29521 Submitted by: marius@alchemy.franken.de Notes: svn path=/head/; revision=81344
* Perform a major cleanup of the usr.sbin Makefiles.David E. O'Brien2001-07-201-2/+2
| | | | | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before. Notes: svn path=/head/; revision=80029
* Remove whitespace at EOL.Dima Dorfman2001-07-151-5/+5
| | | | Notes: svn path=/head/; revision=79755
* You can't free a string and then use it as the error message toPaul Richards2001-06-041-1/+2
| | | | | | | | | | errx. Instead use warn to print the string, then cleanup and exit normally. This fixes a core dump if the executable to be run doesn't exist. Notes: svn path=/head/; revision=77679
* - Backout botched attempt to introduce MANSECT feature.Ruslan Ermilov2001-03-261-0/+1
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74816
* Set the default manual section for usr.sbin/ to 8.Ruslan Ermilov2001-03-201-1/+0
| | | | Notes: svn path=/head/; revision=74532
* remove trailing periods from SEE ALSO.Ben Smithurst2000-11-151-1/+1
| | | | Notes: svn path=/head/; revision=68756
* Install mailer.conf as ${BINOWN}, ${BINGRP}, rather than root:wheel. ThisTim Vanderhoek2000-06-041-4/+4
| | | | | | | | | | lets unprivileged installworld: almost work first try and always work second. BINOWN isn't quite right for this, but it's not really worth creating a MAILOWN for this. Notes: svn path=/head/; revision=61230
* Do not add progname in err() strings, it will be printed twicePhilippe Charnier2000-05-282-10/+9
| | | | Notes: svn path=/head/; revision=61023
* Replace the inappropriate use of .Nx (netBSD) with a more generalizedSheldon Hearn2000-04-141-1/+1
| | | | | | | | | | .Ux (UNIX) as is appropriate in the context used. PR: 17954 Submitted by: Brian Handy <handy@physics.montana.edu> Notes: svn path=/head/; revision=59219
* Remove single-space hard sentence breaks. These degrade the qualitySheldon Hearn2000-03-011-4/+8
| | | | | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc. Notes: svn path=/head/; revision=57673
* Merge from OpenBSD:Warner Losh2000-01-102-9/+31
| | | | | | | | | | | | | | | o Realloc memory leak fixed which won't matter but would trigger purify o Default to sendmail when no mailer.conf exists. Fixed bugs in OpenBSD version: o Add NULL termination in the right place. Also put back the err. free shouldn't touch errno. Pointed out by: theo de raadt (except the NULL bug :-) Notes: svn path=/head/; revision=55705
* Fix mysterious sendmail coredump on systems where malloc.conf pointed toWarner Losh2000-01-101-2/+4
| | | | | | | | | | | | a string containign 'J'. o Properly terminate argv list with a NULL entry. o Use warn() to report the exec failure because free could change errno and err would report the wrong reason. o Don't terminate string to err with ':' since this results in two colons. Notes: svn path=/head/; revision=55698
* /etc -> /etc/mailAndrey A. Chernov1999-12-311-2/+2
| | | | Notes: svn path=/head/; revision=55283
* Preempt one brucification - I was missing a ${DESTDIR}. I hate mergingPeter Wemm1999-12-291-1/+1
| | | | | | | two sets of changes from different trees. Notes: svn path=/head/; revision=55238
* As a special case, deal with a missing mailer.conf at install time. IPeter Wemm1999-12-291-1/+6
| | | | | | | | don't particularly like doing this here, but the alternative (loosing mail) is worse. Notes: svn path=/head/; revision=55234
* Move mailer.conf to /etc/mail at obrien's request.Peter Wemm1999-12-291-2/+1
| | | | Notes: svn path=/head/; revision=55233
* Make mailwrapper buildPeter Wemm1999-12-294-9/+49
| | | | Notes: svn path=/head/; revision=55228
* Import NetBSD's mailwrapper to redirect /usr/sbin/sendmail to the user'sPeter Wemm1999-12-193-0/+322
chosen mailer. Obtained from: NetBSD Notes: svn path=/vendor/NetBSD/dist/; revision=54816