all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Rainer M Krug <Rainer@krugs.de>
To: Julien Cubizolles <j.cubizolles@free.fr>
Cc: help-gnu-emacs@gnu.org
Subject: Re: From Gnus to mu4e
Date: Thu, 27 Aug 2015 14:50:03 +0200	[thread overview]
Message-ID: <m2fv34q4jo.fsf@krugs.de> (raw)
In-Reply-To: <87a8tezf7x.fsf@free.fr> (Julien Cubizolles's message of "Wed, 26 Aug 2015 09:22:26 +0200")

[-- Attachment #1: Type: text/plain, Size: 5700 bytes --]

Julien Cubizolles <j.cubizolles@free.fr> writes:

> Bastien <bzg@gnu.org> writes:
>
>> Julien Cubizolles <j.cubizolles@free.fr> writes:
>>
>>> I'm considering moving from Gnus to mu4e, mostly because I spend too
>>> much time tinkering with settings I don't really understand/need in
>>> Gnus, and because the search feature seems promising.
>>
>> After a *lot* of scratching and testing, here is my setup:
>>
>> - Gnus for news and mails: because there are too many things I miss in
>>   other MUA.  A simple example: quote only the selected region when
>>   replying.  This cannot be implemented easily in mu and notmuch.
>>
>> - notmuch as a search engine: mu is really great (I used it the last
>>   three months) but I cannot get used to mu4e.  And starting mu4e with
>>   a database of 100K emails takes two or three seconds.
>>
>> - mbsync to sync imap folders as local maildirs: I used offlineimap
>>   for several years and mbsync is just faster.

Sorry - I am late to this question.

I am using the same setup, only with offlineimap - it works, and speed
is not such a problem for me so that I would move to mbsync.

>
> That seems very interesting, and I think I'll try to set it
> up. offlineimap or mbsync seems to be the right way to:
>   + have a fast access to my mail (nnimap from Gnus on a remote server
>   is a bit slow sometimes)
>
>   + have a complete access from my mobile phone
>
>   + I can still choose whatever MUA I want on top of that if I want to
>   try something else thant Gnus and still access my old nnml mail.

Exactly - and you can easily make backups from your all your emails in a
format which will be supported for quite some time.

>
> I have a few questions about some details of your setup:
>
>   + regarding filtering and spam detection, do you rely on the
>   possibilities offered by you mail provider (Gmail or other)?

I am using gmail for this - thought for some minutes about implementing
it locally, but gmail works reliable.

>
>   + you said you're running Dovecot. Gnus could also directly access the
>   local maildir without a local imap server the way mu4e does, couldn't
>   it ? What's the benefit of running it ?

There is one program accessing the mail folder: dovecot - no conflicts, race
conditions, no slightly different formats, standards, ... And you can
also remotely access dovecot if you want to.

By the way: the dovecot daemon is not permanently running, as I am using
the shell access from gnus:

,----
| (nnimap-shell-program "/usr/local/opt/dovecot/libexec/dovecot/imap -o mail_location=maildir:$HOME/Maildir")))
`----

The same from offlineimap:

,----
| preauthtunnel = /usr/local/opt/dovecot/libexec/dovecot/imap -o mail_location=maildir:$HOME/Maildir
`----

and offlineimap only reads the emails from the maildir.

And I have found the following two functions to open the same message
which is open in gnus in notmuch and the other way around:

