mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
f2e2f2aa96
Use the program and option directives to document the subcommand options. This unifies a lot of option documentation throughout. This also makes it possible to reference options with :option:`--foo` (within .. program::) or :option:`subcommand --foo` (globally). This is left for later work. See https://www.sphinx-doc.org/en/master/usage/restructuredtext/domains.html#directive-program Note: There is a lot of indentation change, but intentionally there is no reflow. Using 'git diff -w' or 'git show -w' to ignore white space changes makes this a very easy change to review.
103 lines
3 KiB
ReStructuredText
103 lines
3 KiB
ReStructuredText
.. _notmuch-new(1):
|
|
|
|
===========
|
|
notmuch-new
|
|
===========
|
|
|
|
SYNOPSIS
|
|
========
|
|
|
|
**notmuch** **new** [options]
|
|
|
|
DESCRIPTION
|
|
===========
|
|
|
|
Find and import any new messages to the database.
|
|
|
|
The **new** command scans all sub-directories of the database,
|
|
performing full-text indexing on new messages that are found. Each new
|
|
message will automatically be tagged with both the **inbox** and
|
|
**unread** tags.
|
|
|
|
You should run **notmuch new** once after first running
|
|
:any:`notmuch-setup(1)` to create the initial database. The first run
|
|
may take a long time if you have a significant amount of mail (several
|
|
hundred thousand messages or more). Subsequently, you should run
|
|
**notmuch new** whenever new mail is delivered and you wish to
|
|
incorporate it into the database. These subsequent runs will be much
|
|
quicker than the initial run.
|
|
|
|
Invoking ``notmuch`` with no command argument will run **new** if
|
|
:any:`notmuch-setup(1)` has previously been completed, but **notmuch
|
|
new** has not previously been run.
|
|
|
|
**notmuch new** updates tags according to maildir flag changes if the
|
|
**maildir.synchronize\_flags** configuration option is enabled. See
|
|
:any:`notmuch-config(1)` for details.
|
|
|
|
The **new** command supports hooks. See :any:`notmuch-hooks(5)` for more
|
|
details on hooks.
|
|
|
|
Supported options for **new** include
|
|
|
|
.. program:: new
|
|
|
|
.. option:: --no-hooks
|
|
|
|
Prevents hooks from being run.
|
|
|
|
.. option:: --quiet
|
|
|
|
Do not print progress or results.
|
|
|
|
.. option:: --verbose
|
|
|
|
Print file names being processed. Ignored when combined with
|
|
``--quiet``.
|
|
|
|
.. option:: --decrypt=(true|nostash|auto|false)
|
|
|
|
If ``true``, when encountering an encrypted message, try to
|
|
decrypt it while indexing, and stash any discovered session keys.
|
|
If ``auto``, try to use any session key already known to belong to
|
|
this message, but do not attempt to use the user's secret keys.
|
|
If decryption is successful, index the cleartext of the message.
|
|
|
|
Be aware that the index is likely sufficient (and the session key
|
|
is certainly sufficient) to reconstruct the cleartext of the
|
|
message itself, so please ensure that the notmuch message index is
|
|
adequately protected. DO NOT USE ``--decrypt=true`` or
|
|
``--decrypt=nostash`` without considering the security of your
|
|
index.
|
|
|
|
See also ``index.decrypt`` in :any:`notmuch-config(1)`.
|
|
|
|
.. option:: --full-scan
|
|
|
|
By default notmuch-new uses directory modification times (mtimes)
|
|
to optimize the scanning of directories for new mail. This option turns
|
|
that optimization off.
|
|
|
|
EXIT STATUS
|
|
===========
|
|
|
|
This command supports the following special exit status code
|
|
|
|
``75 (EX_TEMPFAIL)``
|
|
A temporary failure occurred; the user is invited to retry.
|
|
|
|
SEE ALSO
|
|
========
|
|
|
|
:any:`notmuch(1)`,
|
|
:any:`notmuch-config(1)`,
|
|
:any:`notmuch-count(1)`,
|
|
:any:`notmuch-dump(1)`,
|
|
:any:`notmuch-hooks(5)`,
|
|
:any:`notmuch-insert(1)`,
|
|
:any:`notmuch-reply(1)`,
|
|
:any:`notmuch-restore(1)`,
|
|
:any:`notmuch-search(1)`,
|
|
:any:`notmuch-search-terms(7)`,
|
|
:any:`notmuch-show(1)`,
|
|
:any:`notmuch-tag(1)`
|