smime_keys (Closes: 547980, 549006)
+ upstream/528233-readonly-open.patch: open attachments in read-only
(Closes: 528233)
+ + upstream/228671-pipe-mime.patch: don't mess up the terminal while piping
+ attachments (Closes: 228671)
+ debian-specific/Muttrc: set time_inc to be 250ms (Closes: 537746)
* debian/control:
+ bumping Standards-Version to 3.8.4, nothing to be done
upstream/557395-muttrc-crypto.patch
upstream/545316-header-color.patch
upstream/568295-references.patch
-
upstream/547980-smime_keys-chaining.patch
upstream/528233-readonly-open.patch
+upstream/228671-pipe-mime.patch
+
misc/hyphen-as-minus.patch
#misc/manpage-typos.patch
misc/smime_keys-manpage.patch
--- /dev/null
+Don't draw imap fetch progress if we aren't in visual mode.
+Drawing progress leaves terminal in confusing state when piping a message
+from pager to less(1). See http://bugs.mutt.org/1771
+
+--- a/imap/message.c
++++ b/imap/message.c
+@@ -489,8 +489,9 @@
+ imap_error ("imap_fetch_message()", buf);
+ goto bail;
+ }
+- mutt_progress_init (&progressbar, _("Fetching message..."),
+- M_PROGRESS_SIZE, NetInc, bytes);
++ if (!isendwin())
++ mutt_progress_init (&progressbar, _("Fetching message..."),
++ M_PROGRESS_SIZE, NetInc, bytes);
+ if (imap_read_literal (msg->fp, idata, bytes, &progressbar) < 0)
+ goto bail;
+ /* pick up trailing line */