Is it worth it?

It's easy to do, but I recommend ... have the web server return a redirect (302 status)


If running Apache it's even easier. Point the DNS. Add the non-www name in the host/vhost file.

  <VirtualHost *:80>
    ServerName www.postfix.org
    ServerAlias postfix.org
    ...
  </VirtualHost>

  <VirtualHost *:443>
    ServerName www.postfix.org
    ServerAlias postfix.org
    ...
  </VirtualHost>

And like Victor said, add the domain root to the SSL cert.
This is all less than 5 minutes of banging on the keyboard.
_______________________________________________
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org

Reply via email to