Package Details: muttjump 1.5-1

Package Base: muttjump
Description: makes mail indexers (like mairix, mu, nmzmail, or notmuch) together with mutt more useful by jumping from virtual maildir search results to actual message.
Upstream URL: https://github.com/weisslj/muttjump
Category: network
Licenses: GPL
Submitter: altercation
Maintainer: altercation
Last Packager: None
Votes: 3
First Submitted: 2011-07-23 17:19
Last Updated: 2011-07-23 17:19

Dependencies (1)

Required by (0)

Sources

Latest Comments

Comment by altercation

2011-07-23 17:55

From the README:

macro generic ,j "<enter-command>push <pipe-message>muttjump<enter><enter>" "jump to original message"

Don't forget to quit the new mutt instance (started by muttjump) after
the modifications. To make jumping faster (no keypress required), unset
$wait_key in your ~/.muttrc.

(cf https://github.com/weisslj/muttjump )

---

I personally use unpatched, plain old mutt and have no config settings related to message-id in my muttrc. When I pipe messages out from mutt in this default state, message-id is not piped out with the other headers, so I have to explicitly unignore it, as in the following macro (note that I am also unsetting wait_key for no prompting):

macro generic,index,pager <F6> "<enter-command>unset wait_key<enter><enter-command>unignore message-id<enter><enter-command>push <pipe-message>muttjump<enter><enter >" "jump to original message"

Comment by altercation

2011-07-23 17:49

Also, please note that you'll need to set the following variable in your environment variables such that it will be read from non-interactive bash shell scripts. See http://shreevatsa.wordpress.com/2008/03/30/zshbash-startup-files-loading-order-bashrc-zshrc-etc/ for tips on this. I have the following in my ~/.profile (though I also have .profile symlinked to the other startup files listed on the page linked to in this comment):

export MUTTJUMP_INDEXER=notmuch

MUTTJUMP_INDEXER can be one of: mairix, mairix-git, mu, mu-old (mu < 0.7), nmzmail or notmuch (>= 0.5)