• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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]: from=xxxxxx@live.com.mx
Jan 8 14:59:26 www qmail-queue-handlers[23006]: to=xxxx@xxx.com.mx
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