Am?rico Rocha, 2001-Dec-21 00:55 +0000:
>
> Hi there,
> I'm trying to make a maildrop recipe, in order to get my email
> organized.. I want all email comming from debian-user@lists.debian.org,
> moved immediately to ~/Maildir/debian-user.
>
> I wrote a simple .mailfilter file, in order to accomplish this, that
states:
>
>
> if (/^From: *debian-user@lists.debian\.org/ \
> {
> to "./Maildir/debian-user"
> }
>
> ..hum.. it didn't seem to work.
> I don't have maildrop running anywhere, should i invoke it somewhere, as a
> daemon or something ?
>
> TIA for any tips
Here's the one I've been using for a long time that works:
if ( /^(To|Cc):.*debian-user@*/ )
{
to $MAILBOX/deb-user
}