summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-11-10 18:24:23 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-11-10 18:24:23 +0000
commitdf7db464d035c92a61b12961d2b6bce2f0b7202b (patch)
treeb1c7d2b379a2b9787219d492be48204dda813099
parent9864f6879fcf04542678301f1f90de84e066073e (diff)
downloadmailutils-df7db464d035c92a61b12961d2b6bce2f0b7202b.tar.gz
mailutils-df7db464d035c92a61b12961d2b6bce2f0b7202b.tar.bz2
Update
-rw-r--r--NEWS49
-rw-r--r--libsieve/extensions/pipe.c3
-rw-r--r--mailbox/Makefile.am2
3 files changed, 50 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 87934218f..de8dc46c4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-GNU mailutils NEWS -- history of user-visible changes. 2007-11-08
+GNU mailutils NEWS -- history of user-visible changes. 2007-11-10
Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
See the end of file for copying conditions.
@@ -9,6 +9,47 @@ Version 1.2.90:
* New configuration file format.
+* New utility `maidag'
+
+Maidag is a MAIl Delivery AGent. It is a general-purpose MDA able to
+run in both traditional and LMTP mode and to deliver mails to various
+mailbox formats. It is also able to process incoming messages using
+Sieve or Scheme scripts and, based on results of this processing,
+to take a decision on whether to actually deliver and where to
+deliver them.
+
+* New function mu_mailbox_sync
+
+It supercedes mu_mailbox_save_attributes, which is now considered
+deprecated.
+
+* Observable event handling
+
+Each event type is associated with an event-specific data
+pointer. This pointer is passed to event handling functions along with
+an opaque function-specific data pointer. This affects the following
+functions:
+
+ mu_observer_set_action
+ mu_observer_set_action_data (New function)
+ mu_observable_notify
+
+New type of event, MU_EVT_MESSAGE_APPEND, is signalled whenever a new
+message is appended to the mailbox.
+
+* Quick access to a message
+
+A set of functions are provided for so-called `quick access' to mail
+messages. FIXME: describe it.
+
+* New Sieve action `pipe'
+
+Syntax: pipe [:envelope] <command line: string>
+
+This action executes the given <command line> and pipes the message to
+its standard input. If the :envelope tag is given, the envelope of the
+message is piped as well.
+
* New `aget' and `sget' accessors for mu_url_t
The following new accessors are provided:
@@ -47,6 +88,12 @@ It is parsed as an absolute file name `a/b'.
Previous versions incorrectly understood such an URL as `a/b'
(relative file name).
+* Client SMTP STARTTLS support
+
+* Support for new protocols: POPS (pops://) and IMAPS (imaps://),
+
+* Fixed APOP handling.
+
Version 1.2:
diff --git a/libsieve/extensions/pipe.c b/libsieve/extensions/pipe.c
index 452f9e43f..423c40cf7 100644
--- a/libsieve/extensions/pipe.c
+++ b/libsieve/extensions/pipe.c
@@ -16,8 +16,7 @@
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301 USA */
-/* Syntax: pipe <program call: string>
- [:envelope]
+/* Syntax: pipe [:envelope] <program call: string>
Notes/FIXME: 1. it would be nice to implement meta-variables in
<program call> which would expand to various
diff --git a/mailbox/Makefile.am b/mailbox/Makefile.am
index ef9cbe9ba..e9972d64f 100644
--- a/mailbox/Makefile.am
+++ b/mailbox/Makefile.am
@@ -94,7 +94,7 @@ ticket.c \
url.c \
wicket.c
-BUILT_SOURCES = parsedate.c muerrno.c
+BUILT_SOURCES = parsedate.c muerrno.c cfg_parser.c cfg_parser.h
MOSTLYCLEANFILES=
parsedate.c: $(srcdir)/parsedate.y

Return to:

Send suggestions and report system problems to the System administrator.