[mew-int 3112] Can't connect to Gmail's pop3 server

Madper <[email protected]> Mon, 13 Aug 2012 11:33:44 +0800
Newsgroups gmane.mail.mew.general
Message-ID <[email protected]>
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                  "[email protected]")
          (user                  "[email protected]")
          (mail-domain           "gmail.com")
          (pop-user              "[email protected]")
          (smtp-user             "[email protected]")
          (smtp-server           "smtp.gmail.com")
         )))

``````````````````````````````