Notmuch

提供: ArchWiki
2015年2月17日 (火) 18:53時点におけるKusakata (トーク | 投稿記録)による版
ナビゲーションに移動 検索に移動

関連記事

Notmuch はメールインデックス作成プログラムです。原則、xapian 上で動作するフロントエンドであり、Sup と同じように、一つのことに焦点を置いています: メールメッセージのインデックスを作成すること。Notmuch はメールリーダーとして使うことも、mutt などの他の MUA のインデクサや検索ツールとして使うこともできます。

概要

Notmuch is written in C and an order of magnitude faster than sup-mail. Notmuch can be terminated during the indexing process, on the next run it will continue where it left off. Also like sup-mail, it does not provide a way to permanently delete unwanted email messages. It doesn't fetch or send mails, nor does it store your email addresses, you'll need to use programs like offlineimap, msmtp and abook for those tasks.

Notmuch is available in the official repositories: notmuch or notmuch-gitAUR from the AUR

It provides python, vim, and emacs bindings.

初期設定

After installation, you enter an interactive setup by running:

 notmuch setup

The program prompts you for the location of your maildir and your primary and secondary email addresses. You can also edit the config file directly which is created by default at $HOME/.notmuch-config.

Subsequent re-indexing of the mail directories is done with:

 notmuch new

フロントエンド

There are a range of ways to use notmuch, including cli, or with one of the Unix $EDITORS:

Emacs

The default frontend for notmuch is Emacs. It is developed by the same people that develop notmuch.

Vim

There's a vim interface available and included in notmuch. To start it, type:

vim -c NotMuch

alot

alot is a standalone CLI interface for notmuch, written in python. It is available from AUR as alotAUR or alot-gitAUR.

Alot uses mailcap for handling different kinds of files. This currently includes html mails, which means that you need to configure a ~/.mailcap file in order to view html mails. As minimum, put this line into your ~/.mailcap:

 text/html; w3m -dump %s; nametemplate=%s.html; copiousoutput

More file handlers can be configured of course.

bower

bower is another CLI interface, this one is written in Mercury.

ner

ner - notmuch email reader - is yet another CLI interface, apparently written in C++.

ner-gitAUR is available from the AUR.

mutt の統合

If you use mutt as your MUA, then notmuch is an excellent complementary tool to index and search your mail. The notmuch-mutt package provides a script to integrate notmuch with mutt.

Refer to the notmuch-mutt man page for configuration information. This blogpost steps through how to setup notmuch with mutt, but the information is a little outdated.