about summary refs log tree commit homepage
path: root/lib/PublicInbox/Search.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-05-09 08:37:00 +0000
committerEric Wong <e@yhbt.net>2020-05-10 06:30:50 +0000
commit8c3016372fb40ad3f19bc69c90e49cbd5a5f081f (patch)
treec74291827a4d92b1180dbcc01ccff3d2af9babd6 /lib/PublicInbox/Search.pm
parenta0b53e7c83c2773ba80fdd188ad5537a0408f997 (diff)
downloadpublic-inbox-8c3016372fb40ad3f19bc69c90e49cbd5a5f081f.tar.gz
I'm not sure it's necessary, since "mid:" is similarly
undocumented.  Also, "t:", "c:", "f:" don't offer boolean
analogues for exact matches on To/Cc/From headers, despite
having similar tokens as List-Id inside angle brackets.
Diffstat (limited to 'lib/PublicInbox/Search.pm')
-rw-r--r--lib/PublicInbox/Search.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/PublicInbox/Search.pm b/lib/PublicInbox/Search.pm
index b7db2b9f..cb669e87 100644
--- a/lib/PublicInbox/Search.pm
+++ b/lib/PublicInbox/Search.pm
@@ -122,6 +122,9 @@ my %prob_prefix = (
 );
 
 # not documenting m: and mid: for now, the using the URLs works w/o Xapian
+# not documenting lid: for now, either, it is probably redundant with l:,
+# especially since we don't offer boolean searches for To/Cc/From
+# headers, either
 our @HELP = (
         's:' => 'match within Subject  e.g. s:"a quick brown fox"',
         'd:' => <<EOF,
@@ -141,8 +144,7 @@ EOF
         'f:' => 'match within the From header',
         'a:' => 'match within the To, Cc, and From headers',
         'tc:' => 'match within the To and Cc headers',
-        'lid:' => 'exact contents of the List-Id',
-        'l:' => 'partial match contents of the List-Id header',
+        'l:' => 'match contents of the List-Id header',
         'bs:' => 'match within the Subject and body',
         'dfn:' => 'match filename from diff',
         'dfa:' => 'match diff removed (-) lines',