about summary refs log tree commit diff
path: root/archive.h
diff options
context:
space:
mode:
Diffstat (limited to 'archive.h')
-rw-r--r--archive.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/archive.h b/archive.h
index cc29953..540b898 100644
--- a/archive.h
+++ b/archive.h
@@ -18,6 +18,8 @@
 #include <stdlib.h>
 #include <time.h>
 
+#include "imap.h"
+
 struct Address {
 	char *name;
 	const char *mailbox;
@@ -58,6 +60,9 @@ static inline void envelopeFree(struct Envelope envelope) {
 	free(envelope.bcc.addrs);
 }
 
+enum Atom exportThreads(FILE *imap, struct List threads);
+void exportData(struct List items);
+
 #define TEMPLATE(...) #__VA_ARGS__
 
 struct Variable {