Re: Ezmlm :Subject line
Amitai Schlair <[email protected]>
| Newsgroups | gmane.mail.ezmlm |
|---|---|
| Message-ID | <[email protected]> |
On Feb 22, 2007, at 2:22 PM, Jeremy Kitchen wrote:
> John Leishman wrote:
>> Could I make a small suggestion. The SPAM count is way up and even
>> manual filtering of personal mail can fall down when senders are
>> unknown
>> and subject line is ambiguous. That IS a signature of SPAM after
>> all...
>>
>> Could the prefix of the list be inserted for all initial posts and
>> the
>> replies will continue it.
>
> You can do what a lot of us do and set up different extension
> addresses
> for each subscription.
True dat. Also, once you have your lists sorting themselves, you
might find yourself annoyed by lists that prepend crap to Subject:,
since that wastes prime visual space in your mail reader. For such
lists I use an "unmunge-subject" script from the appropriate .qmail
file. E.g., for Bruce Guenter's nullmailer:
| unmunge-subject '\[nullmailer\] ' | tomaildir ./Maildir/.bgware
The "unmunge-subject" script is basically:
822headerfilter sed -e "/^Subject: /s/$1//g" \
-e '/^Subject: /s/Re: Re:/Re:/g'
(Note that this requires qtools for 822headerfilter and tomaildir.)