One thing that concerns me about using MailWizz as opposed to an external newsletter service like MailChimp is security. MailWizz has brute-force login protection enabled, but I don't feel comfortable letting unauthorized users getting that far. So I restored to protecting my MailWizz using HTACCESS; you can do the same by doing the following:
a) Create an .htaccess and put this in this:
The xx.xx.xxx.xxx should be the IP addresses of the users you want to allow access to MailWizz.
b) Place a copy of the .htaccess file in /path/to/mailwizz/backend and /path/to/mailwizz/customer
c) Done!
I'm sure there are more ways to secure MailWizz but this is a simple method. Please note, however, this will only work if you have specific users who you want to grant access to MailWizz. If you are using MailWizz as a backend for a web app available to the general public, this won't work.
Have any other suggestions on how to harden MailWizz? Share 'em!
a) Create an .htaccess and put this in this:
Code:
Deny from all
Allow from xx.xx.xxx.xxx
Allow from xx.xx.xxx.xxx
The xx.xx.xxx.xxx should be the IP addresses of the users you want to allow access to MailWizz.
b) Place a copy of the .htaccess file in /path/to/mailwizz/backend and /path/to/mailwizz/customer
c) Done!
I'm sure there are more ways to secure MailWizz but this is a simple method. Please note, however, this will only work if you have specific users who you want to grant access to MailWizz. If you are using MailWizz as a backend for a web app available to the general public, this won't work.
Have any other suggestions on how to harden MailWizz? Share 'em!