• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bindings/H09-Dec-2021-11,7068,369

compat/H09-Dec-2021-617333

completion/H09-Dec-2021-975796

contrib/H09-Dec-2021-2,6371,443

debian/H09-Dec-2021-2,3761,715

devel/H09-Dec-2021-3,3152,600

doc/H09-Dec-2021-4,3203,178

emacs/H03-May-2022-11,5518,493

lib/H09-Dec-2021-16,1579,542

packaging/H09-Dec-2021-175121

parse-time-string/H09-Dec-2021-1,645963

performance-test/H09-Dec-2021-744487

test/H09-Dec-2021-50,02142,785

util/H09-Dec-2021-2,1371,267

vim/H03-May-2022-1,150955

.dir-locals.elH A D09-Dec-2021544 2621

.gitignoreH A D09-Dec-2021247 2120

.mailmapH A D09-Dec-2021272 98

.travis.ymlH A D09-Dec-2021445 3025

AUTHORSH A D09-Dec-20212.9 KiB130118

COPYINGH A D09-Dec-2021652 1612

COPYING-GPL-3H A D09-Dec-202134.2 KiB677553

INSTALLH A D09-Dec-20213 KiB10770

MakefileH A D09-Dec-20212.2 KiB7242

Makefile.globalH A D09-Dec-20212.5 KiB6644

Makefile.localH A D09-Dec-202110.2 KiB314260

NEWSH A D09-Dec-2021156.2 KiB4,8043,298

READMEH A D09-Dec-20212.9 KiB7858

README.rstH A D09-Dec-2021450 128

command-line-arguments.cH A D09-Dec-20218 KiB321234

command-line-arguments.hH A D09-Dec-20212.2 KiB8331

configureH A D03-May-202249.2 KiB1,5941,302

debugger.cH A D09-Dec-20211.2 KiB4821

gmime-filter-reply.cH A D09-Dec-20215.6 KiB213142

gmime-filter-reply.hH A D09-Dec-20212.3 KiB7532

hooks.cH A D09-Dec-20212.7 KiB9859

mime-node.cH A D09-Dec-202114.9 KiB502372

notmuch-client-init.cH A D09-Dec-2021315 1912

notmuch-client.hH A D09-Dec-202115.6 KiB510259

notmuch-compact.cH A D09-Dec-20211.9 KiB6838

notmuch-config.cH A D09-Dec-202119.8 KiB752562

notmuch-count.cH A D09-Dec-20215.9 KiB228172

notmuch-dump.cH A D09-Dec-202111.1 KiB416312

notmuch-insert.cH A D09-Dec-202115.6 KiB598408

notmuch-new.cH A D09-Dec-202138.2 KiB1,318925

notmuch-reindex.cH A D09-Dec-20214.1 KiB13784

notmuch-reply.cH A D09-Dec-202123.3 KiB780501

notmuch-restore.cH A D09-Dec-202111.8 KiB468337

notmuch-search.cH A D09-Dec-202124.5 KiB927714

notmuch-setup.cH A D09-Dec-20217.8 KiB244179

notmuch-show.cH A D09-Dec-202141.8 KiB1,4251,086

notmuch-tag.cH A D09-Dec-20218.9 KiB318221

notmuch-time.cH A D09-Dec-20213.6 KiB13782

notmuch.cH A D09-Dec-202118.9 KiB630472

query-string.cH A D09-Dec-20211.7 KiB5721

sprinter-json.cH A D09-Dec-20214.8 KiB203157

sprinter-sexp.cH A D09-Dec-20215.8 KiB238169

sprinter-text.cH A D09-Dec-20213.2 KiB159113

sprinter.hH A D09-Dec-20213 KiB8526

status.cH A D09-Dec-20211.9 KiB8977

tag-util.cH A D09-Dec-20219 KiB427300

tag-util.hH A D09-Dec-20213.6 KiB16446

README

1Notmuch - thread-based email index, search and tagging.
2
3Notmuch is a system for indexing, searching, reading, and tagging
4large collections of email messages in maildir or mh format. It uses
5the Xapian library to provide fast, full-text search with a convenient
6search syntax.
7
8Notmuch is free software, released under the GNU General Public
9License version 3 (or later).
10
11Building notmuch
12----------------
13See the INSTALL file for notes on compiling and installing notmuch.
14
15Running notmuch
16---------------
17After installing notmuch, start by running "notmuch setup" which will
18interactively prompt for configuration information such as your name,
19email address, and the directory which contains your mail archive to
20be indexed. You can change any answers later by running "notmuch
21setup" again or by editing the .notmuch-config file in your home
22directory.
23
24With notmuch configured you should next run "notmuch new" which will
25index all of your existing mail. This can take a long time, (several
26hours) if you have a lot of email, (hundreds of thousands of
27files). When new mail is delivered to your mail archive in the future,
28you will want to run "notmuch new" again. These runs will be much
29faster as they will only index new messages.
30
31Finally, you can prove to yourself that things are working by running
32some command-line searches such as "notmuch search
33from:someone@example.com" or "notmuch search subject:topic". See
34"notmuch help search-terms" for more details on the available search
35syntax.
36
37The command-line search output is not expected to be particularly
38friendly for day-to-day usage. Instead, it is expected that you will
39use an email interface that builds on the notmuch command-line tool or
40the libnotmuch library.
41
42Notmuch installs a full-featured email interface for use within
43emacs. To use this, first add the following line to your .emacs file:
44
45	(autoload 'notmuch "notmuch" "Notmuch mail" t)
46
47Then, either run "emacs -f notmuch" or execute the command "M-x
48notmuch" from within a running emacs.
49
50If you're interested in a non-emacs-based interface to notmuch, then
51please join the notmuch community. Various other interfaces are
52already in progress, (an interface within vim, a curses interface,
53graphical interfaces based on evolution, and various web-based
54interfaces). The authors of these interfaces would love further
55testing or contribution. See contact information below.
56
57Contacting users and developers
58-------------------------------
59The website for Notmuch is:
60
61	https://notmuchmail.org
62
63The mailing list address for the notmuch community is:
64
65	notmuch@notmuchmail.org
66
67We welcome any sort of questions, comments, kudos, or code there.
68
69Subscription is not required, (but if you do subscribe you'll avoid
70any delay due to moderation). See the website for subscription
71information.
72
73There is also an IRC channel dedicated to talk about using and
74developing notmuch:
75
76	IRC server:	irc.libera.chat
77	Channel:	#notmuch
78

README.rst

1If you're reading this on https://github.com/notmuch/notmuch, this is a
2read-only mirror of the notmuch project.
3
4For more information about the project, see https://notmuchmail.org.
5
6Please don't send us pull requests on github. If you have a feature
7branch that you want us to look at, use ``git send-email`` to send it
8to notmuch@notmuchmail.org.
9
10For more information about contributing to the project, see
11https://notmuchmail.org/contributing/.
12