We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22b70c commit c3e5545Copy full SHA for c3e5545
thread.go
@@ -0,0 +1,9 @@
1
+package imap
2
+
3
+// ThreadAlgorithm is a threading algorithm.
4
+type ThreadAlgorithm string
5
6
+const (
7
+ ThreadOrderedSubject ThreadAlgorithm = "ORDEREDSUBJECT"
8
+ ThreadReferences ThreadAlgorithm = "REFERENCES"
9
+)
0 commit comments