diff options
author | Srinivasa Ragavan <sragavan@gnome.org> | 2009-11-04 18:22:00 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@gnome.org> | 2009-11-04 19:14:37 +0800 |
commit | 7d66ca379652ce979da24ed18315c76a4a6865ec (patch) | |
tree | cc1fd7a07dc113a740dd7c8259e43613e7e105aa | |
parent | 872a31a00c5771b57e9cbd4211cf3ee33a306a42 (diff) | |
download | gsoc2013-evolution-7d66ca379652ce979da24ed18315c76a4a6865ec.tar gsoc2013-evolution-7d66ca379652ce979da24ed18315c76a4a6865ec.tar.gz gsoc2013-evolution-7d66ca379652ce979da24ed18315c76a4a6865ec.tar.bz2 gsoc2013-evolution-7d66ca379652ce979da24ed18315c76a4a6865ec.tar.lz gsoc2013-evolution-7d66ca379652ce979da24ed18315c76a4a6865ec.tar.xz gsoc2013-evolution-7d66ca379652ce979da24ed18315c76a4a6865ec.tar.zst gsoc2013-evolution-7d66ca379652ce979da24ed18315c76a4a6865ec.zip |
Add support for Googlemail and hotmail/live/msn.com accounts.
-rw-r--r-- | mail/em-account-editor.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index e46695e2d6..7888ee5e76 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -3039,9 +3039,13 @@ struct _server_prefill { const gchar *ssl; } mail_servers [] = { {"gmail", "imap.gmail.com", "smtp.gmail.com", "imap", "always"}, + {"googlemail", "imap.gmail.com", "smtp.gmail.com", "imap", "always"}, {"yahoo", "pop3.yahoo.com", "smtp.yahoo.com", "pop", "never"}, {"aol", "imap.aol.com", "smtp.aol.com", "pop", "never"}, - {"msn", "pop3.email.msn.com", "smtp.email.msn.com", "pop", "never"} + {"msn", "pop3.email.msn.com", "smtp.email.msn.com", "pop", "never"}, + {"hotmail", "pop3.live.com", "smtp.live.com", "pop", "always"}, + {"live.com", "pop3.live.com", "smtp.live.com", "pop", "always"}, + }; static gint |