(Closes: 528233)
+ upstream/228671-pipe-mime.patch: don't mess up the terminal while piping
attachments (Closes: 228671)
+ + upstream/383769-score-match.patch: match full name with ~F, same as
+ mutt-ng (Closes: 383769)
+ 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/528233-readonly-open.patch
upstream/228671-pipe-mime.patch
+upstream/383769-score-match.patch
misc/hyphen-as-minus.patch
#misc/manpage-typos.patch
misc/smime_keys-manpage.patch
--- /dev/null
+better matching for ~F, same as mutt-ng did, see upstream
+http://bugs.mutt.org/2179
+
+--- a/score.c
++++ b/score.c
+@@ -133,7 +133,7 @@
+ hdr->score = 0; /* in case of re-scoring */
+ for (tmp = Score; tmp; tmp = tmp->next)
+ {
+- if (mutt_pattern_exec (tmp->pat, 0, NULL, hdr) > 0)
++ if (mutt_pattern_exec (tmp->pat, M_MATCH_FULL_ADDRESS, NULL, hdr) > 0)
+ {
+ if (tmp->exact || tmp->val == 9999 || tmp->val == -9999)
+ {