RSPAMD GUI
Rspamd is an advanced spam filtering system that offers many different ways to filter messages, including regular expressions and statistical analysis. Each message is analyzed by rspamd and given a spam score.
OpenPanel Enterprise edition includes RSPAMD by default.
How to enable Rspamd​
To enable RSPAMD:
- Go to OpenAdmin > Emails > Settings.
- Enable the 'RSPAMD' option.
- Save changes and restart the email server.
NOTE: If Rspamd is enabled, you should disable the following services (as they provide overlapping functionality): Amavis, SpamAssassin, OpenDKIM, OpenDMARC.
Setting a Password for the Rspamd GUI​
You must set a controller password before logging in.
Open a terminal and run:
docker exec -it openadmin_mailserver rspamadm pw
Enter your new password.
You'll receive a hashed value, for example:
$2$mu7yqw9bn9heied5aeh8utec173umcub$oesyhcdpayqob6emzctn76c3dfrr1ipsi1hmht4a9sm7ytui8wjy
Enter the mailserver container:
docker exec -it openadmin_mailserver sh
Add the hashed password to the configuration:
echo 'password = "HASH_HERE";' >> /etc/rspamd/local.d/worker-controller.inc
Exit the container and restart the mailserver:
exit
docker restart openadmin_mailserver
How to access the RSPAMD GUI​
Rspamd includes a web-based GUI that displays statistics and filtering data.
The interface is accessible via port 11334
.
Open your browser and visit:
http://<SERVER_IP_ADDRESS>:11334
Enter the password you configured.
You now have access to the Rspamd dashboard.