1 skip the configured tmpdir if it contains '=', that convention is used only by
2 mutt, see upstream http://bugs.mutt.org/3324
7 $option = "notemp" if (not defined($option));
8 if (! $tmpdir and $option eq "temp") {
9 $tmpdir = mutt_Q 'tmpdir';
10 + $tmpdir = '/tmp' if ($tmpdir =~ m/=/); # if the tmpdir contains '=', use the default
11 $tmpdir = newfile("$tmpdir/smime");
12 mkdir $tmpdir, 0700 || die "Can't create $tmpdir: $!\n";