I am trying to hook up gnus via nnimap to read mail from exchange server. Defined within gnus startup is the configuration info
(setq gnus-select-method '(nnimap "example"
(nnimap-address "mail.server.com")
(nnimap-server-port 443)
(nnimap-authenticator login)
(nnimap-stream ssl)
(remove-prefix "INBOX.")
(nnimap-authinfo-file "~/.imap-authinfo")))
(setq imap-ssl-program "openssl s_client -quiet -tls1 -connect %s:%p")
Emacs is @24.0.50.1 (2010-11-16
) and .imap-authinfo
contains the connection info:
machine mail.server.com login my_username password my_password
Using openssl and gnutls-cli I can connect to server independently, but emacs hangs when invoking gnus and leaves a message Opening TLS connection with gnutls-cli --insecure -p 443 mail.server.com'...done
.