diff options
author | cjep <cjep@pkgsrc.org> | 2004-08-09 08:33:48 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2004-08-09 08:33:48 +0000 |
commit | 6118422a386fe56fa59cccc4e208fc1db5be900e (patch) | |
tree | 5c5959c98c10053ecd5dbbe148da1645c7e89bdd /mail | |
parent | abb54abd3e98ac84153adadc7798ad43995d1f1a (diff) | |
download | pkgsrc-6118422a386fe56fa59cccc4e208fc1db5be900e.tar.gz |
Update of mail/nail to 11.1.
Changes:
* IMAP mailboxes can now be cached locally. See the string variable
'imap-cache' in the manual page. The cache can also be used for
disconnected operation mode, see 'disconnected' and also the '-D'
command line option.
* When nail is notified by the server that messages have been expunged,
the user is informed about this condition even if new messages have
also arrived.
* When the group of variables for an 'account' command contains a variable
prefixed by 'no...' and the related variable is not set, it is not an
error to unset it.
* The 'headers' command has been made faster when operating on an IMAP
mailbox by bundling IMAP requests.
* When a 'folder' command was executed to change from an uncompressed
file to a compressed one, the latter was incorrectly detected as
being read-only.
* Unless one of the 'autoinc' or 'newmail' variables is set, nail does
not actively check for new messages in the current IMAP mailbox before
each prompt. New messages may nevertheless be detected after any
other IMAP command has been issued, so the effect is mostly that
not every nail command causes an IMAP command to be sent. Also if
'autoinc' or 'newmail' are set to the value "noimap", they are
ignored for IMAP mailboxes but still effective for local folders.
* The 'inc' and 'newmail' commands now use the same method to determine
the location of the current message as the 'folder' command does. That
means if there has been new mail before that is still unread when newer
mail arrives, the older messages are displayed first.
* Nail does not generate 'Sender:' fields anymore.
* If OpenSSL is not available, STARTTLS support is not built, and nail
compiles again without OpenSSL.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/nail/Makefile | 4 | ||||
-rw-r--r-- | mail/nail/distinfo | 8 | ||||
-rw-r--r-- | mail/nail/patches/patch-aa | 10 |
3 files changed, 11 insertions, 11 deletions
diff --git a/mail/nail/Makefile b/mail/nail/Makefile index 9377ddaa3ad..03a80995d58 100644 --- a/mail/nail/Makefile +++ b/mail/nail/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.12 2004/08/02 13:05:13 cjep Exp $ +# $NetBSD: Makefile,v 1.13 2004/08/09 08:33:48 cjep Exp $ -DISTNAME= nail-11.0 +DISTNAME= nail-11.1 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nail/} EXTRACT_SUFX= .tar.bz2 diff --git a/mail/nail/distinfo b/mail/nail/distinfo index aec3b138fd7..7879d251592 100644 --- a/mail/nail/distinfo +++ b/mail/nail/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.7 2004/08/02 13:05:13 cjep Exp $ +$NetBSD: distinfo,v 1.8 2004/08/09 08:33:48 cjep Exp $ -SHA1 (nail-11.0.tar.bz2) = 6b04a306a9f5f3a3f77d7de1cae9e79873716f3d -Size (nail-11.0.tar.bz2) = 153169 bytes -SHA1 (patch-aa) = 7905819c52e186fd697edd13bb427a7d5f3111e6 +SHA1 (nail-11.1.tar.bz2) = 63f567e3743823a7e127e07245572147fb49d360 +Size (nail-11.1.tar.bz2) = 167257 bytes +SHA1 (patch-aa) = 16a3ef519d0c42a414feba819e11e5bab08dede4 SHA1 (patch-ab) = 8a45700c0bbf13269743b3a82998f7cff902530f SHA1 (patch-ac) = 22393a31babfefa1f8712b3fc2749ecb565a156b diff --git a/mail/nail/patches/patch-aa b/mail/nail/patches/patch-aa index 0ede32e1738..bd770fb061c 100644 --- a/mail/nail/patches/patch-aa +++ b/mail/nail/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.4 2004/08/02 13:05:13 cjep Exp $ +$NetBSD: patch-aa,v 1.5 2004/08/09 08:33:48 cjep Exp $ ---- Makefile.orig 2004-07-30 10:52:49.000000000 +0100 -+++ Makefile 2004-08-02 14:00:53.000000000 +0100 +--- Makefile.orig 2004-08-07 23:34:00.000000000 +0100 ++++ Makefile 2004-08-09 09:31:30.000000000 +0100 @@ -6,14 +6,14 @@ # See the file INSTALL if you need help. # @@ -26,8 +26,8 @@ $NetBSD: patch-aa,v 1.4 2004/08/02 13:05:13 cjep Exp $ FEATURES = -DMAILRC='"$(MAILRC)"' -DMAILSPOOL='"$(MAILSPOOL)"' \ - -DSENDMAIL='"$(SENDMAIL)"' $(IPv6) -+ -DSENDMAIL='"$(SENDMAIL)"' \ ++ -DSENDMAIL='"$(SENDMAIL)"' \ + -DMIMEPATH='"$(SYSCONFDIR)/mime.types"' $(IPv6) - OBJ = aux.o base64.o cmd1.o cmd2.o cmd3.o cmdtab.o collect.o \ + OBJ = aux.o base64.o cache.o cmd1.o cmd2.o cmd3.o cmdtab.o collect.o \ dotlock.o edit.o fio.o getname.o getopt.o head.o imap.o lex.o list.o \ |