• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Problem with greylisting.

sebas

Basic Pleskian
Hi,

We have been having an increasing number of REJECTS for those using "Microsoft accounts".

Jan 8 08:00:55 www greylisting filter[21002]: Starting greylisting filter...
Jan 8 08:00:55 www greylisting filter[21002]: list type: black, from: ch1outboundpool.messaging.microsoft.com, match string: dsl|pool|broadband|hsd
Jan 8 08:00:55 www qmail-queue-handlers[21001]: handlers_stderr: REJECT
Jan 8 08:00:55 www qmail-queue-handlers[21001]: REJECT during call 'grey' handler

Then we added a rule:

/usr/local/psa/bin/grey_listing --update-server -domains-whitelist "add:*messaging.microsoft.com"

Now it is:

Jan 8 14:59:26 www qmail-queue-handlers[23006]: [email protected]
Jan 8 14:59:26 www qmail-queue-handlers[23006]: [email protected]
Jan 8 14:59:26 www greylisting filter[23013]: Starting greylisting filter...
Jan 8 14:59:26 www qmail-queue-handlers[23006]: handlers_stderr: DEFER
Jan 8 14:59:26 www qmail-queue-handlers[23006]: DEFER during call 'grey' handler


That moved the filtering from REJECT to DEFER. So we are trying to edit the dsl|pool|broadband|hsd rule.

So far we have been failing.

Code:
[root@www new]# /usr/local/psa/bin/grey_listing  -u -blacklist "del:dsl|pool|broadband|hsd"
unable parse pattern list: incorrect pattern "dsl|pool|broadband|hsd"

Code:
[root@www new]# /usr/local/psa/bin/grey_listing  -u -blacklist del:dsl|pool|broadband|hsd
-bash: pool: command not found
-bash: hsd: command not found
-bash: broadband: command not found
unable parse pattern list: incorrect pattern "dsl"

Code:
[root@www new]# /usr/local/psa/bin/grey_listing  -u -blacklist "del:dsl\|pool\|broadband\|hsd"
unable parse pattern list: incorrect pattern "dsl\|pool\|broadband\|hsd"

Code:
[root@www new]# /usr/local/psa/bin/grey_listing  -u -blacklist del:dsl\|pool\|broadband\|hsd
unable parse pattern list: incorrect pattern "dsl|pool|broadband|hsd"

So far no luck.

Any ideas?

Thanks for your help.
 
Last edited:
What about using -domains-blacklist option instead -blacklist ?

~# /usr/local/psa/bin/grey_listing -u -domains-blacklist "del:dsl|pool|broadband|hsd"
SUCCESS: Update of server-wide settings complete.
 
Back
Top