Codebase list metche / 4f7ee34
Drop all patches: applied upstream. intrigeri 6 years ago
3 changed file(s) with 0 addition(s) and 54 deletion(s). Raw diff Collapse all Expand all
+0
-30
debian/patches/0001-Bypass-root-s-mutt-configuration-file.patch less more
0 Description: Bypass root's mutt configuration file
1 Subject:Bypass root's mutt configuration file.In case the root user has configured mutt, in their $HOME, for their own
2 interactive use, we don't want these tweaks to impact the non-interactive use
3 metche makes of mutt in any way.
4 .
5 In case the administrator wants to configure mutt for interactive *and*
6 non-interactive use, they'd better edit its system-wide configuration file.
7 .
8 As mentioned by Andreas Beckmann, a mutt configuration file for the root user
9 may trigger more occurrences of Debian bug #657071 than needed :)
10 From:intrigeri <intrigeri@boum.org>
11 Bug-Debian: https://bugs.debian.org/657071
12 Origin: upstream, commit:1e61154f49422f2d718f34114991f92861370718
13 ---
14 metche | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/metche b/metche
18 index 4bf511c..ef1983e 100755
19 --- a/metche
20 +++ b/metche
21 @@ -82,7 +82,7 @@ add_header() {
22 _mail() {
23 local subject="$1"
24 if which mutt > /dev/null ; then
25 - LC_ALL="$LOCALE" mutt -s "$subject" "$EMAIL_ADDRESS"
26 + LC_ALL="$LOCALE" mutt -F/dev/null -s "$subject" "$EMAIL_ADDRESS"
27 elif which mail > /dev/null ; then
28 LC_ALL="$LOCALE" mail -s "$subject" "$EMAIL_ADDRESS"
29 elif [ -x /usr/sbin/sendmail ]; then
+0
-22
debian/patches/0002-Tell-mutt-not-to-save-outgoing-email.patch less more
0 Description: Tell mutt not to save outgoing email
1 Subject:Tell mutt *not* to save outgoing email.This fixes Debian bug #657071.
2 From:intrigeri <intrigeri@boum.org>
3 Bug-Debian: https://bugs.debian.org/657071
4 Origin: upstream, commit:84b8fb4e25b5c78965a5e7babafa7e356ada572a
5 ---
6 metche | 2 +-
7 1 file changed, 1 insertion(+), 1 deletion(-)
8
9 diff --git a/metche b/metche
10 index ef1983e..e3836c4 100755
11 --- a/metche
12 +++ b/metche
13 @@ -82,7 +82,7 @@ add_header() {
14 _mail() {
15 local subject="$1"
16 if which mutt > /dev/null ; then
17 - LC_ALL="$LOCALE" mutt -F/dev/null -s "$subject" "$EMAIL_ADDRESS"
18 + LC_ALL="$LOCALE" mutt -F/dev/null -e 'set record="/dev/null"' -s "$subject" "$EMAIL_ADDRESS"
19 elif which mail > /dev/null ; then
20 LC_ALL="$LOCALE" mail -s "$subject" "$EMAIL_ADDRESS"
21 elif [ -x /usr/sbin/sendmail ]; then
+0
-2
debian/patches/series less more
0 0001-Bypass-root-s-mutt-configuration-file.patch
1 0002-Tell-mutt-not-to-save-outgoing-email.patch