Changes between Version 15 and Version 16 of Thunderbird Email Hacks


Ignore:
Timestamp:
07/18/24 05:26:03 (9 months ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Thunderbird Email Hacks

    v15 v16  
    135135
    136136}}}
     137
     138== Sort Defaults ==
     139
     140{{{
     141Type mailnews.default in the Filter bar to bring up a small list of preferences to configure. It will display similar to below:
     142
     143Preference Name                      Status       Type        Value
     144mailnews.default_news_sort_order:    default      integer     x
     145mailnews.default_news_sort_type:     default      integer     y
     146mailnews.default_sort_order:         default      integer     x
     147mailnews.default_sort_type:          default      integer     y
     148
     149In the above, replace the x and y of the value by double-clicking the name of the preference and replacing it with one of the following values as required:
     150x (see https://developer.mozilla.org/en/nsMsgViewSortOrder)
     151
     1521 = Ascending
     1532 = Descending
     154
     155y (see https://developer.mozilla.org/en/nsMsgViewSortType)
     156
     15717 = None
     15818 = Date
     15919 = Subject
     16020 = Author
     16121 = ID (Order Received)
     16222 = Thread
     16323 = Priority
     16424 = Status
     16525 = Size
     16626 = Flagged
     16727 = Unread
     16828 = Recipient
     16929 = Location
     17030 = Label
     17131 = Junk Status
     17232 = Attachments
     17333 = Account
     17434 = Custom
     17535 = Received
     176
     177So if you wanted to sort all mail by Thread, Descending (newest at top), the preferences in the config editor will look like this:
     178
     179mailnews.default_sort_order:    default     integer      2
     180mailnews.default_sort_type:     default     integer     22
     181
     182There are also default_(news_)view_flags settings (for mail and news), which allow to turn on the "Threaded" flag:
     183
     184view_flags -- the second group of values can be added to one of the first group to combine effects, with several limitations:
     185  Unthreaded       0
     186  Threaded         1
     187  Grouped         64  [mail only (?)]
     188
     189  ShowIgnored      8  [news only]
     190  ShowUnreadOnly  16
     191  ShowExpanded    32  [doesn't seem to work]
     192ShowUnreadOnly will check the View|Threads|Unread menu; this will cause only
     193unread items to be seen, but doesn't force a threaded view.
     194
     195}}}