I tried configuring Gnus/Emacs to send/receive mails through Gmail using IMAP/SMTP protocol on my Ubuntu-Gutsy Linux Box. Emacs Version: 22.1.1 Gnus Version: 5.11 I performed the following steps: I had to install sendmail and starttls programs using apt-get first and start sendmail service. Enable IMAP support for your Gmail account online as described here : http://mail.google.com/support/bin/answer.py?answer=77695 Create a file named .gnus.el in your home directory and copy the configuration as given below: ;; Configuration of ~/.gnus.el ;; Customize the next three lines with your ISP information. (load "starttls") (load-library "smtpmail") (setq user-mail-address "username@gmail.com") (setq user-full-name "User Name") ;; Configure incoming mail (IMAP) (setq gnus-select-method '(nnimap "gmail" (nnimap-address "imap.gmail.com") (nnimap-server-port 993) ...
Know News[Important]