I think my problem is related to my regular expression syntax. What is the pcre equivalent to regexp's: /@example\.com$/ ? I want to match on @billing.domain2.com .. AFAIK there are subtle differences between pcre and regexp syntax and the most basic stuff is the same? I've been trying this in my pcre table:
/@billing\.domain2\.com$/ billing.domain2.com /./ [mail.domain1.com] but that never matches and everything gets sent out on the default/catchall server, mail.domain1.com Looking around I could swear the syntax is correct. Am I missing something?