help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: accessing gmail mails without download them to my disk


From: W . Greenhouse
Subject: Re: accessing gmail mails without download them to my disk
Date: Fri, 14 Feb 2014 00:25:09 +0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

xeon Mailinglist <xeonmailinglist@gmail.com> 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.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]