unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* queries switching from MH-E to notmuch
@ 2011-08-16 21:02 Stephen Eglen
  0 siblings, 0 replies; 5+ messages in thread
From: Stephen Eglen @ 2011-08-16 21:02 UTC (permalink / raw)
  To: notmuch

I'm considering switch emacs mailers, from MH-E to notmuch, as I would
like to find an emacs mailer with decent IMAP support.  Compared to
gnus, notmuch seems much quicker, and I like the sound of tags + fast
searching.  Can anyone help with the following points:

1. Deleting emails 

I've seen the suggestions on the emacstips for  keybindings to bind 'd'
to adding deleted tags.  But how do you then delete the mails from
the local Maildir (and then for offlineimap to propagate back the
deletions to the remote imap server)?  Do you run cron jobs to do this?

2. viewing both the search results and current thread

I'm used to the MH-E (and VM) idea that when browsing a folder (or, here,
search results) the top window shows the subject lines, and the bottom,
larger, window shows the current message.  e.g. see the top screenshot
at: http://mh-e.sourceforge.net/screenshots/.  As you scroll through the
folder contents at the top, the bottom window shows the corresponding message.

By contrast, in notmuch it seems that you either see just the search
results, or one thread, but not both.  Would it be feasible to get
something more like the behaviour of VM and MH-E?  I can write elisp
fluently, but before I look into it, I thought I'd check to see whether
this is feasible.  (I've just seen that this is the bottom item on Keith
P's wish list: http://keithp.com/notmuch/)

Thanks,
Stephen

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

* queries switching from MH-E to notmuch
@ 2011-08-18  8:52 Stephen Eglen
  2011-08-19 19:30 ` Jameson Graef Rollins
  2011-08-21 15:55 ` Austin Clements
  0 siblings, 2 replies; 5+ messages in thread
From: Stephen Eglen @ 2011-08-18  8:52 UTC (permalink / raw)
  To: notmuch


[Apologies if this has gone through more than once, I've been having
problems subscribing.]

I'd like to switching emacs mailers, from MH-E to notmuch, as I need a
mailer with decent IMAP support.  Compared to gnus, notmuch (with
offlineimap) seems much quicker, and I like the sound of tags + fast
searching.  Can anyone help with the following points:

1. Deleting emails 

I've seen the suggestions on the emacstips for  keybindings to bind 'd'
to adding deleted tags.  But how do you then delete the mails from
the local Maildir (and then for offlineimap to propagate back the
deletions to the remote imap server)?  Do you run cron jobs to do this?

2. viewing both the search results and current thread

I'm used to the MH-E (and VM) idea that when browsing a folder (or, here,
search results) the top window shows the subject lines, and the bottom,
larger, window shows the current message.  e.g. see the top screenshot
at: http://mh-e.sourceforge.net/screenshots/.  As you scroll through the
folder contents at the top, the bottom window shows the corresponding message.

