Am 14.01.2012 06:19, schrieb Da Rock:
> On 01/14/12 15:13, Warren Block wrote:
>> On Sat, 14 Jan 2012, Da Rock wrote:
>>
>>> On 01/14/12 13:37, Tobi wrote:
>>>> Hi,
>>>> I try to filter my maillist emails with slieve... but it dosen't
>>>> work ;(
>>>>
>>>> here are my config:
>>>>
>>>> require "fileinto";
>>>>
>>>> if address :is ["from", "to"] "[email protected]" {
>>>>      fileinto "INBOX/Mailinglisten/FreeBSD/freebsd-bugs";
>>>> }
>>>>
>>>> elsif address :is ["from", "to"]
>>>> "[email protected]" {
>>>>      fileinto "INBOX/Mailinglisten/FreeBSD/freebsd-questions";
>>>> }
>>>>
>>>> else {
>>>>       keep;
>>>> }
>>> You probably want to change the "owner" to just the list in question.
>>
>> Or use the List-ID header.
> Ahh yes! That was the one I used to use... :)
> _______________________________________________
> [email protected] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[email protected]"

Thanks!!!
It works fine with this:

if header :contains ["List-ID"] "[email protected]" {
    fileinto "INBOX.Mailinglisten.FreeBSD.freebsd-questions";
    stop;
}

_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[email protected]"

Reply via email to