In-Reply-To is not initially present (Closes: 568295)
+ upstream/547980-smime_keys-chaining.patch: support certificate chaining in
smime_keys (Closes: 547980, 549006)
+ + upstream/528233-readonly-open.patch: open attachments in read-only
+ (Closes: 528233)
+ 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/568295-references.patch
upstream/547980-smime_keys-chaining.patch
+upstream/528233-readonly-open.patch
misc/hyphen-as-minus.patch
#misc/manpage-typos.patch
misc/smime_keys-manpage.patch
--- /dev/null
+Open attachments as read-only so the editor won't be able to modify it;
+otherwise the user can believe that he/she can edit it and risk to lose his/her
+work (see upstream bug http://bugs.mutt.org/3261)
+
+--- a/attach.c
++++ b/attach.c
+@@ -494,6 +494,7 @@
+ goto return_error;
+ }
+
++ chmod (tempfile, 0400);
+ use_pipe = rfc1524_expand_command (a, tempfile, type,
+ command, sizeof (command));
+ use_pager = entry->copiousoutput;