diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/mailnews/extensions/mdn/mdn.js | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/mailnews/extensions/mdn/mdn.js')
-rw-r--r-- | comm/mailnews/extensions/mdn/mdn.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/comm/mailnews/extensions/mdn/mdn.js b/comm/mailnews/extensions/mdn/mdn.js new file mode 100644 index 0000000000..ae82382f39 --- /dev/null +++ b/comm/mailnews/extensions/mdn/mdn.js @@ -0,0 +1,25 @@ +#filter dumbComments emptyLines substitution + +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + +// +// default prefs for mdn +// + +// false: Use global true: Use custom +pref("mail.identity.default.use_custom_prefs", false); +pref("mail.identity.default.request_return_receipt_on", false); +// 0: Inbox/filter 1: Sent folder +pref("mail.server.default.incorporate_return_receipt", 0); +// false: Never return receipts true: Return some receipts +pref("mail.server.default.mdn_report_enabled", true); +// 0: Never 1: Always 2: Ask me 3: Denial +pref("mail.server.default.mdn_not_in_to_cc", 2); +pref("mail.server.default.mdn_outside_domain", 2); +pref("mail.server.default.mdn_other", 2); +// return receipt header type - 0: MDN-DNT 1: RRT 2: Both +pref("mail.identity.default.request_receipt_header_type", 0); + +pref("mail.server.default.mdn_report_enabled", true); |