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