]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_pop3.h
mk_module_init.sh now tests to see if echo supports -e and -E
[citadel.git] / citadel / serv_pop3.h
index be228e7b09fe84843a66d7f1b35ba047921c79ff..8c73f689d0d2bd796c010aecb6e2e30694d2180d 100644 (file)
@@ -1,9 +1,12 @@
+/*
+ * $Id$
+ *
+ */
 
 struct pop3msg {
        long msgnum;
        size_t rfc822_length;
        int deleted;
-       FILE *temp;
 };
 
 struct citpop3 {               /* Information about the current session */
@@ -17,7 +20,7 @@ struct citpop3 {              /* Information about the current session */
                                 * incremented by one.
                                 */
 
-#define POP3 ((struct citpop3 *)CtdlGetUserData(SYM_POP3))
+#define POP3 CC->POP3
 
 void pop3_cleanup_function(void);
 void pop3_greeting(void);
@@ -25,3 +28,5 @@ void pop3_user(char *argbuf);
 void pop3_pass(char *argbuf);
 void pop3_list(char *argbuf);
 void pop3_command_loop(void);
+void pop3_login(void);
+