To be able to access our webmail securely and facilitate our redirection from http to https, we just have to execute these commands:
# mkdir -p /usr/local/psa/admin/conf/templates/custom/webmail# cp -p /usr/local/psa/admin/conf/templates/default/webmail/webmail.php /usr/local/psa/admin/conf/templates/custom/webmail/In the webmail.php file on the top line, we add: RewriteEngine OnRewriteCond %{HTTPS} offRewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}We reconfigure all domains:# /usr/local/psa/admin/sbin/httpdmng --reconfigure-all