• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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