Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

Is it possible to update filter rules in Thunderbird via custom extension?

  • 5 답장
  • 1 이 문제를 만남
  • 1 보기
  • 최종 답변자: GreezXII

more options

Hi and thank you for your attention.

I want to create an extension for Mozilla Thunderbird that implement some sort of black list. It is possible to create filter rules for mails and I want to add a button which create filter rule for selected address. These rules are stored in msgFilterRules.dat file and I could manually edit it but only when Thunderbird is closed.

Is there any way to manipulate this file with some sort of API or WebExtensions?

Hi and thank you for your attention. I want to create an extension for Mozilla Thunderbird that implement some sort of black list. It is possible to create filter rules for mails and I want to add a button which create filter rule for selected address. These rules are stored in msgFilterRules.dat file and I could manually edit it but only when Thunderbird is closed. Is there any way to manipulate this file with some sort of API or WebExtensions?

선택된 해결법

Thanks to John Bieling from https://thunderbird.topicbox.com/groups/addons

currently we have no API to manipulate filters, but it has been requested and we will add that eventually. In the meantime, you could implement your own filter system, by listening for new messages and move them if they hit your own blocklist: https://webextension-api.thunderbird.net/en/91/messages.html#onnewmailreceived https://webextension-api.thunderbird.net/en/91/messages.html#move-messageids-destination
문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (5)

more options

> Is there any way to manipulate this file with some sort of API or WebExtensions?

With Thunderbird closed? No.

more options

Wayne Mery said

> Is there any way to manipulate this file with some sort of API or WebExtensions? With Thunderbird closed? No.

Sorry, I'm afraid you got me wrong. I’m looking for a way to create filter rules via WebExtensions when Thunderbird is open or at least edit msgFilterRules.dat file when Thunderbird is open .

more options

I suggest you join the web extensions mailing list to ask your questions on developing same. BTW Thunderbird calls them mail extensions and they are not the same as those used in Firefox and Chrome.

https://thunderbird.topicbox.com/groups/addons

You might also want to look at the Thunderbird developer documentation. https://developer.thunderbird.net/thunderbird-development/getting-started

and documentation for mail extension authors https://developer.thunderbird.net/add-ons/mailextensions

more options

Matt said

I suggest you join the web extensions mailing list to ask your questions on developing same. BTW Thunderbird calls them mail extensions and they are not the same as those used in Firefox and Chrome. https://thunderbird.topicbox.com/groups/addons You might also want to look at the Thunderbird developer documentation. https://developer.thunderbird.net/thunderbird-development/getting-started and documentation for mail extension authors https://developer.thunderbird.net/add-ons/mailextensions

Thank you! I think mailing list may be very useful.

more options

선택된 해결법

Thanks to John Bieling from https://thunderbird.topicbox.com/groups/addons

currently we have no API to manipulate filters, but it has been requested and we will add that eventually. In the meantime, you could implement your own filter system, by listening for new messages and move them if they hit your own blocklist: https://webextension-api.thunderbird.net/en/91/messages.html#onnewmailreceived https://webextension-api.thunderbird.net/en/91/messages.html#move-messageids-destination