By contrast, in notmuch it seems that you either see just the search
results, or one thread, but not both.  Would it be feasible to get
something more like the behaviour of VM and MH-E?  I can write elisp
fluently, but before I look into it, I thought I'd check to see whether
this is feasible.  (I've just seen that this is the bottom item on Keith
P's wish list: http://keithp.com/notmuch/)

Thanks,
Stephen

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

* Re: queries switching from MH-E to notmuch
  2011-08-18  8:52 Stephen Eglen
@ 2011-08-19 19:30 ` Jameson Graef Rollins
  2011-08-21 15:55 ` Austin Clements
  1 sibling, 0 replies; 5+ messages in thread
From: Jameson Graef Rollins @ 2011-08-19 19:30 UTC (permalink / raw)
  To: Stephen Eglen, notmuch

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

On Thu, 18 Aug 2011 09:52:09 +0100, Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> wrote:
> 1. Deleting emails 
> 
> I've seen the suggestions on the emacstips for  keybindings to bind 'd'
> to adding deleted tags.  But how do you then delete the mails from
> the local Maildir (and then for offlineimap to propagate back the
> deletions to the remote imap server)?  Do you run cron jobs to do this?

Hey, Stephen.  I purge deleted mails from the command line, with
something like xargs:

notmuch search --output=files tag:delete | xargs -l rm

> 2. viewing both the search results and current thread
...
> By contrast, in notmuch it seems that you either see just the search
> results, or one thread, but not both.  Would it be feasible to get
> something more like the behaviour of VM and MH-E?  I can write elisp
> fluently, but before I look into it, I thought I'd check to see whether
> this is feasible.  (I've just seen that this is the bottom item on Keith
> P's wish list: http://keithp.com/notmuch/)

I don't know of anyone who has worked on this, but it sounds like it
could be interesting (and that others might be interested), so go for
it!

jamie.

[-- Attachment #2: Type: application/pgp-signature, Size: 835 bytes --]

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

* Re: queries switching from MH-E to notmuch
  2011-08-18  8:52 Stephen Eglen
  2011-08-19 19:30 ` Jameson Graef Rollins
@ 2011-08-21 15:55 ` Austin Clements
  2011-08-22 15:13   ` Jameson Graef Rollins
  1 sibling, 1 reply; 5+ messages in thread
From: Austin Clements @ 2011-08-21 15:55 UTC (permalink / raw)
  To: Stephen Eglen; +Cc: notmuch

On Thu, Aug 18, 2011 at 4:52 AM, Stephen Eglen
<S.J.Eglen@damtp.cam.ac.uk> wrote:
> 2. viewing both the search results and current thread
>
> I'm used to the MH-E (and VM) idea that when browsing a folder (or, here,
> search results) the top window shows the subject lines, and the bottom,
> larger, window shows the current message.  e.g. see the top screenshot
> at: http://mh-e.sourceforge.net/screenshots/.  As you scroll through the
> folder contents at the top, the bottom window shows the corresponding message.
>
> By contrast, in notmuch it seems that you either see just the search
> results, or one thread, but not both.  Would it be feasible to get
> something more like the behaviour of VM and MH-E?  I can write elisp
> fluently, but before I look into it, I thought I'd check to see whether
> this is feasible.  (I've just seen that this is the bottom item on Keith
> P's wish list: http://keithp.com/notmuch/)

I would love to have something along these lines, especially with
quick navigation in both the top and bottom panes.  One idea I'd been
toying with (but have no implementation for) was to integrate Daniel
Schoepe's two-pane thread outlining with two-pane search results: in
the top pane, show the usual thread search results but replace the
currently open thread in the search results with its thread outline.
Navigating in the top pane would naturally correspond to moving
between messages in the current thread until you reached the end (or
beginning) of the thread, at which point it would move to the next (or
previous) thread.  This may or may not work in practice, but it's
something to consider.

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

* Re: queries switching from MH-E to notmuch
  2011-08-21 15:55 ` Austin Clements
@ 2011-08-22 15:13   ` Jameson Graef Rollins
  0 siblings, 0 replies; 5+ messages in thread
From: Jameson Graef Rollins @ 2011-08-22 15:13 UTC (permalink / raw)
  To: Austin Clements, Stephen Eglen; +Cc: notmuch

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

On Sun, 21 Aug 2011 11:55:29 -0400, Austin Clements <amdragon@mit.edu> wrote:
> I would love to have something along these lines, especially with
> quick navigation in both the top and bottom panes.  One idea I'd been
> toying with (but have no implementation for) was to integrate Daniel
> Schoepe's two-pane thread outlining with two-pane search results: in
> the top pane, show the usual thread search results but replace the
> currently open thread in the search results with its thread outline.
> Navigating in the top pane would naturally correspond to moving
> between messages in the current thread until you reached the end (or
> beginning) of the thread, at which point it would move to the next (or
> previous) thread.  This may or may not work in practice, but it's
> something to consider.

This is exactly the interface that I would like to see as well, Austin.
That would be very sweet.  I've started working on bits of this, but
haven't gotten very far.

jamie.

[-- Attachment #2: Type: application/pgp-signature, Size: 835 bytes --]

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

end of thread, other threads:[~2011-08-22 15:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-16 21:02 queries switching from MH-E to notmuch Stephen Eglen
  -- strict thread matches above, loose matches on Subject: below --
2011-08-18  8:52 Stephen Eglen
2011-08-19 19:30 ` Jameson Graef Rollins
2011-08-21 15:55 ` Austin Clements
2011-08-22 15:13   ` Jameson Graef Rollins

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).