summaryrefslogtreecommitdiff
path: root/alpine/imap.h
diff options
context:
space:
mode:
authorEduardo Chappa <echappa@gmx.com>2013-02-03 00:59:38 -0700
committerEduardo Chappa <echappa@gmx.com>2013-02-03 00:59:38 -0700
commit094ca96844842928810f14844413109fc6cdd890 (patch)
treee60efbb980f38ba9308ccb4fb2b77b87bbc115f3 /alpine/imap.h
downloadalpine-094ca96844842928810f14844413109fc6cdd890.tar.xz
Initial Alpine Version
Diffstat (limited to 'alpine/imap.h')
-rw-r--r--alpine/imap.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/alpine/imap.h b/alpine/imap.h
new file mode 100644
index 00000000..b254fb53
--- /dev/null
+++ b/alpine/imap.h
@@ -0,0 +1,51 @@
+/*
+ * $Id: imap.h 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $
+ *
+ * ========================================================================
+ * Copyright 2006-2007 University of Washington
+ * Copyright 2013 Eduardo Chappa
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * ========================================================================
+ */
+
+#ifndef PINE_IMAP_INCLUDED
+#define PINE_IMAP_INCLUDED
+
+
+#include "../pith/imap.h"
+
+
+/* exported protoypes */
+void pine_parse_quota (MAILSTREAM *, unsigned char *, QUOTALIST *);
+QUOTALIST *pine_quotalist_copy (QUOTALIST *);
+void *pine_block_notify(int, void *);
+long pine_tcptimeout(long, long, char *);
+long pine_sslcertquery(char *, char *, char *);
+char *pine_newsrcquery(MAILSTREAM *, char *, char *);
+int url_local_certdetails(char *);
+void pine_sslfailure(char *, char *, unsigned long);
+void mm_expunged_current(long unsigned int);
+
+#ifdef LOCAL_PASSWD_CACHE
+int get_passfile_passwd(char *, char *, char *, STRLIST_S *, int);
+int is_using_passfile();
+void set_passfile_passwd(char *, char *, char *, STRLIST_S *, int, int);
+char *get_passfile_user(char *, STRLIST_S *);
+#endif /* LOCAL_PASSWD_CACHE */
+
+#if (WINCRED > 0)
+void erase_windows_credentials(void);
+#endif
+
+#ifdef APPLEKEYCHAIN
+void macos_erase_keychain(void);
+#endif
+
+
+#endif /* PINE_IMAP_INCLUDED */