summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2012-10-05 19:58:42 +0200
committerintrigeri <intrigeri@boum.org>2012-10-05 20:15:29 +0200
commit84b8fb4e25b5c78965a5e7babafa7e356ada572a (patch)
treeac86893410ac02935761a40f3af00b162045b1fb
parent1e61154f49422f2d718f34114991f92861370718 (diff)
Tell mutt *not* to save outgoing email.
This fixes Debian bug #657071.
-rwxr-xr-xmetche2
1 files changed, 1 insertions, 1 deletions
diff --git a/metche b/metche
index ef1983e..e3836c4 100755
--- a/metche
+++ b/metche
@@ -82,7 +82,7 @@ add_header() {
_mail() {
local subject="$1"
if which mutt > /dev/null ; then
- LC_ALL="$LOCALE" mutt -F/dev/null -s "$subject" "$EMAIL_ADDRESS"
+ LC_ALL="$LOCALE" mutt -F/dev/null -e 'set record="/dev/null"' -s "$subject" "$EMAIL_ADDRESS"
elif which mail > /dev/null ; then
LC_ALL="$LOCALE" mail -s "$subject" "$EMAIL_ADDRESS"
elif [ -x /usr/sbin/sendmail ]; then