搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

How can I set up message filters to match exact words rather than finding strings that are part of other words?

  • 3 个回答
  • 1 人有此问题
  • 8 次查看
  • 最后回复者为 Zenos

more options

I want to create a message filter whereby if any of a list of words appears in the subject or body of the email, the message gets moved to a folder. Is there a way to ensure that the word is a discrete word and not party of another word? For example, if the word is 'cat' I want to match ONLY 'cat' and not 'scatter', for example. Is there a way to do this with string delimiters or wild cards in Thunderbird?

I want to create a message filter whereby if any of a list of words appears in the subject or body of the email, the message gets moved to a folder. Is there a way to ensure that the word is a discrete word and not party of another word? For example, if the word is 'cat' I want to match ONLY 'cat' and not 'scatter', for example. Is there a way to do this with string delimiters or wild cards in Thunderbird?

所有回复 (3)

more options

Probably not. An add-on that introduced "regular expressions" to the filtering would allow you to set up such a specific search. But unfortunately neither of the two add-ons I know about can search reliably on message body text.

Both FiltaQuilla and Expression Search/Gmail UI offer some regular expression capability.

more options

Well is there a way to include AND and OR filters together, or run a filter on messages once they are moved to a certain subfolder (or always on the subfolder)? That would narrow it down quite a bit. E.g., could I allow another filter to run that would move some messages to a subfolder, and then have my new filter run on that subfolder?

more options

FiltaQuilla's regular expressions provide a means to apply an OR function.

The syntax would be of the form of /\w(cat)|(dog)|(horse)\w/i where the \w marks a word boundary and the /.../i notation means to ignore case.

FiltaQuilla also provides an action to only run on a specified folder. But if you filter to a subfolder you'll need to run subsequent filters manually since Thunderbird only runs filters automatically on the Inbox.

If you know how to code javascript then an alternative approach would be to use another FiltaQuilla action to run your script where you could, I presume, write arbitrarily complex filter rules.