On 01/01/2012 01:55 PM, JKL wrote:
I use a rewrite rule in Apache that forces them to https. I know that it is not exactly what you want, but maybe it'll help.
<VirtualHost *:80> RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://webmail.example.com/ [R,L]
</VirtualHost>
"Redirect" is probably a less-crazy way to do this =)