--8<---------------cut here---------------start------------->8---
** In notmuch jump to gnus folder
From [[http://roland.entierement.nu/blog/2010/09/08/gnus-dovecot-offlineimap-search-a-howto.html]]:
  But seeing just the message that matches is not enough, 
  sometimes we want the whole thread. Here's a snippet of 
  Lisp for your .gnus, based on Tassilo Horn's configuration. 
  Do a Notmuch search, enter one of the results, type C-c C-c, 
  you'll get transported to the folder where that message was, 
  with the context. Note this requires code from org-mode, 
  so you might need to install that.

#+begin_src emacs-lisp

(defun rmk/notmuch-file-to-group (file)
  "Calculate the Gnus group name from the given file name.
  "
  (let ((group (file-name-directory (directory-file-name (file-name-directory file)))))
    (setq group (replace-regexp-in-string ".*/Maildir/" "nnimap+Maildir:" group))
    (setq group (replace-regexp-in-string "/$" "" group))
    (if (string-match ":$" group)
        (concat group "INBOX")
      (replace-regexp-in-string ":\\." ":" group))))

(defun rmk/notmuch-goto-message-in-gnus ()
  "Open a summary buffer containing the current notmuch
  article."
  (interactive)
  (let ((group (rmk/notmuch-file-to-group (notmuch-show-get-filename)))
        (message-id (replace-regexp-in-string
                     "^id:" "" (notmuch-show-get-message-id))))
    (setq message-id (replace-regexp-in-string "\"" "" message-id))
    (if (and group message-id)
        (progn 
          (switch-to-buffer "*Group*")
          (org-gnus-follow-link group message-id))
      (message "Couldn't get relevant infos for switching to Gnus."))))

(define-key notmuch-show-mode-map (kbd "C-c C-c") 'rmk/notmuch-goto-message-in-gnus)
#+end_src
--8<---------------cut here---------------end--------------->8---

Hope this helps,

Rainer

>
>> - postfix with smtp_sender_dependent_authentication to use various
>>   smtp servers depending on the email I'm using.  I see people use
>>   msmtp and msmtp-mta, which I tried for a while, but I'm just too
>>   impatient with the .3s you have to wait when sending.  
>
>   From looking at my fossilized .gnus.el, I'm using smtpmail, which
>   would be equivalent to msmtp.
>
>   + I'm gonna need to duplicate this setup on two machines (laptop and
>   desktop). I guess running offline imap on the two machines and
>   synchronizing the nnml, nnarchive mail by unison would work.
>
> Thanks a lot for all this information. I've a much clearer idea of all
> the possibilities now.
>
> Julien.
>
>
>

-- 
Rainer M. Krug
email: Rainer<at>krugs<dot>de
PGP: 0x0F52F982

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 480 bytes --]

  reply	other threads:[~2015-08-27 12:50 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-20 21:23 From Gnus to mu4e Julien Cubizolles
2015-08-21 10:28 ` Julien Cubizolles
2015-08-21 10:49   ` Colin Yates
2015-08-21 13:06 ` Suvayu Ali
2015-08-26  6:53   ` Julien Cubizolles
2015-08-25  5:49 ` Bastien
2015-08-25  6:28   ` Ian Zimmerman
2015-08-25  6:56     ` Bastien Guerry
2015-08-26  7:22   ` Julien Cubizolles
2015-08-27 12:50     ` Rainer M Krug [this message]
2015-08-27 17:15       ` Bastien
2015-08-28  8:39         ` Rainer M Krug
2015-08-28  8:44           ` Bastien
2015-08-28  8:51             ` Rainer M Krug
2015-08-28  8:58               ` Rasmus
2015-08-28  9:15                 ` Julien Cubizolles
2015-08-28 10:03                   ` Rainer M Krug
2015-08-28 10:08                     ` Rasmus
2015-08-28 10:41                       ` Rainer M Krug
2015-08-28 10:04                   ` Rasmus
2015-08-28  8:51           ` Bastien
2015-08-27 21:27       ` Julien Cubizolles
2015-08-27 23:34         ` Suvayu Ali
2015-08-27 23:50           ` Ian Zimmerman
2015-08-28  0:14             ` Suvayu Ali
2015-08-28  0:24               ` Ian Zimmerman
2015-08-28  8:25                 ` Rainer M Krug
2015-08-28  9:06                 ` Suvayu Ali
2015-08-28 15:31                   ` Ian Zimmerman
2015-08-31  0:16                     ` Suvayu Ali
2015-08-28  8:21         ` Rainer M Krug
2015-08-27 12:58     ` Suvayu Ali
2015-08-27 15:52       ` Glenn Morris
2015-08-27 17:32         ` Suvayu Ali
2015-08-27 17:11       ` Bastien
2015-08-27 17:08     ` Bastien
2015-08-27 17:30       ` Suvayu Ali
2015-08-27 21:52       ` Julien Cubizolles
2015-08-27 22:18         ` Bastien
2015-08-27 23:30           ` Julien Cubizolles
     [not found] <mailman.14.1440105837.31004.help-gnu-emacs@gnu.org>
2015-08-24 11:19 ` Joost Kremers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2fv34q4jo.fsf@krugs.de \
    --to=rainer@krugs.de \
    --cc=help-gnu-emacs@gnu.org \
    --cc=j.cubizolles@free.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.