pkgsrc/mail/mutt-devel/patches/patch-ao
tonio 485e89e839 Update mail/mutt-devel to 1.5.19
User destdir mode instead of user-destdir: this make sure the package is
correctly created when mutt_dotlock is needed.

Mostly bugfixes in changelog, among them:
- Only install mutt_dotlock(1) if binary is installed.
- Allow for mail addresses longer than 256 characters.
- Make multipart decoding a little more forgiving.
- Make $move default to no instead of ask-no.
- Show more information about problematic SMIME signatures under gpgme.
- Improve gpgme SMIME uid display.
- Support displaying application/pgp-keys with GPGME.
- Verify hostname in (Open)SSL certificate validation.
- Make text/enriched handler multibyte aware.
- translation updates.

UPDATING:
+ support for SSL certificate chains
+ <what-key> function works in pager, too
+ support for tokyocabinet (qdbm successor)
! $move now defaults to "no" instead of "ask-no"
+ $imap_pipeline_depth controls the number of commands that mutt can issue
  to an IMAP server before it must collect the responses
+ $ssl_client_cert available with gnutls as well as openssl
+ 'mime_lookup application/octet-stream' added to system Muttrc
2009-01-26 22:35:02 +00:00

18 lines
523 B
Text

$NetBSD: patch-ao,v 1.4 2009/01/26 22:35:03 tonio Exp $
Add change_folder_next option.
--- curs_main.c.orig 2007-12-06 17:32:01.000000000 +0900
+++ curs_main.c 2007-12-06 17:34:20.000000000 +0900
@@ -1080,6 +1080,11 @@
}
else
{
+ if (option (OPTCHANGEFOLDERNEXT) && Context && Context->path)
+ {
+ strfcpy (buf, Context->path, sizeof (buf));
+ mutt_pretty_mailbox (buf, sizeof (buf));
+ }
mutt_buffy (buf, sizeof (buf));
if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)