Am 21.02.2016 um 19:08 schrieb RW:
On Sun, 21 Feb 2016 18:23:02 +0100
Reindl Harald wrote:


header   CUST_DNSWL_2
eval:check_rbl('cust35-lastexternal','score.senderscore.com.','^127\.0\.4\.[90-100]$')


[90-100] represents a single character. You are specifying 9 or the
range 0-1 with two redundant 0 characters on the end. If you meant 90
to 100 inclusive, you need something like:

  '^127\.0\.4\.(9[0-9]|100)$'

thans, according to http://regexstorm.net/tester that below seems to work in the meantime

Postfix: 127.0.4.[0..20]
SA: ^127\.0\.4\.(0?[0-1]?[0-9]|20)$

Postfix: 127.0.4.[0..69]
SA: ^127\.0\.4\.(0?[0-6]?[0-9])$

Postfix: 127.0.4.[90..100]
SA: ^127\.0\.4\.(9[0-9]|100)$

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to