On 2/14/2013 1:40 PM, Alex wrote: > I apologize, as I am being confused.
Don't use HTML; use the gmail plain text button. Don't top-post. Put responses at the bottom or in-line. > Contents of my virtual-regex now are: > > /somename+.*@mydomain\.com$/ [email protected] > <mailto:[email protected]> Bad expression. username containing "somenam" followed by a series of "eeeee" followed by anything probably not what you intend. better: /^somename\+.*@example\.com$/ [email protected] > /^somename...@mydomain\.com$/ [email protected] > <mailto:[email protected]> Where's the 1-1 mapping to stop recursion? That's why it still doesn't work for you. /^somename@yahoo\.com$/ [email protected] > > /@mydomain\.com$/ [email protected] <mailto:[email protected]> Don't know where you came up with that. Remove it. > /./ localuser > > When I ran postmap -q [email protected] > <mailto:[email protected]> regexp:virtual.regex. > I actually get correct results. because postmap doesn't do recursion. -- Noel Jones
