Commit 5249bed4 5249bed4195c3eb453624473d67e6f3463e74a0a by Sergey Poznyakoff

Updated

1 parent bd26014f
1 2003-02-14 Sergey Poznyakoff
2
3 * configure.ac: New option --enable-mh-utils.
4 Added check for Emacs lisp directory
5 * include/mailutils/address.h (address_get_nth): New function.
6 Get Nth subaddress from an address.
7 * mailbox/address.c: Likewise.
8 * mh/mailutils-mh.eli: New file. Source for mailutils-mh.el --
9 an elisp module that configures mh-e.el for use with mailutils.
10 * mh/Makefile.am: Added rules for generating mailutils-mh.el
11 * mh/mh_format.c (builtin_formataddr): Rewritten to prevent
12 formatting the duplicate addresses.
13 (builtin_putaddr): Use print_hdr_string to format output string.
14
15 * po/POTFILES.in: Added more files.
16 * README: Updated
17 * mh/README: Updated
18
1 2003-02-13 Sergey Poznyakoff 19 2003-02-13 Sergey Poznyakoff
2 20
3 * imap4d/append.c (imap4d_append): Bugfix. 21 * imap4d/append.c (imap4d_append): Bugfix.
......
...@@ -44,11 +44,6 @@ specific configuration options: ...@@ -44,11 +44,6 @@ specific configuration options:
44 Compile Mailutils with debugging support. This disables compiler 44 Compile Mailutils with debugging support. This disables compiler
45 optimizations and adds debugging information to the binaries. 45 optimizations and adds debugging information to the binaries.
46 46
47 --enable-experimental
48
49 Build experimental and/or unfinished utilities as well. In the
50 current version (0.2), this option enables building of MH utilities.
51
52 --disable-pam 47 --disable-pam
53 48
54 Do not build PAM support. By default configure will build PAM support 49 Do not build PAM support. By default configure will build PAM support
...@@ -68,6 +63,13 @@ specific configuration options: ...@@ -68,6 +63,13 @@ specific configuration options:
68 ./configure LIBS='-L/usr/local/mysql/lib' \ 63 ./configure LIBS='-L/usr/local/mysql/lib' \
69 CPPLAGS='-I/usr/local/mysql/include' --enable-mysql 64 CPPLAGS='-I/usr/local/mysql/include' --enable-mysql
70 65
66 --enable-mh-utils
67
68 Build a suite of MH utilities. The GNU implementation of MH is
69 primarily aiming to provide an interface between Mailutils and
70 Emacs using mh-e module. For more information, refer to files
71 README and TODO in the mh subdirectory.
72
71 --with-virtual-pwddir=DIR 73 --with-virtual-pwddir=DIR
72 74
73 Use DIR instead of $sysconfdir/domain as the location of 75 Use DIR instead of $sysconfdir/domain as the location of
...@@ -152,8 +154,8 @@ options: ...@@ -152,8 +154,8 @@ options:
152 154
153 Use old DBM 155 Use old DBM
154 156
155 Only one dbm option may be specified. Which one depends on the flavor 157 Only one dbm option may be specified. Which one depends on the flavor
156 of DBM you are using. GDBM is most common for GNU system. 158 of DBM you are using. GDBM is most common for GNU system.
157 159
158 --with-log-facility=facility 160 --with-log-facility=facility
159 161
......
1 README -- Differences between Mailutils and the RAND implementation of MH: 1 README for GNU Mailutils implementation of MH
2
3 The primary aim of this implementation is to provide an interface
4 between Mailutils and Emacs using mh-e module.
5
6 To use Mailutils MH with Emacs, add the following line to your
7 site-start.el or .emacs file:
8
9 (load "mailutils-mh")
10
11 Refer to the file TODO in this directory for information about the
12 current state of Mailutils MH implementation.
2 13
3 14
15 The list of differences between Mailutils and the RAND implementation of MH:
16
4 * All programs use usual GNU long options. The support for MH single-dot 17 * All programs use usual GNU long options. The support for MH single-dot
5 options is provided for backward compatibility. 18 options is provided for backward compatibility.
6 19
...@@ -100,7 +113,7 @@ Understands --build option. ...@@ -100,7 +113,7 @@ Understands --build option.
100 If the argument to 'ignores' contains more than one component name 113 If the argument to 'ignores' contains more than one component name
101 it must be enclosed in double-quotes. Dangling equal sign is an error, 114 it must be enclosed in double-quotes. Dangling equal sign is an error,
102 to set a string variable to the empty value use = "", e.g.: 115 to set a string variable to the empty value use = "", e.g.:
103 overflowtext="" 116 overflowtext="" (see supplied mhl.format file).
104 117
105 Ineractive prompting is not yet implemented. 118 Ineractive prompting is not yet implemented.
106 119
......