Marten Lehmann schrieb:
> how do you manage to tell exim to use two spamd servers? According to
> the documentation, it only tries several servers in a row as some
> servers don't respond?
If spamd_address starts with a dollar char, it is expanded each time it
is used, so you could use, for example:
...
spamd_address = $acl_m0
...
drop message = SA says its spam
set acl_m0 = 127.0.0.1 783
spam = nobody
drop message = expurgate says its spam
set acl_m0 = 127.0.0.1 888
spam = nobody
You get the idea ... :)
/tom