mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
lib: add mid: as a synonym for id:
mid: is the url scheme suggested by URL 2392. We also plan to introduce more flexible searches for mid: than are possible with id: (in order not to break assumptions about the special behaviour of id:, e.g. identifying at most one message).
This commit is contained in:
parent
55524bb063
commit
6cb1c617a7
2 changed files with 7 additions and 0 deletions
|
@ -262,6 +262,7 @@ prefix_t prefix_table[] = {
|
|||
{ "tag", "K", NOTMUCH_FIELD_EXTERNAL },
|
||||
{ "is", "K", NOTMUCH_FIELD_EXTERNAL },
|
||||
{ "id", "Q", NOTMUCH_FIELD_EXTERNAL },
|
||||
{ "mid", "Q", NOTMUCH_FIELD_EXTERNAL },
|
||||
{ "path", "P", NOTMUCH_FIELD_EXTERNAL },
|
||||
{ "property", "XPROPERTY", NOTMUCH_FIELD_EXTERNAL },
|
||||
/*
|
||||
|
|
|
@ -34,6 +34,11 @@ add_message '[subject]="search by id"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"
|
|||
output=$(notmuch search id:${gen_msg_id} | notmuch_search_sanitize)
|
||||
test_expect_equal "$output" "thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; search by id (inbox unread)"
|
||||
|
||||
test_begin_subtest "Search by mid:"
|
||||
add_message '[subject]="search by mid"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"'
|
||||
output=$(notmuch search mid:${gen_msg_id} | notmuch_search_sanitize)
|
||||
test_expect_equal "$output" "thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; search by mid (inbox unread)"
|
||||
|
||||
test_begin_subtest "Search by tag:"
|
||||
add_message '[subject]="search by tag"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"'
|
||||
notmuch tag +searchbytag id:${gen_msg_id}
|
||||
|
@ -127,6 +132,7 @@ thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; search by to (inbox unread)
|
|||
thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; subjectsearchtest (inbox unread)
|
||||
thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; utf8-sübjéct (inbox unread)
|
||||
thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; search by id (inbox unread)
|
||||
thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; search by mid (inbox unread)
|
||||
thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; search by tag (inbox searchbytag unread)
|
||||
thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; search by thread (inbox unread)
|
||||
thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; body search (phrase) (inbox unread)
|
||||
|
|
Loading…
Reference in a new issue