Steven W. Orr wrote: > What I've currently been using is this script: > > #! /bin/bash > exec tee >(mail [EMAIL PROTECTED]) | sa-learn --spam > > Is there an advantage to using -r over what I have? (something like) > exec tee >(spamassassin -r) | sa-learn >
-r will also perform the sa-learn portion for you so no need to call it separately. Michael