Dominik Chilla:
> Sorry, but it still doesnt work. I took a "vanilla" 3.1-20150721 and
> patched it again, checked if the patch applied correctly (searching for
> register_maps_byname() in smtpd_check.c etc.) and compiled the sources.
> When I leave out the leading "{" and the ending "}" it seems to work,
> but only if
> check_mumble_access inline:{[email protected]=OK},static:{REJECT BAD
> SENDER}
The new code was implemented to expect this:
check_sender_access {
inline:{[email protected]=OK}
static:{REJECT BAD SENDER}
}
(This time I added whitespace and newlines for readability.)
But, when you do this:
smtpd_sender_restrictions =
check_sender_access inline:{[email protected]=OK}
check_sender_access static:{REJECT BAD SENDER}
then it would solve the problem, too.
Wietse