• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

spamfilter_max_addr_list_length parameter no longer working in Plesk 11.5?

gregconway

Basic Pleskian
Morning all!

I have just built a new Plesk server and whilst I wanted to stay at Plesk 11, the only way I could switch the MTA from Qmail to Postfix was by upgrading to 11.5. But that's another story!

Now I'm at v11.5 I have a strange problem with spam whitelists.

I've set the "spamfilter_max_addr_list_length" parameter within the psa database to 500 to allow me to have more than 100 entries on my spam whitelist (which works fine on my other 9 Plesk servers, all of which are running Plesk 11.0.9) but this server isn't taking any notice of the new limit, even after a reboot. If I try and add more than 100 addresses I receive the following messages -

Warning: Only 0 first unique email addresses will be added.
Information: The addresses were added to the white list.

And I'm stuck at 100 addresses. Which is far too restrictive.

The limit is definitely set correctly -

mysql> select * from misc;
..
| spamfilter_max_addr_list_length | 500 |
..

Any ideas?!

Thanks.
 
Thanks Nikolay., that worked a treat! :)

For future reference...

USE mysql;
INSERT INTO psa.ServiceNodeConfiguration VALUES (1,'mailServer','spamfilter_max_addr_list_length', '500');
 
Back
Top