Mike, > > > -> header L_TAB_IN_FROM From:raw =~ /^\t/m > > It turns out, Mark's variation is too aggressive. I'm seeing some FPs > on mailing lists, which place separate the friendly name from the email > address by \n\t: > > From: Joe User > <joe.u...@example.com>
Interesting. > The pattern really needs to be "From:\t". Perhaps a simple removal of > /m to: > > header L_TAB_IN_FROM From:raw =~ /^\t/ Yes, that would do. Or replacing a ^ with a \A . Mark