summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS23
-rw-r--r--configure.ac2
2 files changed, 11 insertions, 14 deletions
diff --git a/NEWS b/NEWS
index a3190d4e6..fe4c9c348 100644
--- a/NEWS
+++ b/NEWS
@@ -1,16 +1,15 @@
1GNU mailutils NEWS -- history of user-visible changes. 2016-11-02 1GNU mailutils NEWS -- history of user-visible changes. 2016-11-06
2Copyright (C) 2002-2016 Free Software Foundation, Inc. 2Copyright (C) 2002-2016 Free Software Foundation, Inc.
3See the end of file for copying conditions. 3See the end of file for copying conditions.
4 4
5Please send mailutils bug reports to <bug-mailutils@gnu.org>. 5Please send mailutils bug reports to <bug-mailutils@gnu.org>.
6 6
7 7
8Version 2.99.993 (Git) 8Version 3.0 - 2016-11-06
9 9
10This version is a major rewrite of GNU Mailutils. Quite a few parts 10This version is a major rewrite of GNU Mailutils. Quite a few parts
11of the basic framework were rewritten from scratch, while some others 11of the basic framework were rewritten from scratch, while some others
12undergone a considerable revamping. The user documentation at the 12undergone considerable revamping. The documentation is still being
13moment is insufficient, and in some aspects even scarce. It is being
14worked upon. However, most of the utilities self-document themselves. 13worked upon. However, most of the utilities self-document themselves.
15To obtain a summary of available configuration statements for a given 14To obtain a summary of available configuration statements for a given
16program, run `program --config-help'. For additional documentation, 15program, run `program --config-help'. For additional documentation,
@@ -136,7 +135,7 @@ example:
136 mail -A prog --encoding quoted-printable --content-type text/c \ 135 mail -A prog --encoding quoted-printable --content-type text/c \
137 -A main.c -A ext.h 136 -A main.c -A ext.h
138 137
139Here, the file "prog" will be attached witg the content type 138Here, the file "prog" will be attached with the content type
140"application/octet-stream" and encoding base64, while the files 139"application/octet-stream" and encoding base64, while the files
141"main.c" and "ext.h" will be marked with content type "text/c" and 140"main.c" and "ext.h" will be marked with content type "text/c" and
142encoded using "quoted-printable" algorithm. 141encoded using "quoted-printable" algorithm.
@@ -168,7 +167,7 @@ to the `return-address' variable, e.g.:
168 167
169** MH: improved compatibility with other implementations 168** MH: improved compatibility with other implementations
170 169
171** MH inc: new option --moveto 170** MH inc: new option -moveto
172 171
173This option instructs the utility to move incorporated messages into 172This option instructs the utility to move incorporated messages into
174another folder instead of deleting them. It is implemented only for 173another folder instead of deleting them. It is implemented only for
@@ -198,11 +197,11 @@ option:
198 197
199 moveto=FOLDER 198 moveto=FOLDER
200 Moves incorporated messages into FOLDER. This is similar to the 199 Moves incorporated messages into FOLDER. This is similar to the
201 `--moveto' option, but applies only to that particular mailbox. 200 `-moveto' option, but applies only to that particular mailbox.
202 See the example above. 201 See the example above.
203 202
204 nomoveto 203 nomoveto
205 Disables the previous `--moveto' option. 204 Disables the previous `-moveto' option.
206 205
207 truncate[=BOOL] 206 truncate[=BOOL]
208 Controls source mailbox truncation. If BOOL is not given or is 207 Controls source mailbox truncation. If BOOL is not given or is
@@ -298,9 +297,9 @@ options for particular interfaces. For example, to build only GDBM
298** Link with GSASL by default 297** Link with GSASL by default
299 298
300GSASL is used by several Mailutils components (notably pop3d 299GSASL is used by several Mailutils components (notably pop3d
301and imap4d as well as their client counterparts) for authentification. 300and imap4d as well as their client counterparts) for authentication.
302Since this version, it is enabled by default if configure detects the 301Since this version, it is enabled by default if configure detects the
303presense of GNU SASL version 0.2.3 or later. 302presence of GNU SASL version 0.2.3 or later.
304 303
305This can be disabled using the --without-gsasl option. 304This can be disabled using the --without-gsasl option.
306 305
@@ -349,7 +348,7 @@ transaction.
349 348
350This method copies the requested set of messages into another 349This method copies the requested set of messages into another
351mailbox. It is accessed using the `mu_mailbox_msgset_copy' or 350mailbox. It is accessed using the `mu_mailbox_msgset_copy' or
352`mu_mailbox_message_copy' functions. So far it is implememented 351`mu_mailbox_message_copy' functions. So far it is implemented
353only for IMAP and IMAPS mailboxes. 352only for IMAP and IMAPS mailboxes.
354 353
355** MIME support improved. 354** MIME support improved.
@@ -812,8 +811,6 @@ New diagnostics functions are available, among them:
812A new header file, mailutils/diag.h, provides declarations for these 811A new header file, mailutils/diag.h, provides declarations for these
813and other related functions. 812and other related functions.
814 813
815See documentation (FIXME: Chapter?) for more information.
816
817The functions mu_error and mu_verror are shortcuts for 814The functions mu_error and mu_verror are shortcuts for
818mu_diag_output (MU_DIAG_ERROR, ...) and mu_diag_voutput (MU_DIAG_ERROR, ...), 815mu_diag_output (MU_DIAG_ERROR, ...) and mu_diag_voutput (MU_DIAG_ERROR, ...),
819correspondingly. 816correspondingly.
diff --git a/configure.ac b/configure.ac
index 92ac4a15e..ac6d56759 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License along
16dnl with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. 16dnl with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>.
17 17
18AC_PREREQ(2.63) 18AC_PREREQ(2.63)
19AC_INIT([GNU Mailutils], [2.99.993], [bug-mailutils@gnu.org], [mailutils], 19AC_INIT([GNU Mailutils], [3.0], [bug-mailutils@gnu.org], [mailutils],
20 [http://mailutils.org]) 20 [http://mailutils.org])
21AC_CONFIG_SRCDIR([libmailutils/mailbox/mailbox.c]) 21AC_CONFIG_SRCDIR([libmailutils/mailbox/mailbox.c])
22AC_CONFIG_AUX_DIR([build-aux]) 22AC_CONFIG_AUX_DIR([build-aux])

Return to:

Send suggestions and report system problems to the System administrator.