Slashdot Mirror


Ask Slashdot: What Country Has the Best Email Privacy Laws?

An anonymous reader writes "Given all that is going on with the ability of the government to go through my email if it is on a third-party server, I was wondering: what countries have the best privacy laws and what are some good hosts to use? I would rather pay a token fee to have secure private email than have members of the government able to read it as soon as it's 180 days old if I keep it at my email provider."

1 of 236 comments (clear)

  1. Re:privacy laws won't fix a broken privacy model by klapaucjusz · · Score: 5, Informative
    STARTTLS is used between mail servers if:
    • both the sender and the receiver support the STARTTLS extension; and
    • the receiver has been configured with a certificate (even a self-signed one).

    All modern mail servers support STARTTLS, and most ISPs have configured a certificate in their MX. To see if yours has, do the following:

    $ host -t mx google.com
    google.com mail is handled by 50 alt4.aspmx.l.google.com.
    google.com mail is handled by 30 alt2.aspmx.l.google.com.
    google.com mail is handled by 40 alt3.aspmx.l.google.com.
    google.com mail is handled by 10 aspmx.l.google.com.
    google.com mail is handled by 20 alt1.aspmx.l.google.com.
    $ telnet aspmx.l.google.com smtp
    Trying...
    Connected to aspmx.l.google.com.
    Escape character is '^]'.
    220 mx.google.com ESMTP
    EHLO localhost
    250-mx.google.com at your service
    250-SIZE 35882577
    250-8BITMIME
    250-STARTTLS
    250 ENHANCEDSTATUSCODES
    QUIT /blockquote