Codebase list metche / 1f500a9 debian / patches / 0002-Tell-mutt-not-to-save-outgoing-email.patch
1f500a9

Tree @1f500a9 (Download .tar.gz)

0002-Tell-mutt-not-to-save-outgoing-email.patch @1f500a9

1f500a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
From: intrigeri <intrigeri@boum.org>
Date: Fri, 5 Oct 2012 19:58:42 +0200
Subject: Tell mutt *not* to save outgoing email.

This fixes Debian bug #657071.
---
 metche |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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