>>
>
> how can i quarantine spam images? f.e. a test period ?
>
Change to:
warn condition = ${if !eq{$acl_m2}{}{1}{0}}
message = X-Image-Spam: Yes
log_message = Image Found
So it will only Mark messages and log them
and then you can edit the per program to go for example:
if ($numberfound > 1) {
system ("cp $filename /tmp/images/");
print 1;
}
}
And then you can check by hand the images it finds.
Thanks
Craig