dc2a2c2dfd
Display threads in the message list. For now, only supported by the notmuch backend and on IMAP when the server supports the THREAD extension. Setting threading-enable=true is global and will cause the message list to be empty with maildir:// accounts. Co-authored-by: Kevin Kuehler <keur@xcf.berkeley.edu> Co-authored-by: Reto Brunner <reto@labrat.space> Signed-off-by: Robin Jarry <robin@jarry.cc>
14 lines
232 B
Go
14 lines
232 B
Go
//+build notmuch
|
|
|
|
package lib
|
|
|
|
type ThreadNode struct {
|
|
Uid string
|
|
From string
|
|
Subject string
|
|
InQuery bool // is the msg included in the query
|
|
|
|
Parent *ThreadNode
|
|
NextSibling *ThreadNode
|
|
FirstChild *ThreadNode
|
|
}
|