forked from mirrors_public/oddlama_nix-config
feat(thunderbird): add some general settings
This commit is contained in:
parent
926787528b
commit
eadbc15bbf
3 changed files with 46 additions and 0 deletions
|
@ -37,6 +37,8 @@
|
|||
zathura
|
||||
];
|
||||
|
||||
# TODO thunderbird date time format is wrong even though this is C.utf8
|
||||
# TODO yubikey pinentry is curses but should be graphical
|
||||
# TODO accounts.concats accounts.calendar
|
||||
# TODO test different pinentrys (pinentry gtk?)
|
||||
# TODO agenix rekey edit secret should create temp files with same extension
|
||||
|
|
|
@ -35,6 +35,50 @@ in {
|
|||
profiles.personal = {
|
||||
isDefault = true;
|
||||
withExternalGnupg = true;
|
||||
|
||||
settings = {
|
||||
"mail.identity.default.archive_enabled" = true;
|
||||
"mail.identity.default.archive_keep_folder_structure" = true;
|
||||
"mail.identity.default.compose_html" = false;
|
||||
"mail.identity.default.protectSubject" = true;
|
||||
"mail.identity.default.reply_on_top" = 1;
|
||||
"mail.identity.default.sig_on_reply" = false;
|
||||
};
|
||||
};
|
||||
|
||||
settings = {
|
||||
# Some general settings.
|
||||
"mail.server.default.allow_utf8_accept" = true;
|
||||
"mail.server.default.max_articles" = 1000;
|
||||
"mail.server.default.check_all_folders_for_new" = true;
|
||||
"mail.show_headers" = 1;
|
||||
|
||||
# Show some metadata.
|
||||
"mailnews.headers.showMessageId" = true;
|
||||
"mailnews.headers.showOrganization" = true;
|
||||
"mailnews.headers.showReferences" = true;
|
||||
"mailnews.headers.showUserAgent" = true;
|
||||
|
||||
# Sort mails and news in descending order.
|
||||
"mailnews.default_sort_order" = 2;
|
||||
"mailnews.default_news_sort_order" = 2;
|
||||
# Sort mails and news by date.
|
||||
"mailnews.default_sort_type" = 18;
|
||||
"mailnews.default_news_sort_type" = 18;
|
||||
|
||||
# Sort them by the newest reply in thread.
|
||||
"mailnews.sort_threads_by_root" = true;
|
||||
# Show time.
|
||||
"mail.ui.display.dateformat.default" = 1;
|
||||
# Sanitize it to UTC to prevent leaking local time.
|
||||
"mail.sanitize_date_header" = true;
|
||||
|
||||
# Email composing QoL.
|
||||
"mail.identity.default.auto_quote" = true;
|
||||
"mail.identity.default.attachPgpKey" = true;
|
||||
|
||||
"app.update.auto" = false;
|
||||
"privacy.donottrackheader.enabled" = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue