Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove 2 more unused doc Makefiles. | trhodes | 2003-02-04 | 1 | -11/+0 |
| | |||||
* | The return-path is optional in a headline, therefore don't skip a | mikeh | 2003-01-09 | 1 | -5/+12 |
| | | | | | | | message if it is missing the return-path. PR: bin/40314 (slightly different patch) MFC after: 2 weeks | ||||
* | Correct a few more definitions, capitalize header fields consistently. | mikeh | 2003-01-09 | 1 | -5/+5 |
| | |||||
* | Clarify ~. escape definition, remove duplicate entry, and shorten a | mikeh | 2003-01-09 | 1 | -4/+3 |
| | | | | definition. | ||||
* | Document the ~. and ~? command escapes. | mikeh | 2003-01-09 | 1 | -0/+4 |
| | |||||
* | Replace various spelling with FALLTHROUGH which is lint()able | charnier | 2002-08-25 | 1 | -1/+1 |
| | |||||
* | Drop support for COPY, -c has been the default mode of install(1) | ru | 2002-07-29 | 1 | -1/+1 |
| | | | | | | for a long time now. Approved by: bde | ||||
* | s/${INSTALL} -c/${INSTALL} ${COPY}/ | ru | 2002-07-18 | 1 | -1/+1 |
| | |||||
* | Consistently use FBSDID | obrien | 2002-06-30 | 23 | -46/+46 |
| | |||||
* | Add support for the 'flipr' option per IEEE 1003.1-2001. | mikeh | 2002-06-25 | 2 | -2/+10 |
| | |||||
* | Use strcasestr() instead of reimplementing it. | mikeh | 2002-06-25 | 1 | -45/+18 |
| | |||||
* | Make the 'searchheaders' option behave how it was supposed to. If | mikeh | 2002-06-25 | 3 | -11/+16 |
| | | | | | | enabled, the string '/to:y' will match strings in the To, Cc, and Bcc header fields. Whereas, '/To:y' will match only the To field. Edit the manpage and a code comment to indicate the correct behavior. | ||||
* | Rearrange a little, specifically: | mikeh | 2002-06-25 | 1 | -86/+131 |
| | | | | | | | | | | - removed "Option string values" section and divided up amongst mail options and environment section - expanded environment section - rearranged mail options - added default values to the mail options for clarification Reviewed by: ru | ||||
* | Use `The .Nm utility' | charnier | 2002-04-20 | 1 | -9/+14 |
| | |||||
* | remove __P | imp | 2002-03-22 | 3 | -219/+216 |
| | |||||
* | #include <sys/time.h> instead of depending on namespace pollution in | bde | 2002-02-25 | 1 | -0/+2 |
| | | | | | <sys/stat.h> for the declaration of struct timeval. Intentionally don't follow the local style of polluting the local headers. | ||||
* | Remove NO_WERRORs and WARNS=n's. To be revisited after GCC3. | markm | 2002-02-08 | 1 | -1/+0 |
| | |||||
* | Show arguments of command line options | charnier | 2002-01-22 | 1 | -11/+21 |
| | | | | Reviewed by: ru | ||||
* | Link mail(1) to mailx per POSIX. Mail(1) isn't 100% POSIX compliant, | mikeh | 2002-01-19 | 2 | -4/+7 |
| | | | | | | but it is pretty close. Not objected to by: -standards | ||||
* | mdoc(7) police: oops, forgot about those interim XXX'es. | ru | 2002-01-10 | 1 | -8/+4 |
| | |||||
* | mdoc(7) police: tidy up. | ru | 2002-01-10 | 1 | -212/+237 |
| | |||||
* | Fix comment. | mikeh | 2001-12-23 | 1 | -1/+1 |
| | |||||
* | Add support for ~_, ~x, ~i, ~a, ~A, ~<, and ~r! tilde-escapes. Improve | mikeh | 2001-12-22 | 3 | -27/+138 |
| | | | | | | tilde-escapes documentation. Mostly obtained from: NetBSD | ||||
* | Add missing {} to 'for'. It fix coredump (result of NetBSD changes merge) | ache | 2001-12-19 | 1 | -1/+2 |
| | |||||
* | Add (unsigned char) cast to ctype macros | ache | 2001-12-19 | 9 | -34/+34 |
| | | | | | | | ftell->ftello, fseek->fseeko File 'newsize' type int->off_t Add visible (long) cast to fsize() when it called to small one message file and result is assigned to long. | ||||
* | Sync with most of NetBSD's changes, including: | mikeh | 2001-12-18 | 18 | -157/+439 |
| | | | | | | | | | | | | | | | | | *) Sync with 4.4BSD-Lite2 *) Set usecs for utimes() *) Add 'inc' command and 'autoinc' option that check for new mail manually and automatically, respectively *) Use POSIX signal handling and tty semantics *) Handle long lines correctly when paging messages *) Add ability to explicitly search 'To:' line *) Various manpage cleanups *) Support overriding '~/.mailrc' with $MAILRC *) Support 'askbcc' and 'asksub' options *) Fix various bugs Reviewed by: ru (mail.1) Obtained from: NetBSD | ||||
* | Install files via FILES. | ru | 2001-12-17 | 1 | -4/+3 |
| | |||||
* | I'm working on cleaning this up, however it probably won't be done for | mikeh | 2001-12-12 | 1 | -0/+2 |
| | | | | | awhile. Turn off WARNS so that this doesn't break the build when WARNS is turned on higher up. Also add $FreeBSD$. | ||||
* | Don't add space after comma unless there was already one (prevents a | mikeh | 2001-09-23 | 1 | -4/+4 |
| | | | | | | | | rare overflow). Optimize loop slightly. Don't exit if realloc can't shrink a buffer (just continue and use the larger buffer). Obtained from: OpenBSD MFC after: 2 weeks | ||||
* | File positions are off_t nowdays, not long, so: | ache | 2001-09-02 | 4 | -7/+8 |
| | | | | | | | | | | | | | fseek -> fseeko ftell -> ftello NOTE: fseek/ftell not works for >long offsets per POSIX: [EOVERFLOW] For fseek( ), the resulting file offset would be a value which cannot be represented correctly in an object of type long. [EOVERFLOW] For ftell ( ), the current file offset cannot be represented correctly in an object of type long. | ||||
* | Handle snprintf() returning -1. | brian | 2001-08-20 | 1 | -1/+1 |
| | | | | MFC after: 2 weeks | ||||
* | Removed duplicate VCS ID tags, as per style(9). | ru | 2001-08-13 | 3 | -6/+0 |
| | |||||
* | mdoc(7) police: protect trailing full stops of abbreviations | ru | 2001-08-10 | 1 | -1/+1 |
| | | | | with a trailing zero-width space: `e.g.\&'. | ||||
* | Remove whitespace at EOL. | dd | 2001-07-15 | 1 | -2/+2 |
| | |||||
* | mdoc(7) police: removed HISTORY info from the .Os call. | ru | 2001-07-10 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: fixed formatting bugs in rev. 1.27. | ru | 2001-07-05 | 1 | -3/+5 |
| | |||||
* | Add the -E flag to not send messages that have an empty body. This is | mikeh | 2001-06-28 | 3 | -8/+19 |
| | | | | | | | | useful for piping cron script error output by mail. PR: bin/9494 Obtained from: NetBSD MFC after: 2 weeks | ||||
* | Nuke unused variables. | dd | 2001-06-24 | 1 | -1/+1 |
| | |||||
* | Support mail boxes that have dates without seconds (SysV) and those | mikeh | 2001-06-18 | 1 | -4/+33 |
| | | | | | | | | that have a timezone as <-|+>nnnn (eg. imapd). PR: bin/11746 Obtained from: OpenBSD MFC after: 2 weeks | ||||
* | Respect REPLYTO in mailrc. | mikeh | 2001-06-14 | 4 | -10/+8 |
| | | | | | | PR: bin/8322 Submitted by: Philipp Mergenthaler <philipp.mergenthaler@stud.uni-karlsruhe.de> MFC after: 2 weeks | ||||
* | Cleanup mail(1)'s varying styles by converting to using style(9). | mikeh | 2001-05-27 | 26 | -1460/+1453 |
| | | | | | | | | | Also take a stab at cleaning up BDECFLAGS and convert all uses of NOSTR, NIL, NONE, NOVAR, NOGRP, NOGE to NULL. Also kill 'register' to get diffs somewhat closer to OpenBSD/NetBSD. There are no functional changes however. Reviewed by: nra (visual inspection) | ||||
* | Allow mail(1) to be able to read Eudora mailboxes by transforming | mikeh | 2001-05-11 | 1 | -1/+13 |
| | | | | | | | lines that end in <CR><LF> to just <LF>. Reviewed by: imp Obtained from: OpenBSD | ||||
* | Merge various changes from OpenBSD and NetBSD. | mikeh | 2001-03-25 | 28 | -470/+478 |
| | | | | | | | | | | | | | | | | o remove panic() in favor of err(3) and use err(3) functions consistently throughout o use stat(2)'s S_IS* macros rather than S_IF* o [r]index -> str[r]chr o convert some static buffers to dynamic ones o use real tempfiles rather than reopening the same templates o rename some functions that clash with libc o convert wait_status from union to int and use wait(2) status macros o fix multiple potential buffer overflows o fix a few comments o add $FreeBSD$ Reviewed by: nra, nectar (earlier version) | ||||
* | Eliminate mdocNG warnings caused by misplaced or extraneous macro calls. | ru | 2001-02-28 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: split punctuation characters + misc fixes. | ru | 2001-02-01 | 1 | -6/+9 |
| | |||||
* | mdoc(7) police: fixed broken references. | ru | 2001-01-16 | 1 | -2/+1 |
| | |||||
* | Prepare for mdoc(7)NG. | ru | 2000-12-19 | 1 | -1/+1 |
| | |||||
* | Eliminate groff(1) warnings. | ru | 2000-11-29 | 1 | -27/+28 |
| | |||||
* | *** empty log message *** | kris | 2000-11-27 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: use the new features of the Nm macro. | ru | 2000-11-20 | 1 | -27/+27 |
| |