From edf4df1d73bc87f25b584ed26e1fdfb5eed09623 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 15 Oct 2012 11:35:07 +0200 Subject: [PATCH 01/16] add ansible-project mailing list --- .mutt/lists | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.mutt/lists b/.mutt/lists index 70fce69..0666acb 100644 --- a/.mutt/lists +++ b/.mutt/lists @@ -261,6 +261,7 @@ subscribe vobject@lists.skyhouseconsulting.com subscribe users@openoffice.org subscribe linux-thinkpad@linux-thinkpad.org subscribe calendarserver-users@lists.macosforge.org -alias salt-users@googlegroups.com +subscribe salt-users@googlegroups.com +subscribe ansible-project@googlegroups.com # vim:ft=muttrc -- 2.39.5 From 02e4a0894209d2d9b2b3f81cd85a6dcfcf03ed40 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Fri, 14 Dec 2012 06:55:34 +0100 Subject: [PATCH 02/16] properly remove x-bcc-spool header before sending --- .mutt/sendmail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mutt/sendmail b/.mutt/sendmail index 48b5e63..132a417 100755 --- a/.mutt/sendmail +++ b/.mutt/sendmail @@ -34,6 +34,6 @@ cat > $TMPFILE recipients="$recipients $(formail -czx X-Bcc-Spool: < "$TMPFILE" | tr -d ',')" args=$(for i in $recipients; do echo "--arg=$i"; done) run-parts --umask=0077 --arg="$TMPFILE" $args -- "$CHECKSDIR" -formail -I X-Spool-Bcc: < "$TMPFILE" | eval $SENDMAIL "$sendmail_args" -- "$recipients" +formail -I X-Bcc-Spool: < "$TMPFILE" | eval $SENDMAIL "$sendmail_args" -- "$recipients" cleanup -- 2.39.5 From 3866f1ef8a9c02ba429809b0e4eb7aea4647b074 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 3 Apr 2013 17:07:42 +0200 Subject: [PATCH 03/16] new vimperator list --- .mutt/lists | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mutt/lists b/.mutt/lists index 0666acb..2b0bbc2 100644 --- a/.mutt/lists +++ b/.mutt/lists @@ -227,7 +227,7 @@ subscribe desktop_architects@lists.linux-foundation.org subscribe distributions@lists.freedesktop.org subscribe asterisk-users@lists.digium.com subscribe puppet-(users|dev)@googlegroups.com -subscribe vimperator@mozdev.org +subscribe vimperator-labs@googlegroups.com subscribe rdiff-backup-users@nongnu.org subscribe backuppc-users@lists.sourceforge.net subscribe grub-devel@gnu.org -- 2.39.5 From bc80ed2314a00e9b0b6137ae784775a5a2482c84 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 3 Apr 2013 17:07:52 +0200 Subject: [PATCH 04/16] add libvirt list --- .mutt/lists | 1 + 1 file changed, 1 insertion(+) diff --git a/.mutt/lists b/.mutt/lists index 2b0bbc2..dcceede 100644 --- a/.mutt/lists +++ b/.mutt/lists @@ -263,5 +263,6 @@ subscribe linux-thinkpad@linux-thinkpad.org subscribe calendarserver-users@lists.macosforge.org subscribe salt-users@googlegroups.com subscribe ansible-project@googlegroups.com +subscribe libvirt-users@redhat.com # vim:ft=muttrc -- 2.39.5 From 50d679406fc28762932d5b48287e1933215de6fb Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 22 Apr 2013 11:48:25 +0200 Subject: [PATCH 05/16] add kbkg/kgfg to alternates --- .mutt/alternates | 1 + 1 file changed, 1 insertion(+) diff --git a/.mutt/alternates b/.mutt/alternates index 1233130..826053c 100644 --- a/.mutt/alternates +++ b/.mutt/alternates @@ -25,6 +25,7 @@ alternates .+@limerence\.org alternates .+@belligerence\.net alternates ma(rtin|dduck)@alpinflegel\.de alternates ma(rtin|dduck)@krafftwerk\..+ +alternates k(bk|gf)g@krafftwerk\.de alternates martin@krafft\.(de|ch|ie) alternates comments\+.+@blog\.madduck\.net alternates .+@hanfstaenglstrasse\.de -- 2.39.5 From 2cba9ba6247bf11aef1c9b9d9e8133e2ee9524bb Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 24 Apr 2013 16:29:16 +0200 Subject: [PATCH 06/16] integrate lbdb rc file --- .lbdbrc | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .lbdbrc diff --git a/.lbdbrc b/.lbdbrc new file mode 100644 index 0000000..a66f67c --- /dev/null +++ b/.lbdbrc @@ -0,0 +1,17 @@ +CONTACTS_DIR=$HOME/contacts + +: ${TMPDIR:=/tmp} + +if [ -d $CONTACTS_DIR ]; then + METHODS="$METHODS m_vcf" + VCF_FILES="$TMPDIR/lbdbq.vcf" + + VCF_TEMP="$(tempfile -d $TMPDIR -p lbdbq -s .vcf)" + cleanup() { rm -f $VCF_TEMP; trap - EXIT; } + + for i in $CONTACTS_DIR/*; do case "${i##*/}" in ICE*) continue;; esac; cat "$i"; echo ; done >| "$VCF_TEMP" + if ! cmp "$VCF_FILES" "$VCF_TEMP"; then + mv "$VCF_TEMP" "$VCF_FILES" + fi + cleanup +fi -- 2.39.5 From 112c0f88e879d6d3dd90e57bf022eb8d241f8916 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 24 Apr 2013 16:55:38 +0200 Subject: [PATCH 07/16] silence cmp call by lbdbq --- .lbdbrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.lbdbrc b/.lbdbrc index a66f67c..f169a48 100644 --- a/.lbdbrc +++ b/.lbdbrc @@ -10,7 +10,7 @@ if [ -d $CONTACTS_DIR ]; then cleanup() { rm -f $VCF_TEMP; trap - EXIT; } for i in $CONTACTS_DIR/*; do case "${i##*/}" in ICE*) continue;; esac; cat "$i"; echo ; done >| "$VCF_TEMP" - if ! cmp "$VCF_FILES" "$VCF_TEMP"; then + if ! cmp --quiet "$VCF_FILES" "$VCF_TEMP"; then mv "$VCF_TEMP" "$VCF_FILES" fi cleanup -- 2.39.5 From 882d8531457c359c4811a1375a9692975110153c Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 24 Apr 2013 16:59:54 +0200 Subject: [PATCH 08/16] reuse lbdbq's tmpdir for our temporary stuff --- .lbdbrc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.lbdbrc b/.lbdbrc index f169a48..99a6b5b 100644 --- a/.lbdbrc +++ b/.lbdbrc @@ -5,13 +5,9 @@ CONTACTS_DIR=$HOME/contacts if [ -d $CONTACTS_DIR ]; then METHODS="$METHODS m_vcf" VCF_FILES="$TMPDIR/lbdbq.vcf" - - VCF_TEMP="$(tempfile -d $TMPDIR -p lbdbq -s .vcf)" - cleanup() { rm -f $VCF_TEMP; trap - EXIT; } - + VCF_TEMP="$tmpdir/contacts.vcf" for i in $CONTACTS_DIR/*; do case "${i##*/}" in ICE*) continue;; esac; cat "$i"; echo ; done >| "$VCF_TEMP" if ! cmp --quiet "$VCF_FILES" "$VCF_TEMP"; then mv "$VCF_TEMP" "$VCF_FILES" fi - cleanup fi -- 2.39.5 From 57c899814e74bdf9adec4c7d8211fc25d6b39697 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sat, 15 Jun 2013 21:02:40 +0200 Subject: [PATCH 09/16] New functionality: reusing messages --- .mutt/keybindings | 7 ++++--- .mutt/reuse-message | 30 ++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 3 deletions(-) create mode 100755 .mutt/reuse-message diff --git a/.mutt/keybindings b/.mutt/keybindings index 5a2109c..0fe8867 100644 --- a/.mutt/keybindings +++ b/.mutt/keybindings @@ -14,9 +14,6 @@ macro index p "" "do nothing" macro index S "=store" "save messages to store" macro pager S "=store" "save message to store" -macro index \er '=resubmit' "resubmit messages" -macro pager \er '=resubmit' "resubmit message" - macro index,pager E 'source "$my_confdir/supersede-header X-Tickle get-timestamp|"push \er' "schedule messages with tickler" macro index,pager \ex 'source "$my_confdir/remove-header X-Postponed|"' "release postponed messages" @@ -72,6 +69,10 @@ macro index,pager e 'set my_editor="$editor"set my_editor="$editor"source "$my_confdir/batch-subject-editor|"set editor="$my_editor"' "change message subject" +macro index,pager \er 'set my_editor="$editor"set editor="~/.mutt/reuse-message $my_editor"set editor="$my_editor"' "invoke normal editor to edit message" +macro index,pager \eg 'set my_editor="$editor"set editor="~/.mutt/reuse-message $my_editor"set editor="$my_editor"' "invoke normal editor to edit message" +macro index,pager \el 'set my_editor="$editor"set editor="~/.mutt/reuse-message $my_editor"set editor="$my_editor"' "invoke normal editor to edit message" + macro index "unset wait_key~/.mutt/mutt-notmuch --prompt search~/.cache/mutt_results" "search mail (using notmuch)" macro index "unset wait_key~/.mutt/mutt-notmuch thread~/.cache/mutt_resultsset wait_key" "search and reconstruct owning thread (using notmuch)" diff --git a/.mutt/reuse-message b/.mutt/reuse-message new file mode 100755 index 0000000..c833bd3 --- /dev/null +++ b/.mutt/reuse-message @@ -0,0 +1,30 @@ +#!/bin/sh +set -eu + +eval mailfile="\${$#}" +for i in "$@"; do + # strip last argument from editor, yuk + case "$i" in + ($mailfile) break;; + (*) editor="${editor:+$editor }$i";; + esac +done + +tmpfile=$(tempfile -p reuse) +cleanup() { rm -f "$tmpfile"; trap - 1 2 3 4 5 6 7 8 10 11 12 13 14 15; } +trap cleanup 1 2 3 4 5 6 7 8 10 11 12 13 14 15 + +formail -I Subject: < "$mailfile" | \ + formail -I In-Reply-To: | \ + sed -e '/^$/,/^-- /d' | \ + sed -e '/^Bcc:/aSubject: ' > "$tmpfile" +cat "$tmpfile" > "$mailfile" + +if [ -n "$editor" ]; then + eval exec "$editor" "$mailfile" +elif [ -n "$VISUAL" ]; then + eval exec "$VISUAL" "$mailfile" +elif [ -n "$EDITOR" ]; then + eval exec "$EDITOR" "$mailfile" +fi +exec /usr/bin/editor "$mailfile" -- 2.39.5 From ff90937db28487ad9228eed5357565d2fcc3986e Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sun, 16 Jun 2013 09:32:10 +0200 Subject: [PATCH 10/16] Initialise editor variable Signed-off-by: martin f. krafft --- .mutt/reuse-message | 1 + 1 file changed, 1 insertion(+) diff --git a/.mutt/reuse-message b/.mutt/reuse-message index c833bd3..f7397ff 100755 --- a/.mutt/reuse-message +++ b/.mutt/reuse-message @@ -2,6 +2,7 @@ set -eu eval mailfile="\${$#}" +editor= for i in "$@"; do # strip last argument from editor, yuk case "$i" in -- 2.39.5 From 9a6cfd7f07585a98179ae7e272677d9b75e2c581 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sun, 16 Jun 2013 09:32:30 +0200 Subject: [PATCH 11/16] Quoting fix (and a comment added) Signed-off-by: martin f. krafft --- .mutt/reuse-message | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.mutt/reuse-message b/.mutt/reuse-message index f7397ff..6353558 100755 --- a/.mutt/reuse-message +++ b/.mutt/reuse-message @@ -6,7 +6,7 @@ editor= for i in "$@"; do # strip last argument from editor, yuk case "$i" in - ($mailfile) break;; + ("$mailfile") break;; (*) editor="${editor:+$editor }$i";; esac done @@ -23,6 +23,8 @@ cat "$tmpfile" > "$mailfile" if [ -n "$editor" ]; then eval exec "$editor" "$mailfile" + +# the last three replicate mutt's default (cf. manual) elif [ -n "$VISUAL" ]; then eval exec "$VISUAL" "$mailfile" elif [ -n "$EDITOR" ]; then -- 2.39.5 From efc733a84fafb394681a0fe2a80e5ed2866209df Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sun, 16 Jun 2013 09:32:40 +0200 Subject: [PATCH 12/16] add crtmpserver list Signed-off-by: martin f. krafft --- .mutt/lists | 1 + 1 file changed, 1 insertion(+) diff --git a/.mutt/lists b/.mutt/lists index dcceede..d4ea8e6 100644 --- a/.mutt/lists +++ b/.mutt/lists @@ -264,5 +264,6 @@ subscribe calendarserver-users@lists.macosforge.org subscribe salt-users@googlegroups.com subscribe ansible-project@googlegroups.com subscribe libvirt-users@redhat.com +subscribe c-rtmp-server@googlegroups.com # vim:ft=muttrc -- 2.39.5 From 78ae86a908265776c91728333e451be278a8a0e7 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 27 Jun 2013 18:58:24 +0200 Subject: [PATCH 13/16] fix tickle, reassign resubmit keybinding Signed-off-by: martin f. krafft --- .mutt/keybindings | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.mutt/keybindings b/.mutt/keybindings index 0fe8867..4448864 100644 --- a/.mutt/keybindings +++ b/.mutt/keybindings @@ -14,7 +14,10 @@ macro index p "" "do nothing" macro index S "=store" "save messages to store" macro pager S "=store" "save message to store" -macro index,pager E 'source "$my_confdir/supersede-header X-Tickle get-timestamp|"push \er' "schedule messages with tickler" +macro index \Cs '=resubmit' "resubmit messages" +macro pager \Cs '=resubmit' "resubmit message" + +macro index,pager E 'source "$my_confdir/supersede-header X-Tickle get-timestamp|"push \Cs' "schedule messages with tickler" macro index,pager \ex 'source "$my_confdir/remove-header X-Postponed|"' "release postponed messages" macro index,pager \es "=store" "go to store folder" -- 2.39.5 From 2acef100d7ed86fb12abf80908376b08d64df4ff Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sat, 29 Jun 2013 08:59:24 +0200 Subject: [PATCH 14/16] cleanup tmpfile in reuse-message --- .mutt/reuse-message | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.mutt/reuse-message b/.mutt/reuse-message index 6353558..0bdb3f8 100755 --- a/.mutt/reuse-message +++ b/.mutt/reuse-message @@ -21,6 +21,8 @@ formail -I Subject: < "$mailfile" | \ sed -e '/^Bcc:/aSubject: ' > "$tmpfile" cat "$tmpfile" > "$mailfile" +cleanup + if [ -n "$editor" ]; then eval exec "$editor" "$mailfile" -- 2.39.5 From e5ed81a0ebf77b5f245081ddf1ca76a55c60a0ab Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Fri, 23 Aug 2013 10:10:29 +0200 Subject: [PATCH 15/16] lists cleanup --- .mutt/lists | 290 +++++++++------------------------------------------- 1 file changed, 49 insertions(+), 241 deletions(-) diff --git a/.mutt/lists b/.mutt/lists index d4ea8e6..5c4cbfe 100644 --- a/.mutt/lists +++ b/.mutt/lists @@ -1,269 +1,77 @@ -#lists dri-users@lists.sourceforge.net -#lists fai-workshop@guug.de -#lists pilot-link-general@pilot-link.org -#lists pkg-nagios-devel@lists.alioth.debian.org -#lists procmail@informatik.rwth-aachen.de lists staff@sccs.swarthmore.edu -subscribe debian-research@lists.debian.org -lists accu-general@accu.org -#subscribe acpi-devel@lists.sourceforge.net -#subscribe admins@nipl.net -#subscribe ailab@ifi.u(ni)?zh.ch -#subscribe ak-zert@guug.de -#subscribe all@lists.ailab.ch -#subscribe all_ass@ifi.u(ni)?zh.ch -#subscribe all_ass_real@ifi.u(ni)?zh.ch -#subscribe all_gast@ifi.u(ni)?zh.ch -#subscribe alt.comp.os.palm@lists.madduck.net -#subscribe announce@lists.ailab.ch -#subscribe announce@nipl.net -#subscribe archetypes-devel@lists.sourceforge.net -#subscribe archetypes-users@lists.sourceforge.net -subscribe area-muc@teams.debian.net -subscribe funsec@linuxbox.org -subscribe xorg@(lists.)?freedesktop.org -subscribe xorg-driver-ati@lists.x.org -subscribe privacy@whitestar.linuxbox.org -subscribe backports-users@lists.backports.org -#subscribe bazaar-ng@lists.canonical.com -subscribe boost-announce@lists.boost.org -#subscribe boost-interest@lists.boost.org -subscribe boost-users@lists.boost.org -#subscribe brownbags@lists.ailab.ch -#subscribe buffy-devel@lists.alioth.debian.org -subscribe bugtraq@securityfocus.com -subscribe cluster-admins@lists.ailab.ch -subscribe cluster-announce@lists.ailab.ch -subscribe cluster-fw-admins@lists.ailab.ch -#subscribe cmf@dzug.org -subscribe (community|discuss)@opensource.mit.edu -#subscribe comp.lang.c++.moderated@lists.madduck.net -subscribe cong@agouros.de -#subscribe cpp@snippets.org -subscribe crm114-(general|discuss)@lists.sourceforge.net -#subscribe cryptography@cypherpunks.ch -#subscribe cryptography@metzdowd.com -subscribe css-d@lists.css-discuss.org -#subscribe curiosa@lists.ailab.ch -#subscribe cypherpunks@al-qaeda.net -#subscribe cypherpunks@minder.net -subscribe debconf-announce@lists.debconf.org -subscribe debconf-discuss@lists.debconf.org -subscribe debconf-press@lists.debconf.org -subscribe debconf-team@lists.debconf.org -subscribe debconf8-localteam@lists.debconf.org -subscribe debconf-thailand@lists.madduck.net -subscribe debian-apache@lists.debian.org +subscribe slug@sccs.swarthmore.edu + +subscribe presse@uni-wh.de + +subscribe ailab-curiosa@lists.ifi.uzh.ch + subscribe debian-books@lists.debian.org -subscribe debian-boot@lists.debian.org -subscribe debian-bsd@lists.debian.org subscribe debian-curiosa@lists.debian.org +subscribe debian-devel-announce@lists.debian.org subscribe debian-devel@lists.debian.org -subscribe debian-doc@lists.debian.org subscribe debian-events-eu@lists.debian.org subscribe debian-events@lists.debian.org -subscribe debian-edu@lists.debian.org subscribe debian-firewall@lists.debian.org -subscribe debian-glibc@lists.debian.org -subscribe debian-handheld@lists.debian.org +subscribe debian-infrastructure-announce@lists.debian.org subscribe debian-ipv6@lists.debian.org subscribe debian-isp@lists.debian.org -subscribe debian-kernel@lists.debian.org -subscribe debian-laptop@lists.debian.org subscribe debian-lsb@lists.debian.org subscribe debian-mentors@lists.debian.org -subscribe debian-policy@lists.debian.org subscribe debian-private@lists.debian.org subscribe debian-project@lists.debian.org -subscribe debian-publicity@lists.debian.org -subscribe debian-qa@lists.debian.org subscribe debian-release@lists.debian.org -subscribe debian-security@lists.debian.org -subscribe community@lists.debian.ch +subscribe debian-research@lists.debian.org +subscribe debian-security-announce@lists.debian.org subscribe debian-user@lists.debian.org -subscribe debian-volatile@volatile.debian.org subscribe debian-vote@lists.debian.org -subscribe debian-wisdom@lists.madduck.net subscribe debian-women@lists.debian.org -lists debian-mirrors@lists.debian.org -lists debian-x@lists.debian.org -subscribe debian.ch@fortytwo.ch -#subscribe deity@lists.debian.org -#subscribe docutils-develop@lists.sourceforge.net -#subscribe docutils-users@lists.sourceforge.net + +subscribe debconf-announce@lists.debconf.org +subscribe debconf-discuss@lists.debconf.org +subscribe debconf-team@lists.debconf.org +subscribe debconf-thailand@lists.madduck.net +subscribe debconf15-germany@lists.madduck.net + +subscribe lca-announce@lists.linux.org.au + +subscribe area-muc@teams.debian.net +subscribe community@lists.debian.ch + +subscribe pkg-salt-team@lists.alioth.debian.org + +#subscribe (community|discuss)@opensource.mit.edu +subscribe os-renet@insel.cs.tu-berlin.de +subscribe openchat@lists.nzoss.org.nz +subscribe campers@groups.baacamp.org + +subscribe ansible-project@googlegroups.com +subscribe asterisk-users@lists.digium.com +subscribe backuppc-users@lists.sourceforge.net subscribe dovecot@dovecot.org -#subscribe dzug@dzug.org -#subscribe events@lists.ailab.ch -#subscribe freestandards-fhs-discuss@lists.sourceforge.net -#subscribe full-disclosure@(lists.)?netsys.com -#subscribe fw1-gurus@lists.phoneboy.com -#subscribe gammu-legal@lists.madduck.net -#subscribe gammu@fkn.net.pl -subscribe git@vger.kernel.org -subscribe kvm@vger.kernel.org -#subscribe gnu-arch-users@gnu.org -#subscribe grsecurity@grsecurity.net -#subscribe hct@lists.canonical.com -#subscribe help-cfengine@gnu.org -subscribe hplip-help@lists.sourceforge.net -#subscribe ifi_all@ifi.u(ni)?zh.ch -#subscribe info@sudetia.de -#subscribe initscripts-ng-devel@lists.alioth.debian.org -#subscribe it-problems@lists.ailab.ch -subscribe jpilot@jpilot.org -subscribe jppy@zanu.org.uk -#subscribe keysignings@dragon.roe.ch -#subscribe knews@yahoogroups.com -#subscribe kupu-dev@codespeak.net -#subscribe lartc@mailman.ds9a.nl -#subscribe libcwd-devel@lists.sourceforge.net -#subscribe libhid-announce@lists.ailab.ch -#subscribe libhid-discuss@lists.ailab.ch -#subscribe libixs-announce@lists.ailab.ch -#subscribe libixs-discuss@lists.ailab.ch -#subscribe libligandnet-announce@lists.ailab.ch -#subscribe libligandnet-discuss@lists.ailab.ch -#subscribe libusb-devel@lists.sourceforge.net -#subscribe libv4l2-announce@lists.ailab.ch -#subscribe libv4l2-discuss@lists.ailab.ch -#subscribe linux-fai@uni-koeln.de -subscribe linux-hotplug@vger.kernel.org -subscribe linux-kernel@vger.kernel.org -subscribe linux-raid@vger.kernel.org -#subscribe linux-usb-devel@lists.sourceforge.net -#subscribe linux-usb-users@lists.sourceforge.net -#subscribe linux@ifi.u(ni)?zh.ch -#subscribe log4cxx-user@logging.apache.org -subscribe logcheck-devel@lists.alioth.debian.org -#subscribe lpi-de-core@lists.madduck.net -#subscribe lpi-de@lpi.org -#subscribe lpi-discuss@lpi.org -#subscribe lpi-euwg@lpi.org -#subscribe lpi-examdev@lpi.org -#subscribe lpi-intl@lpi.org -subscribe lurker-users@lists.sourceforge.net -subscribe mailman-users@python.org +subscribe libvirt-users@redhat.com subscribe mailtags@lists.madduck.net -#subscribe mplayer-users@mplayerhq.hu -#subscribe music@(yarn.)?skein.org subscribe mutt-users@mutt.org subscribe netconf-devel@lists.alioth.debian.org -subscribe netdev@vger.kernel.org -subscribe offlineimap@complete.org -#subscribe oo@gooal.net -#subscribe openmosix-general@lists.sourceforge.net -#subscribe opensync-users@lists.sourceforge.net -subscribe os-renet@insel.cs.tu-berlin.de -#subscribe packaging@freestandards.org -subscribe pdns-users@mailman.powerdns.com -#subscribe pdp-discuss@psych.colorado.edu -#subscribe people@lists.ailab.ch -#subscribe phidgets-announce@lists.ailab.ch -#subscribe phidgets-discuss@lists.ailab.ch -subscribe pkg-mdadm-devel@lists.alioth.debian.org -subscribe pkg-sysvinit-devel@lists.alioth.debian.org -#subscribe pkg-zope-developers@lists.alioth.debian.org -lists plone-developers@lists.sourceforge.net -lists plone-users@lists.sourceforge.net +subscribe offlineimap-project@lists.alioth.debian.org subscribe postfix-users@postfix.org -#subscribe pyblosxom-devel@lists.sourceforge.net -#subscribe pyblosxom-users@lists.sourceforge.net -#subscribe python-list@python.org -#subscribe racoon@kame.net -subscribe remind-fans@whatexit.org -subscribe rockbox@cool.haxx.se -subscribe rxvt-unicode@lists.schmorp.de -#subscribe sain@guug.de +subscribe rsyslog@lists.adiscon.com +subscribe salt-users@googlegroups.com subscribe sane-devel@lists.alioth.debian.org -#subscribe sare-users@maddoc.net -#subscribe secure-testing-team@lists.alioth.debian.org -#subscribe security@guninski.com -#subscribe silva-dev@lists.infrae.com -#subscribe silva-general@lists.sourceforge.net -subscribe slug@sccs.swarthmore.edu -subscribe infodrom-fortunes@lists.infodrom.org -#subscribe snns-mail@informatik.uni-tuebingen.de -#subscribe spam@linuxbox.org -#subscribe spamtools@lists.abuse.net -#subscribe staff@lists.ailab.ch -#subscribe students@lists.ailab.ch -#subscribe sudo-users@sudo.ws -#subscribe support@tug.org -subscribe tuxonice-devel@lists.tuxonice.net -#subscribe tuxonice-users@lists.tuxonice.net -#subscribe swig@cs.uchicago.edu -#subscribe sysadm-education@sage.org -#subscribe tech@nipl.net -#subscribe th-research@linuxbox.org -#subscribe timekeepers@fortytwo.ch -subscribe trac-users@googlegroups.com -#subscribe tuxcpprogramming@lists.linux.org.au -#subscribe unix-virus@lists.segfault.net -#subscribe upstart-devel@lists.netsplit.com subscribe users@spamassassin.apache.org -#subscribe vbce-herren1@lists.madduck.net -subscribe vcs-home@lists.madduck.net subscribe vcs-pkg-discuss@lists.alioth.debian.org -#subscribe video4linux-list@redhat.com -#subscribe vim-multibyte@vim.org subscribe vim(@vim.org|_use@googlegroups\.com) -subscribe pkg-vim-maintainers@lists.alioth.debian.org -#subscribe vuln-dev@securityfocus.com -#subscribe wein@lists.madduck.net -#subscribe xen-hosting-discuss@xen-hosting.org -subscribe xfs@oss.sgi.com -lists zope-cmf@zope.org -lists zope-coders@zope.org -lists zope-db@zope.org -lists zope@dzug.org -lists zope@zope.org -lists zwiki@zwiki.org -subscribe revctrl@lists.zooko.com -subscribe (chat|announce)@lists.mel8ourne.org -subscribe irssi@dragoncat.net -subscribe iif-discussion@forecasters.org -subscribe netfilter@vger.kernel.org -subscribe desktop_architects@lists.linux-foundation.org -subscribe distributions@lists.freedesktop.org -subscribe asterisk-users@lists.digium.com -subscribe puppet-(users|dev)@googlegroups.com -subscribe vimperator-labs@googlegroups.com -subscribe rdiff-backup-users@nongnu.org -subscribe backuppc-users@lists.sourceforge.net -subscribe grub-devel@gnu.org -subscribe zsh-users@sunsite.dk -subscribe linux-bluetooth@vger.kernel.org -subscribe unbound-users@unbound.net -subscribe spl-discuss@lists.alioth.debian.org -subscribe mhonarc-users@mhonarc.org -subscribe ubuntu-users@lists.ubuntu.com -subscribe cacert-support@lists.cacert.org -subscribe unison-users@groups.yahoo.com -subscribe soekris-tech@lists.soekris.com -subscribe django-users@googlegroups.com -subscribe pkg-sysvinit-devel@lists.alioth.debian.org -subscribe gnupg-users@gnupg.org -subscribe ext3-users@redhat.com -subscribe debian-arm@lists.debian.org -subscribe phd-delphi-panel@lists.madduck.net -subscribe gpgrelay-talk@lists.sourceforge.net -subscribe gpg4win-users-en@wald.intevation.org -subscribe notmuch@notmuchmail.org -subscribe lca2010-chat@lists.lca2010.org.nz -subscribe patchwork@lists.ozlabs.org -subscribe campers@groups.baacamp.org -subscribe foodfighters@groups.baacamp.org -subscribe a2k@lists.essential.org -subscribe privacy@vortex.com -subscribe maemo-users@maemo.org -subscribe rsyslog@lists.adiscon.com -subscribe vobject@lists.skyhouseconsulting.com -subscribe users@openoffice.org -subscribe linux-thinkpad@linux-thinkpad.org -subscribe calendarserver-users@lists.macosforge.org -subscribe salt-users@googlegroups.com -subscribe ansible-project@googlegroups.com -subscribe libvirt-users@redhat.com -subscribe c-rtmp-server@googlegroups.com +subscribe zsh-users@zsh.org + +subscribe vcs-home@lists.madduck.net + +subscribe webis-android-beta@googlegroups.com + +subscribe (alteherren|info)@sudetia\.de + +subscribe ip@(v2.)?listbox.com +subscribe cypherpunks@cpunks.org + +subscribe .+@r2e\.madduck\.net +subscribe blog@lists.madduck.net # vim:ft=muttrc -- 2.39.5 From c48a8b358a709e4149636669bac4c75fddb09047 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Fri, 23 Aug 2013 10:10:43 +0200 Subject: [PATCH 16/16] reset envelope_from by default --- .mutt/hooks | 1 + 1 file changed, 1 insertion(+) diff --git a/.mutt/hooks b/.mutt/hooks index 3e47813..dfae739 100644 --- a/.mutt/hooks +++ b/.mutt/hooks @@ -11,6 +11,7 @@ send-hook '~f @pobox\.madduck\.net' 'push pf' send2-hook . 'set followup_to' send2-hook '~C git@vger\.kernel\.org' 'unset followup_to' +send2-hook . 'unset envelope_from' send2-hook '~C @members\.ebay\.com' 'set envelope_from' # do a for L when sending to the git mailing list -- 2.39.5