From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: Re: [OT] Emacs for email? Date: Wed, 02 Dec 2009 15:48:55 -0700 Message-ID: References: <4b15ae35.1708c00a.524a.1c53@mx.google.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NFy0Q-0004Ii-JS for emacs-orgmode@gnu.org; Wed, 02 Dec 2009 17:49:06 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NFy0L-0004BC-Am for emacs-orgmode@gnu.org; Wed, 02 Dec 2009 17:49:05 -0500 Received: from [199.232.76.173] (port=38696 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFy0L-0004Ay-0y for emacs-orgmode@gnu.org; Wed, 02 Dec 2009 17:49:01 -0500 Received: from mail-pz0-f193.google.com ([209.85.222.193]:40836) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NFy0K-0005Q7-IO for emacs-orgmode@gnu.org; Wed, 02 Dec 2009 17:49:00 -0500 Received: by pzk31 with SMTP id 31so585084pzk.28 for ; Wed, 02 Dec 2009 14:48:59 -0800 (PST) In-Reply-To: (David Neu's message of "Wed, 2 Dec 2009 13:38:18 -0500") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: David Neu Cc: emacs-orgmode@gnu.org, Leo --=-=-= David Neu writes: > > Anyone have any experience using Gnus with Gmail via IMAP? > My gmail setup basically uses the following template (although I use pop for gmail, and only use Imap for my school mail) -- Eric --=-=-= Content-Type: application/emacs-lisp Content-Disposition: attachment; filename=gnus-setup-template.el Content-Transfer-Encoding: quoted-printable ;;; gnus (require 'gnus-load) (require 'ssl) (require 'w3m) (setq gnus-startup-file "~/src/emacs-starter-kit/mail/gnus") (setq message-directory "~/mail") (setq gnus-agent-directory "~/mail/agent/") (setq nndraft-directory "~/mail/drafts/") (setq mm-text-html-renderer 'w3m) ;; other options is lynx (setq mail-sources '( ;; your.name@gmail.com (pop :server "pop.gmail.com" :port 995 :user "your.name@gmail.com" :password "your-password" :stream ssl) ;; potentially you also want to pull mail from an imap mail box... (imap :server "mail.unm.edu" :port 993 :user "your.name" :password "your-password" :stream ssl :mailbox "inbox"))) ;;; smtp (setq message-send-mail-function 'smtpmail-send-it smtpmail-starttls-credentials '(("smtp.gmail.com" 25 nil nil)) smtpmail-default-smtp-server "smtp.gmail.com" smtpmail-smtp-server "smtp.gmail.com" smtpmail-smtp-service 25) --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--