On Thu, Sep 30, 2004 at 10:53:16PM +0200, manu@... wrote:
> # And finaly, Manu's setup:
> acl myusers {
> rcpt user1@...
> rcpt user2@...
> rcpt user3@...
> }
> acl mywhitelist {
> addr 193.54.0.0/16
> domain friendly.com
> }
> whitelist mywhitelist
> greylist myusers
> whitelist default
That's wrong. Because an ACL has to match all rules to get selected, my setup
would be:
acl user1 {
rcpt user1@...
}
acl user2 (
rcpt user2@...
}
acl user3 {
rcpt user3@...
}
acl mywhitelist {
addr 193.54.0.0/16
domain friendly.com
}
whitelist mywhitelist
greylist user1
greylist user2
greylist user3
whitelist default
Of course that makes my config file much more heavyweigth.
--
Emmanuel Dreyfus
manu@...Message
Re: [milter-greylist] RFC: New config syntax proposal
2004-10-01 by Emmanuel Dreyfus
Attachments
- No local attachments were found for this message.