Re: Meta for bogus MIME with DKIM valid?

2019-05-16 Thread John Hardin
On Thu, 16 May 2019, Amir Caspi wrote: On Apr 26, 2019, at 4:51 PM, RW wrote: headerBOGUS_MIME_VERSION MIME-Version =~ /^(?!\s*1\.0).+/ it may be better to change that to /^(?!.*\b1\.0\b).+/ to avoid punishing the form Mime-Version: (Nosuch Mail 2.0) 1.0 which is valid, though

Re: Masscheck statistics

2019-05-16 Thread RW
On Wed, 15 May 2019 18:47:01 +0300 Henrik K wrote: > On Wed, May 15, 2019 at 04:14:30PM +0100, RW wrote: > > > > > I think the concept of scoresets is pointless these days anyway. > > > Does someone actually run legit mailserver without bayes and > > > network tests? > > > > But if you do

Re: Quick header check question and anchors

2019-05-16 Thread RW
On Thu, 16 May 2019 13:31:27 + (UTC) Pedro David Marco wrote: > Hi! > I have a Recived like this: > > Received: from pafkiet.edu.pk (email.pafkiet.edu.pk [203.170.75.90]) >   by > > > I want a rule to match the beginning of a Received: > A rule like this works ok: > > header   

Re: Quick header check question and anchors

2019-05-16 Thread Bill Cole
On 16 May 2019, at 9:31, Pedro David Marco wrote: Hi! I have a Recived like this: Received: from pafkiet.edu.pk (email.pafkiet.edu.pk [203.170.75.90])    by I want a rule to match the beginning of a Received: A rule like this works ok: header    MY_RULE    Received =~ 

Re: Meta for bogus MIME with DKIM valid?

2019-05-16 Thread Amir Caspi
On Apr 26, 2019, at 4:51 PM, RW wrote: > > headerBOGUS_MIME_VERSION MIME-Version =~ /^(?!\s*1\.0).+/ > > it may be better to change that to > > /^(?!.*\b1\.0\b).+/ > > to avoid punishing the form > > Mime-Version: (Nosuch Mail 2.0) 1.0 > > which is valid, though I don't think

Re: Quick header check question and anchors

2019-05-16 Thread John Hardin
On Thu, 16 May 2019, Pedro David Marco wrote: Hi! I have a Recived like this: Received: from pafkiet.edu.pk (email.pafkiet.edu.pk [203.170.75.90])    by I want a rule to match the beginning of a Received: A rule like this works ok: header    MY_RULE    Received =~  /.*from

Quick header check question and anchors

2019-05-16 Thread Pedro David Marco
Hi! I have a Recived like this: Received: from pafkiet.edu.pk (email.pafkiet.edu.pk [203.170.75.90])    by I want a rule to match the beginning of a Received: A rule like this works ok: header    MY_RULE    Received =~  /.*from pafkiet.edu.pk/  and in debug mode it shows: MY_RULE