Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
df7db464
...
df7db464d035c92a61b12961d2b6bce2f0b7202b
authored
2007-11-10 18:24:23 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Update
1 parent
9864f687
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
4 deletions
NEWS
libsieve/extensions/pipe.c
mailbox/Makefile.am
NEWS
View file @
df7db46
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:
...
...
libsieve/extensions/pipe.c
View file @
df7db46
...
...
@@ -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
...
...
mailbox/Makefile.am
View file @
df7db46
...
...
@@ -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
...
...
Please
register
or
sign in
to post a comment