To enhance security and ensure all traffic is encrypted, you can configure your server to redirect all HTTP requests to HTTPS. This guide provides step-by-step instructions to configure HTTPS redirects for SmarterMail when using a reverse proxy. For servers utilizing the built-in web server (Linux) or IIS (Windows), you can force HTTPS within the web interface under Settings > General > [Server Info] > (Force all traffic over HTTPS). Alternatively you can follow the steps in this KB: https://portal.smartertools.com/kb/a3246/force-webmail-traffic-over-https.aspx.
To start, you’ll need to setup a suitable web server as a reverse proxy. This linked guide details how to configure Nginx and Apache, two of the most popular web servers:
https://portal.smartertools.com/kb/a3652/configure-an-alternative-linux-web-server-for-smartermail.aspx
After you’ve set up your reverse proxy, the process will differ depending on the web server you’re using:
Nginx
sudo service nginx stop
server { listen 80; server_name mail.domain.com autodiscover.domain.com domain.com; return 301 https://$host$request_uri; }
sudo nginx -t
sudo service nginx start
Apache
sudo service apache2 stop
sudo apache2ctl configtest
sudo service apache2 start
Trouble logging in? Simply enter your email address OR username in order to reset your password.
For faster and more reliable delivery, add noreply@smartertools.com to your trusted senders list in your email software.