On Fri, 2018-06-01 at 15:37 -0400, Alex wrote:
> Hi,
> I have an email with an address as follows that I'd like to
> whitelist:
> 
> X-Envelope-From: <fredsavage-kyuuuut1tiijlujrj...@cmail19.com>
> 
> Using whitelist_auth doesn't appear to work:
> 
> whitelist_auth FredSavage*@cmail19.com
> 
Try

  whitelist_auth FredSavage.*@cmail19.com
                           ^
You used UNIX shell notation where '*' represents any number of chars.
In Perl regexes '*' repeats the previous pattern element - in this case
'e'.


Martin


Reply via email to