• 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

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