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$/ somen...@yahoo.com
> <mailto:somen...@yahoo.com>

Bad expression.  username containing "somenam" followed by a series
of "eeeee" followed by anything probably not what you intend.

better:
/^somename\+.*@example\.com$/  somen...@yahoo.com


> /^somename...@mydomain\.com$/ somen...@yahoo.com
> <mailto:somen...@yahoo.com>

Where's the 1-1 mapping to stop recursion?  That's why it still
doesn't work for you.

/^somename@yahoo\.com$/  somen...@yahoo.com


> 
> /@mydomain\.com$/ somen...@gmail.com <mailto:somen...@gmail.com>

Don't know where you came up with that.  Remove it.

> /./ localuser
> 
> When I ran postmap -q somen...@somedomain.com
> <mailto:somen...@somedomain.com> regexp:virtual.regex.
> I actually get correct results.

because postmap doesn't do recursion.





  -- Noel Jones

Reply via email to