Re: Pipes & Co

Page principale

Répondre à ce message
Auteur: nicolas_tripon
Date:  
CC: guilde
Sujet: Re: Pipes & Co
>#!/bin/sh
>
>tmpfile=3D/tmp/test-spam-$$
>spamfile=3D/var/log/spamassassin/spamassassin.log
>cat > $tmpfile
>
>if [ `/bin/grep 'X-Spam-Flag: YES' $tmpfile|/usr/bin/wc -l` !=3D 0 ]; =
>then
>        cat $tmpfile >>$spamfile
>        rm -f $tmpfile
>else
>        cat $tmpfile
>        rm -f $tmpfile
>fi


Est-ce que ceci ne pourrait pas être résolu plus simplement avec 'procmail' ?

:0 :
* ^X-Spam-Flag: YES
$spamfile

:0 :
$ordinary_mailbox

-Nicolas Tripon