about summary refs log tree commit diff
path: root/imap.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-05-01 16:51:28 -0400
committerJune McEnroe <june@causal.agency>2020-05-01 16:51:28 -0400
commitc408824619f0dffd3556b1374a2c4f4124640d5d (patch)
treeeaff06fa137f17aa12a32ec7626ab9d54c40a289 /imap.h
parentAdd generator links (diff)
downloadbubger-c408824619f0dffd3556b1374a2c4f4124640d5d.tar.gz
bubger-c408824619f0dffd3556b1374a2c4f4124640d5d.zip
Support continue responses
Basically just so that this can be the canonical imap.[ch] for copying
into other projects.
Diffstat (limited to 'imap.h')
-rw-r--r--imap.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/imap.h b/imap.h
index 0aa5636..1bb57f5 100644
--- a/imap.h
+++ b/imap.h
@@ -60,7 +60,8 @@
 	X(AtomHeader, "HEADER") \
 	X(AtomText, "TEXT") \
 	X(AtomDot, ".") \
-	X(AtomUntagged, "*")
+	X(AtomUntagged, "*") \
+	X(AtomContinue, "+")
 
 enum Atom {
 #define X(id, str) id,