Connecting a Gmail account to devices without SSL support
Connecting a Gmail account to phones without SSL support (Symbian <=9.1, some phones on Symbian 9.2, Nokia S40 etc.).
1. Create an "Application Specific Password" in the security settings of your Google account. It will be 16 English letters like hqwelkdveutawjde.
2. Save this password.
3. Go to https://www.stunnel.org/downloads.html , download the installer, install it on your home computer (Windows) or server (Linux)
4. In the settings (for Windows it's C:\Program Files (x86) \stunnel\config\stunnel.conf) change 127.0.0.1 nothing:
Corresponding section of config should be
[gmail-pop3]
client = yes
accept = :110
connect = pop.gmail.com:995
verifyChain = yes
CAfile = ca-certs.pem
checkHost = pop.gmail.com
OCSPaia = yes
[gmail-imap]
client = yes
accept = :143
connect = imap.gmail.com:993
verifyChain = yes
CAfile = ca-certs.pem
checkHost = imap.gmail.com
OCSPaia = yes
[gmail-smtp]
client = yes
accept = :25
connect = smtp.gmail.com:465
verifyChain = yes
CAfile = ca-certs.pem
checkHost = smtp.gmail.com
OCSPaia = yes
If necessary, configure the firewall. Let's say your IP is 1.2.3.4 (if there is a domain, you can add it)
5. Restart stunnel
6. In the settings of the mail client on Nokia, write
Login: xxxxxx@gmail.com
Password: your password from (1)
Account Type: POP or IMAP, whatever you want
IMAP4 Server: 1.2.3.4:143
POP3 Server: 1.2.3.4:110
SMTP Server: 1.2.3.4:25
If you want, in the config, you can replace the default ports with other ports
SSL: of course, no SSL
7. That's it. Send-receive email.
If you do not want to pay for the server, you can install it at home on any old computer (Windows 7 is fine, WinXP did not check)
Comments
Post a Comment