mirror of
https://github.com/emersion/go-imap
synced 2026-07-01 20:24:44 +00:00
10 lines
208 B
Go
10 lines
208 B
Go
package imap
|
|
|
|
// ThreadAlgorithm is a threading algorithm.
|
|
type ThreadAlgorithm string
|
|
|
|
const (
|
|
ThreadOrderedSubject ThreadAlgorithm = "ORDEREDSUBJECT"
|
|
ThreadReferences ThreadAlgorithm = "REFERENCES"
|
|
)
|