A. Schulze:
> <wish>
> smtpd_recipient_restrictions =
> check_foo_to_allow_something,
> reject "you did this or that wrong, call +49 ... for assistance"
> </wish>
>
> Is that possible?
smtpd_recipient_restrictions does not support free text and the
main.cf parser does not support quotes.
Fortunately, neither is needed.
An improved "static" table would do the job:
check_recipient_access static:{reject you did this or that ...}
I'll post a patch in a little while. This takes four lines of code.
Wietse