diff options
author | tron <tron> | 2002-05-29 12:13:52 +0000 |
---|---|---|
committer | tron <tron> | 2002-05-29 12:13:52 +0000 |
commit | 9b3cf490031ffbbe615ea75a363a00194791c075 (patch) | |
tree | f8658cdfeafc694be5a654f7fdb92efce5b2e09c /mail/mutt/patches/patch-ab | |
parent | 81a1718c637875bd16fd6f22f369fc3969863dee (diff) | |
download | pkgsrc-9b3cf490031ffbbe615ea75a363a00194791c075.tar.gz |
Update "mutt" package to version 1.4. Visible changes since version
1.2.5.1 include:
- Better mh support: Mutt now supports .mh_sequences files.
Currently, the "unseen", "flagged", and "replied" sequences are
used to store mutt flags (the names are configurable using the
$mh_seq_unseen, $mh_seq_flagged, and $mh_seq_replied configuration
variables). As a side effect, messages in MH folders are no longer
rewritten upon status changes.
- The "trashed" flag is supported for maildir folders. See
$maildir_trash.
- POP folder support. You can now access a POP mailbox just like an
IMAP folder (with obvious restrictions due to the protocol).
- URL syntax for remote folders. You can pass things like
pop://account@host and imap://account@host/folder as arguments for
the -f command line flag.
- STARTTLS support. If $ssl_starttls is set (the default), mutt
will attempt to use STARTTLS on servers advertising that
capability.
- $preconnect. If set, a shell command to be executed if mutt fails
to establish a connection to the server. This is useful for
setting up secure connections; see the muttrc(5) for details.
- $tunnel. Use a pipe to a command instead of a raw socket. See
muttrc(5) for details. (Basically, it's another way for setting
up secure connections.)
- More new IMAP/POP-related variables (see muttrc(5) for details):
$connect_timeout, $imap_authenticators, $imap_delim_chars,
$imap_peek, $pop_authenticators, $pop_auth_try_all,
$pop_checkinterval, $pop_delete, $pop_reconnect, $use_ipv6.
- The following IMAP/POP-related variables are gone:
$imap_checkinterval, $imap_cramkey, $pop_port.
- There's a new imap-fetch-mail function, which forces a check for
new messages on an IMAP server.
- The new-mailbox function was renamed to create-mailbox, and is
bound to C instead of n by default.
For a complete overview of all new features look in the "NEWS" file.
Diffstat (limited to 'mail/mutt/patches/patch-ab')
-rw-r--r-- | mail/mutt/patches/patch-ab | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/mail/mutt/patches/patch-ab b/mail/mutt/patches/patch-ab index f1416f0b6b7..10f4f6ac870 100644 --- a/mail/mutt/patches/patch-ab +++ b/mail/mutt/patches/patch-ab @@ -1,13 +1,13 @@ -$NetBSD: patch-ab,v 1.6 2000/05/20 18:41:40 kim Exp $ +$NetBSD: patch-ab,v 1.7 2002/05/29 12:13:53 tron Exp $ ---- browser.c 2000/04/12 16:32:26 2.21 -+++ browser.c 2000/05/20 07:30:40 -@@ -34,8 +34,6 @@ - #include <ctype.h> - #include <unistd.h> - #include <sys/stat.h> --#include <pwd.h> --#include <grp.h> +--- doc/Makefile.in.orig Mon Jun 4 19:14:32 2001 ++++ doc/Makefile.in Sun Jul 22 15:09:17 2001 +@@ -29,7 +29,7 @@ + CPPFLAGS = @CPPFLAGS@ + + DEFS = -DSYSCONFDIR=\"$(sysconfdir)\" -DBINDIR=\"$(bindir)\" -DHAVE_CONFIG_H=1 +-INCLUDES = -I. -I.. -I$(includedir) -I$(top_srcdir) ++INCLUDES = -I. -I.. -I$(top_srcdir) + + MAKEDOC_CPP = $(CPP) $(INCLUDES) $(DEFS) $(CPPFLAGS) -D_MAKEDOC -C - static struct mapping_t FolderHelp[] = { - { N_("Exit"), OP_EXIT }, |