Under Development
stars

Show Mail from a Specific Person#

Prerequisites#

  1. Notmuch integration working in NeoMutt (see Setting Up Notmuch).

Filter by Sender Address#

  1. Add a virtual mailbox for a specific sender:

virtual-mailboxes "Alice" "notmuch://?query=from:alice@example.com"
  1. Open the mailbox.

Expected result: only messages from alice@example.com are shown.

Filter by Domain#

  1. Use a domain-level query to match anyone at a company:

virtual-mailboxes "ACME Corp" "notmuch://?query=from:@acme.com"

Expected result: messages from any address at acme.com are shown.

Combine with Other Conditions#

  1. Show only unread messages from a sender:

virtual-mailboxes "Alice Unread" "notmuch://?query=from:alice@example.com and tag:unread"

Expected result: the mailbox shows only unread messages from Alice.

See Combine Multiple Conditions for more complex queries.