feat(thunderbird): set default sorting

This commit is contained in:
Nydragon 2024-06-15 00:44:11 +09:00
parent 4c50999fc5
commit c8fbfe9155
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209

View file

@ -1,7 +1,9 @@
{ ... }: { ... }:
{ {
programs.thunderbird = { programs.thunderbird = {
enable = true;
settings = { settings = {
# https://superuser.com/a/13551
"mailnews.wraplength" = 80; "mailnews.wraplength" = 80;
"mail.pane_config.dynamic" = 2; "mail.pane_config.dynamic" = 2;
"mail.biff.play_sound" = false; "mail.biff.play_sound" = false;
@ -9,8 +11,29 @@
# Never allow cookies # Never allow cookies
"network.cookie.cookieBehavior" = 2; "network.cookie.cookieBehavior" = 2;
"mailnews.start_page.enabled" = false; "mailnews.start_page.enabled" = false;
# Date descending # 1 = Ascending
# 2 = Descending
"mailnews.default_sort_order" = 2; "mailnews.default_sort_order" = 2;
# 17 = None
# 18 = Date
# 19 = Subject
# 20 = Author
# 21 = ID (Order Received)
# 22 = Thread
# 23 = Priority
# 24 = Status
# 25 = Size
# 26 = Flagged
# 27 = Unread
# 28 = Recipient
# 29 = Location
# 30 = Label
# 31 = Junk Status
# 32 = Attachments
# 33 = Account
# 34 = Custom
# 35 = Received
"mailnews.default_sort_type" = 18;
}; };
profiles.nico = { profiles.nico = {
isDefault = true; isDefault = true;