-mutt (1.5.20-3) UNRELEASED; urgency=low
+mutt (1.5.20-3) unstable; urgency=low
[ Adeodato Simó ]
* Remove myself from Uploaders.
correctly even if pgp_auto_decode is set (Closes: 533370)
+ upstream/533520-signature-highlight.patch: fixed a problem in signature
hightlighting if text_flowed was set to 'yes' (Closes: 533520)
+ + upstream/542817-smimekeys-tmpdir.patch: smime_keys.pl will skip tmpdir
+ if it contains '=' (Closes: 542817)
* debian/control:
+ Standards-Version bumped to 3.8.3
* debian/extra/lib/mailto-mutt: patch from madduck@ to correctly handle the
* Recommend default-mta instead of exim4 (Closes: 533442)
* Remove redudant hard-coded libgpgme11 from Recommends.
- -- Christoph Berg <myon@debian.org> Sun, 13 Sep 2009 13:30:05 +0200
+ -- Antonio Radici <antonio@dyne.org> Sun, 13 Sep 2009 18:34:48 +0100
mutt (1.5.20-2) unstable; urgency=low
upstream/393926-internal-viewer.patch
upstream/543467-thread-segfault.patch
upstream/544180-italian-yesorno.patch
+upstream/542817-smimekeys-tmpdir.patch
misc/hyphen-as-minus.patch
#misc/manpage-typos.patch
misc/smime_keys-manpage.patch
--- /dev/null
+skip the configured tmpdir if it contains '=', that convention is used only by
+mutt, see upstream http://bugs.mutt.org/3324
+
+--- a/smime_keys.pl
++++ b/smime_keys.pl
+@@ -946,6 +946,7 @@
+ $option = "notemp" if (not defined($option));
+ if (! $tmpdir and $option eq "temp") {
+ $tmpdir = mutt_Q 'tmpdir';
++ $tmpdir = '/tmp' if ($tmpdir =~ m/=/); # if the tmpdir contains '=', use the default
+ $tmpdir = newfile("$tmpdir/smime");
+ mkdir $tmpdir, 0700 || die "Can't create $tmpdir: $!\n";
+ }