From mboxrd@z Thu Jan 1 00:00:00 1970 From: jorge.alfaro-murillo@yale.edu (Jorge A. Alfaro-Murillo) Subject: Re: [OFF TOPIC] almost giving up on emacs email..looking for advice? Date: Thu, 06 Aug 2015 11:59:14 -0400 Message-ID: <87egjgl86l.fsf@yale.edu> References: Mime-Version: 1.0 Content-Type: text/plain; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48778) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZNNXh-0001bT-6b for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 11:57:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZNNXd-00011W-Vw for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 11:57:17 -0400 Received: from plane.gmane.org ([80.91.229.3]:38143) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZNNXd-00010w-On for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 11:57:13 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZNNXX-0005yb-VO for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 17:57:08 +0200 Received: from 130.132.236.141 ([130.132.236.141]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 06 Aug 2015 17:57:07 +0200 Received: from jorge.alfaro-murillo by 130.132.236.141 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 06 Aug 2015 17:57:07 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Xebar Saram writes: > What i want is basically pretty simple. an easy to setup email > for emacs, but one that would work tightly with gmail since i do > a lot of mail checking on the road via my cellphone. > > any advise. recommendations or setups that maybe people are > willing to share? The setup of gnus for gmail is quite simply: #+BEGIN_SRC emacs-lisp (setq gnus-select-method '(nnimap "imap.gmail.com")) (setq smtpmail-default-smtp-server "smtp.gmail.com") #+END_SRC and in ~/.authinfo.gpg: #+BEGIN_EXAMPLE machine imap.gmail.com login password port imap machine smtp.gmail.com login password port 587 #+END_EXAMPLE That is enough to get and check mail (M-x gnus) and send mail (C-x m). Since it is imap, nothing is kept locally so whatever you do in gnus is reflected on your phone and vice versa. One thing that bears mentioning is that gnus treats mail as news so it won't show you by default already read messages (like most mail apps), hit L to show all groups (as opposed to l for only groups with new messages) and enter the INBOX group to see all previous messages. Best, -- Jorge.