- 18 Jul, 2001 2 commits
-
-
- 13 Jul, 2001 8 commits
-
-
- 11 Jul, 2001 1 commit
-
-
- 09 Jul, 2001 15 commits
-
-
-
-
-
-
-
-
-
-
-
Check for interrupt in (both versions of) ml_reread(). Use util_[cm]alloc() instead of [cm]alloc().
Sergey Poznyakoff authored -
Issue diagnostics if mailbox cannot be opened. Display mailbox summary when called without arguments.
Sergey Poznyakoff authored -
-
-
- 06 Jul, 2001 13 commits
-
-
for somce C compiler i.e. Watcomm C, rename it to "interrupted". * mail/util.c: The macros O_CREAT etc needs <sys/fnct.h>.
Alain Magloire authored -
fails at startup. * doc/Makefile.am: Add the missing *.texi in the list of EXTRA_DIST.
Alain Magloire authored -
-
-
Reason: rfc 2060 requires that the server send a BYE untagged response before the (tagged) OK response. With our implementation it was vice-versa.
Sergey Poznyakoff authored -
-
-
-
-
-
-
"sendmail contains a command, possibly with options, that mailx invokes to send mail. You must manually set the default for this environment variable by editing ROOTDIR/etc/mailx.rc to specify the mail agent of your choice. The default is sendmail, but it can be any command that takes addresses on the command line and message contents on standard input." * mail/mail.c (main): Register smtp_record too as a mailer. Set variable sendmail to _PATH_SENDMAIL as the default mailer. * mail/mail.h: New proto util_setenv(), util_find_env() change to be const char *. * mail/send.c (msg_to_pipe): New function, open a pipe() and write a message to it. (mail_send0): Now create the mailer according to util_find_env("sendmail")->value. Use a pipe() if mailer_create() fails. * mail/set.c (mail_set): After free(entry->value) set the value to NULL. * mail/util.c (util_find_env): Change the prototype to be const. Remove hack about need_free and use a static variable to hold "asksub". * mail/util.c (util_setenv): New function to set environment model on libc call setenv(). * mailbox/message.c (message_sender): Set the default sender base on the passwd entry.
Alain Magloire authored
-
- 05 Jul, 2001 1 commit
-
-
the message is pipe to the cmd and if starts with '/' it is save to a file. mailx ghislaine '|cat >save' mails a message to ghislaine and also copies the message into a file called save. * mail/mail.h: Change struct send_environ to contain two new fields char **outfiles and int nfiles. * mail/send.c: Look for '/' and '|' when parsing the addresses and add them to struct send_environ outfiles. (mail_send0): Memory overflow, we were free(buf) twice. made char *buf local where it is needed. Save the message to outfiles when set. (isfilename): New function. * mail/followup.c: Initialise the struct send_environ new fields. * mail/reply.c: Initialise the struct send_environ new fields. * lib/argcv.c: Add support to consider string between single quote like one word(same as double quotes).
Alain Magloire authored
-