Never mind - after looking at them, I realised following the example, I was using a regex of using ".*@internal.local$", but the internal server name was actually in the outgoing emails meaning the real pattern I should be using is ".*@server.internal.local". I just cheated and set it to ".*internal.local$" (removing the @ sign) - which I believe will be reliable enough (real backscatter seems completely alien and this avoids issues if we have a different internal mail server).
Shannon McCracken
(February 3, 2011)
@Shannon McCracken: I'd recommend using
.*@.*\.internal\.local$
(please note that the dot characters should be "escaped" using backslash, otherwise the dot is interpreted as "any character", so it will match "minternalslocal" as well).
.*@.*\.internal\.local$
(please note that the dot characters should be "escaped" using backslash, otherwise the dot is interpreted as "any character", so it will match "minternalslocal" as well).
Krisztian Fekete
(February 4, 2011)
in response to this post
in response to this post
Is there anywhere I can send this for futher review?