Commit 1ea0765b 1ea0765bca44ccee86367e344f2e44cfd7fcdf2a by Sergey Poznyakoff

Further changes to mail/.

1 parent 80ac5faf
Showing 1 changed file with 36 additions and 0 deletions
1 2001-06-30 Sergey Poznyakoff
2 * configure.in:
3 define READLINE_LIBS instead of linking libreadline
4 to every binary.
5 AC_CHECK_LIB(pthread) was missing comma before
6 ACTION_IF_NOT_FOUND, thus have_libpthread was always no.
7 * mail/Makefile.am: User READLINE_LIBS
8 * lib/argcv.[ch]: Treat a sequence of whitespace characters as
9 a single whitespace. Break string on given delimiters. Do not
10 split quoted arguments.
11 * mail/set.c: Modified to use new argcv_get() syntax.
12 * mail/delete.c: After deleting move realcursor to the next
13 non-deleted message.
14 * mail/alt.c: Honour "metoo" variable. Try to determine users
15 full email address.
16 * mail/mail.c: do not put empty or comment lines into readline
17 history. Handle keyboard interrupts properly.
18 Implemented `warranty' command. Warn user about arrival of a new
19 mail.
20 * mail/send.c: Handle keyboard interrupts. Use util_tempfile().
21 * mail/{send.c,reply.c}: change args in call to mail_send0(): packed
22 all header strings into one structure to facilitate escape handling.
23 Warn user about null message body.
24 * mail/mailline.c: (new) readline-related functions.
25 * mail/var.c: (new) Functions for escape variable handling.
26 * mail/util.c: added extra argument to util_find_entry(): a pointer
27 to the table where to look up. Added util_error(), util_help(),
28 util_tempfile().
29 * mail/*.c: use util_error() instead of printing diagnostics to ofile.
30 * mail/{source.c,if.c}: removed mail_is_terminal(),
31 mail_set_is_terminal(): `interactive' is used instead.
32 * mail/mail.h: in struct mail_command_entry changed `isflow' field
33 to `flags'. It contains information about semantics of the command.
34 * mail/table.c: Initialize `flags' field.
35
36
1 2001-06-29 Alain Magloire 37 2001-06-29 Alain Magloire
2 38
3 * mail/util.c (util_expand_msglist): Implement expansion of 39 * mail/util.c (util_expand_msglist): Implement expansion of
......