Files
2026-01-04 20:57:40 +00:00

10 lines
208 B
Go

package imap
// ThreadAlgorithm is a threading algorithm.
type ThreadAlgorithm string
const (
ThreadOrderedSubject ThreadAlgorithm = "ORDEREDSUBJECT"
ThreadReferences ThreadAlgorithm = "REFERENCES"
)