all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* accessing gmail mails without download them to my disk
@ 2014-02-13 18:29 xeon Mailinglist
  2014-02-14  0:25 ` W. Greenhouse
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: xeon Mailinglist @ 2014-02-13 18:29 UTC (permalink / raw
  To: help-gnu-emacs

I want to read the gmail mails inside emacs, but I don't want to download them to my computer. What is the best way to do it?

Accessing the gmail web interface in emacs?
With wanderlust?


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: accessing gmail mails without download them to my disk
  2014-02-13 18:29 accessing gmail mails without download them to my disk xeon Mailinglist
@ 2014-02-14  0:25 ` W. Greenhouse
  2014-02-14  0:52 ` Stefan Monnier
  2014-02-15 11:35 ` Jonathan Groll
  2 siblings, 0 replies; 4+ messages in thread
From: W. Greenhouse @ 2014-02-14  0:25 UTC (permalink / raw
  To: help-gnu-emacs-mXXj517/zsQ

xeon Mailinglist <xeonmailinglist-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:

> I want to read the gmail mails inside emacs, but I don't want to
> download them to my computer. What is the best way to do it?
>
> Accessing the gmail web interface in emacs?
> With wanderlust?

Gnus nnimap works well.  This configuration will be an online IMAP
client without local caching:

(setq gnus-select-method
      '(nnimap "imap.gmail.com")
      message-send-mail-function 'message-smtpmail-send-it
      smtpmail-smtp-server "smtp.gmail.com"
      smtpmail-stream-type 'ssl
      smtpmail-smtp-service 465)

Then try M-x gnus to read mail.

If you want something like a Gmail-style "conversation view," you might
also add:

(setq gnus-thread-sort-functions
      '(gnus-thread-sort-by-most-recent-date)
      gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number)

(add-hook 'gnus-summary-prepared-hook 'gnus-summary-hide-all-threads)

This will start with threads ordered in the buffer with most recent on
top, and collapsed until you begin to read them.

Read the [Gmail]/All Mail group rather than the INBOX to see your
replies too.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: accessing gmail mails without download them to my disk
  2014-02-13 18:29 accessing gmail mails without download them to my disk xeon Mailinglist
  2014-02-14  0:25 ` W. Greenhouse
@ 2014-02-14  0:52 ` Stefan Monnier
  2014-02-15 11:35 ` Jonathan Groll
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Monnier @ 2014-02-14  0:52 UTC (permalink / raw
  To: help-gnu-emacs

> I want to read the gmail mails inside emacs, but I don't want to download
> them to my computer.  What is the best way to do it?

Of course, any message you look at will have to be downloaded.
Depending on your MUA (and its configuration) the message may be stored
locally to avoid future re-downloads, or it can then forget it, causing
the need to re-download if you want to look at the message again.
And some MUAs download all messages eagerly (i.e. before you even try to
look at them).


        Stefan




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: accessing gmail mails without download them to my disk
  2014-02-13 18:29 accessing gmail mails without download them to my disk xeon Mailinglist
  2014-02-14  0:25 ` W. Greenhouse
  2014-02-14  0:52 ` Stefan Monnier
@ 2014-02-15 11:35 ` Jonathan Groll
  2 siblings, 0 replies; 4+ messages in thread
From: Jonathan Groll @ 2014-02-15 11:35 UTC (permalink / raw
  To: xeon Mailinglist, help-gnu-emacs

On Thu, 13 Feb 2014 10:29:16 -0800 (PST), xeon Mailinglist <xeonmailinglist@gmail.com> wrote:

> I want to read the gmail mails inside emacs, but I don't want to download them to my computer. What is the best way to do it?
> 
> Accessing the gmail web interface in emacs?
> With wanderlust?

I read a gmail account with Wanderlust via IMAP and leave the mails on
Google's servers.

I visit the Inbox folder like this:
%inbox:gmailAccountName/clear@imap.gmail.com:993       
 
Where gmailAccountName is the name of the gmail account.

HTH,
Jonathan
--
jjg: Jonathan J. Groll : groll co za
has_one { :blog => "http://bloggroll.com" }
Any other Disclaimer in this mail is Wrong.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-02-15 11:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-13 18:29 accessing gmail mails without download them to my disk xeon Mailinglist
2014-02-14  0:25 ` W. Greenhouse
2014-02-14  0:52 ` Stefan Monnier
2014-02-15 11:35 ` Jonathan Groll

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.