From c8fbfe9155a323efe26b265a626b9187b1b03c29 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sat, 15 Jun 2024 00:44:11 +0900 Subject: [PATCH] feat(thunderbird): set default sorting --- home/thunderbird/default.nix | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/home/thunderbird/default.nix b/home/thunderbird/default.nix index a93e9bd..5bc9c0b 100644 --- a/home/thunderbird/default.nix +++ b/home/thunderbird/default.nix @@ -1,7 +1,9 @@ { ... }: { programs.thunderbird = { + enable = true; settings = { + # https://superuser.com/a/13551 "mailnews.wraplength" = 80; "mail.pane_config.dynamic" = 2; "mail.biff.play_sound" = false; @@ -9,8 +11,29 @@ # Never allow cookies "network.cookie.cookieBehavior" = 2; "mailnews.start_page.enabled" = false; - # Date descending + # 1 = Ascending + # 2 = Descending "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 = { isDefault = true;