為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

I made a bad filter and now all email have been moved to spam, can i delete the filter without starting thunderbird?

  • 1 回覆
  • 2 有這個問題
  • 1 次檢視
  • 最近回覆由 Zenos

more options

Lots of spam coming from addresses other than .com and .net so I tried to filter by From, does not contain .com and .net. FAIL. Now all emails have been moved to Spam. Is there a way to undo, and is there a way to delete the filter or all filter without starting Thunderbird?

Lots of spam coming from addresses other than .com and .net so I tried to filter by From, does not contain .com and .net. FAIL. Now all emails have been moved to Spam. Is there a way to undo, and is there a way to delete the filter or all filter without starting Thunderbird?

被選擇的解決方法

"Does not contain .com" and "does not contain .net" could be a tricky filter to set up. Are you familiar with De Morgan's Laws?

I'd have used "ends with", not "contains".

So, if it ends with .net or ends with .com, it's OK?

(from, ends with, .net) OR (from, ends with, .com) = NOT spam

OR means "Match any" in the way Thunderbird's filters do it.

So it's quite easy to set up two rules (in one filter) to identify good messages. But how to identify bad messages?

Negate both sides:

NOT ( .net OR .com) = spam

Apply De Morgan's rule:

(NOT .net) AND (NOT .com) = spam

so, Match All rule #1: From, doesn't end with, .net rule #2: From, doesn't end with, .com

Action mark and treat as spam

But you can't do that. There is no "doesn't end with" option. You could try with "contains" or more accurately, "doesn't contain" but I'm not at all sure it will recognize the dot character, and looking for occurrences of "net" or "com" is just too imprecise.

My solution would be the FiltaQuilla add-on and its regular expression capability. That would give me the ability to set up:

Match All rule #1: From (regex), doesn't match, /\.net$/i rule #2: From (regex), doesn't match, /\.com$/i

Action mark and treat as spam

This is not an approach that would work for me. I don't see any obvious correlation in my incoming email messages between the TLD in the email address and its spamminess.

Have you tried running Thunderbird offline to avoid your filters doing any more damage?

If you're feeling brave, you could edit the msgFilterRules.dat file in the relevant account in your profile. You should be able to find the lines containing your duff filter and delete them. You should be able to edit this file in Notepad.

從原來的回覆中察看解決方案 👍 1

所有回覆 (1)

more options

選擇的解決方法

"Does not contain .com" and "does not contain .net" could be a tricky filter to set up. Are you familiar with De Morgan's Laws?

I'd have used "ends with", not "contains".

So, if it ends with .net or ends with .com, it's OK?

(from, ends with, .net) OR (from, ends with, .com) = NOT spam

OR means "Match any" in the way Thunderbird's filters do it.

So it's quite easy to set up two rules (in one filter) to identify good messages. But how to identify bad messages?

Negate both sides:

NOT ( .net OR .com) = spam

Apply De Morgan's rule:

(NOT .net) AND (NOT .com) = spam

so, Match All rule #1: From, doesn't end with, .net rule #2: From, doesn't end with, .com

Action mark and treat as spam

But you can't do that. There is no "doesn't end with" option. You could try with "contains" or more accurately, "doesn't contain" but I'm not at all sure it will recognize the dot character, and looking for occurrences of "net" or "com" is just too imprecise.

My solution would be the FiltaQuilla add-on and its regular expression capability. That would give me the ability to set up:

Match All rule #1: From (regex), doesn't match, /\.net$/i rule #2: From (regex), doesn't match, /\.com$/i

Action mark and treat as spam

This is not an approach that would work for me. I don't see any obvious correlation in my incoming email messages between the TLD in the email address and its spamminess.

Have you tried running Thunderbird offline to avoid your filters doing any more damage?

If you're feeling brave, you could edit the msgFilterRules.dat file in the relevant account in your profile. You should be able to find the lines containing your duff filter and delete them. You should be able to edit this file in Notepad.