]> git.madduck.net Git - etc/mailfilter.git/blob - procmail/listquirks

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

early check for M-F-T header saves some performance
[etc/mailfilter.git] / procmail / listquirks
1 # for lists with a CC-all policy, add the M-F-T header if none exists. This
2 # should go together with mutt hooks to unset followup_to:
3 #
4 #   send-hook . 'set followup_to'
5 #   send-hook '~C git@vger\.kernel\.org' 'unset followup_to'
6 #
7 :0
8 * ? echo "$EQ_TO" | $EGREP -qif $CONF/cclists
9 * ! ^Mail-Followup-To:
10 {
11   CORRESPONDENTS=`formail -cxTo: -xCc: -xFrom: | tr -s '\n' ,`
12   LOG="listquirks:   adding M-F-T header for message on list $EQ_TO$NL"
13   :0 fw
14   |$FORMAIL -A "Mail-Followup-To: $CORRESPONDENTS"
15 }
16
17 # vim:ft=procmail