• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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