On 2/14/2013 2:23 PM, Alex wrote:
> Apparently I do not understand what you mean by 1-1 mapping. My
> intentions is to have any email going to:
> 
> somename(....any character)@somedomain.com to be forwarded to 
> [email protected]
> 
> all other email to be sent to a local user.
> 
> Again thank you for your help.
> 


1  /^somename.*@example\.com$/  [email protected]
2  /^somename@yahoo\.com$/  [email protected]
3  /./ [email protected]


Line 1 - redirect secret name to yahoo account
line 2 - 1-1 mapping to stop recursion, input equals output
line 3 - wildcard catchall


Good luck.


  -- Noel Jones

Reply via email to