pub fn link_quotes(store: &mut EmailStore, ignore_types: bool, linkquotes: bool)Expand description
Links replies by scanning message bodies for quoted Message-IDs.
§Performance
Builds a single msgid → msgnum lookup table, then for each message scans
its body once for <...>-delimited tokens and checks each against the
table. This is O(total body bytes) rather than the naive O(messages² ×
body bytes) of re-running contains() against every other message’s
msgid for every message.