John Jetmore wrote:
> On Tue, 3 Jul 2007, Marc Perkel wrote:
>
>> Heed a little regex help. I'm trying to grab the final domain part of a
>> string:
>>
>> ${sg{$sender_host_name}{\N^.*\.(.*\..*)$\N}{\$1}}
>>
>> And this works - but it hits on *.domain.com and misses domain.com
>>
>> How would I modify this to match domain.com too? Thanks in advance.
>
> ${sg{$sender_host_name}{\N^(?:.*\.)?([^.]*\.[^.]*)$\N}{\$1}}
>Thanks - I got it working. -- ## List details at http://www.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://www.exim.org/eximwiki/
