Show Mail from a Specific Person#
Prerequisites#
Notmuch integration working in NeoMutt (see Setting Up Notmuch).
Filter by Sender Address#
Add a virtual mailbox for a specific sender:
virtual-mailboxes "Alice" "notmuch://?query=from:alice@example.com"
Open the mailbox.
Expected result: only messages from alice@example.com are shown.
Filter by Domain#
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#
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.