• 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!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.

Resolved How to backup the spam filter black list

Blairvoyach

New Pleskian
Server operating system version
Windows server 2012 r2
Plesk version and microupdate number
Obsidian 18.0.44 update #3
Can anyone tell me either where the email black list is stored in Plesk for windows or a method of exporting it? I have hundreds of blocked addresses and domains but can't find any way to back them up as an independent backup in case I want to re-install or start a new server.
 
The server-wide Black List is located in the badmailfrom table of the Plesk database:
Code:
C:\>plesk db "select * from badmailfrom"
+----+--------------+---------------+
| id | domain       | serviceNodeId |
+----+--------------+---------------+
|  1 | *@domain.com |             1 |
+----+--------------+---------------+
This corresponds to the information in the Plesk GUI in Tools and Settings > Mail Server Settings > Black List
 
The server-wide Black List is located in the badmailfrom table of the Plesk database:
Code:
C:\>plesk db "select * from badmailfrom"
+----+--------------+---------------+
| id | domain       | serviceNodeId |
+----+--------------+---------------+
|  1 | *@domain.com |             1 |
+----+--------------+---------------+
This corresponds to the information in the Plesk GUI in Tools and Settings > Mail Server Settings > Black List
Stumbled onto this while trying to find a way to migrate the block list from one server to another, but after importing to the new servers database, Plesk still shows an empty list. Do we need to trigger a config file regeneration somehow? (Linux here)
 
I'd recommend using the CLI utility for this.

You can view all blacklist entries using this command:
Code:
plesk bin mailserver --info black-list

And add any domains to the blacklist with this command:
Code:
plesk bin mailserver --add-to-black-list example.com
 
I'd recommend using the CLI utility for this.

You can view all blacklist entries using this command:
Code:
plesk bin mailserver --info black-list

And add any domains to the blacklist with this command:
Code:
plesk bin mailserver --add-to-black-list example.com
Thanks. Turns out the page just took a while to update and does now show the imported entries, and I can see them with this command too so presumably all is good now =).
 
Back
Top