with large ASCII escape sequences (Closes: 553321)
+ upstream/557395-muttrc-crypto.patch: small fix to the muttrc man
(Closes: 557395)
- + debian/patches/upstream/545316-header-color.patch: do not store the color
- in header cache (Closes: 545316)
+ + upstream/545316-header-color.patch: do not store the color in header cache
+ (Closes: 545316)
+ + upstream/568295-references.patch: preserve the References header if the
+ In-Reply-To is not initially present (Closes: 568295)
+ 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/553238-german-intl.patch
upstream/557395-muttrc-crypto.patch
upstream/545316-header-color.patch
+upstream/568295-references.patch
misc/hyphen-as-minus.patch
#misc/manpage-typos.patch
--- /dev/null
+The purpose of this patch is to preserve the References header if the
+In-Reply-To header is not initially present; forwarded upstream to
+http://bugs.mutt.org/3378
+
+--- a/headers.c
++++ b/headers.c
+@@ -114,8 +114,8 @@
+ $edit_headers set, we remove References: as they're likely invalid;
+ we can simply compare strings as we don't generate References for
+ multiple Message-Ids in IRT anyways */
+- if (!n->in_reply_to || (msg->env->in_reply_to &&
+- mutt_strcmp (n->in_reply_to->data,
++ if (msg->env->in_reply_to &&
++ (!n->in_reply_to || mutt_strcmp (n->in_reply_to->data,
+ msg->env->in_reply_to->data) != 0))
+ mutt_free_list (&msg->env->references);
+