[Exim] FAQ answer A0404 is wrong

Pàgina inicial
Delete this message
Reply to this message
Autor: Gary Palmer
Data:  
A: exim-users
Assumpte: [Exim] FAQ answer A0404 is wrong
Philip,

The code you provide in example 0404 is incorrect. On the web site
you have:

condition = "${if and {eq {$sender_host_address}{}} \
             {eq {$sender_ident}{majordom}} {yes}{no}}"


it should be:

condition = "${if and {eq {{$sender_host_address}{}} \
             {eq {$sender_ident}{majordom}}} {yes}{no}}"


The {}'s around the conditions to be AND'd together are missing...

(Do I get a prize? :) )

Gary