From: Matija N. <mna...@vo...> - 2006-12-02 13:00:21
|
On Tue, Nov 28, 2006 at 10:10:29PM -0800, Jonathan Nichols wrote: > sometimes there are quite a few emails in the "cur" folder. Can I do > something like "pyzor report < *" or is it going to be more complicated > than that? It is going to be more complicated. not much -- if you really want "perl" which imitates a "sh", then you need: system ('for f in *; do pyzor report < $f; done') (single quotes are important) > My Perl-foo is very weak, so I ask you, pyzor hive mind, for help. :D BTW, why don't you use "spamassassin --report" ? It is intented to do both bayesian sa-learn, and report to all services you have enabled (pyzor, DCC, spamcop, ....) which seems to be exactly what you want -- Opinions above are GNU-copylefted. |