[mew-int 3114] Re: Can't connect to Gmail's pop3 server

Harri Kiiskinen harri.kiiskinen at example.com
Thu Aug 16 20:52:28 JST 2012


I'm not using pop, but imap/smtp require some additional
settings. Here's a slice of my functional config which you may be able
to adapt for pop:

	 (imap-server "imap.gmail.com")
	 (imap-ssl t)
	 (imap-ssl-port 993)
	 (imap-user "username")
	 (smtp-ssl t)
	 (smtp-ssl-port 465)
	 (smtp-auth-list ("PLAIN" "LOGIN" "CRAM-MD5"))
	 (smtp-user "username")
	 (smtp-server "smtp.gmail.com")

I guess if you use pop you might need to find out, what the value for
'pop-ssl-port' should be. Note that at least for imap and smtp you
don't need the full address in the '-user' fields, just the username
part.

Best,

Harri K.

From: Madper <bbboson at example.com>
Subject: [mew-int 3112] Can't connect to Gmail's pop3 server
Date: Mon, 13 Aug 2012 11:33:44 +0800

> Hi guys.
>     I get `error during connect, connection timed out` when I try to
>     connect my gmail.
>     I also try to use stunnel, but it hang on creating a tls/ssl
>     connecting.
>     Here is my setting, anthing wrong?    Thank you all.    :) :
> 
> ``````````````````````````````
> ;;;;;;;;;;;;;;mew;;;;;;;;;;;;;;;;;;;;;;;;;;;;
> (autoload 'mew "mew" nil t)
> (autoload 'mew-send "mew" nil t)
> 
> ;; Optional setup (Read Mail menu):
> (setq read-mail-command 'mew)
> 
> ;; Optional setup (e.g. C-xm for sending a message):
> (autoload 'mew-user-agent-compose "mew" nil t)
> (if (boundp 'mail-user-agent)
>     (setq mail-user-agent 'mew-user-agent))
> (if (fboundp 'define-mail-user-agent)
>     (define-mail-user-agent
>       'mew-user-agent
>       'mew-user-agent-compose
>       'mew-draft-send-message
>       'mew-draft-kill
>       'mew-send-hook))
> 
> (setq mew-config-alist
>       '(
>         (default
>          (pop-server            "pop.gmail.com")
>          (name                  "bbboson at example.com")
>          (user                  "bbboson at example.com")
>          (mail-domain           "gmail.com")
>          (pop-user              "bbboson at example.com")
>          (smtp-user             "bbboson at example.com")
>          (smtp-server           "smtp.gmail.com")
>         )))
> 
> ``````````````````````````````


More information about the Mew-int mailing list