2004-09-07 11:29:22 -04:00
|
|
|
#ifndef _NGX_IMAP_H_INCLUDED_
|
|
|
|
#define _NGX_IMAP_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
2004-09-09 11:40:48 -04:00
|
|
|
#include <ngx_event.h>
|
|
|
|
#include <ngx_event_connect.h>
|
2004-09-07 11:29:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2004-09-09 11:40:48 -04:00
|
|
|
ngx_peer_connection_t upstream;
|
2004-09-08 01:18:51 -04:00
|
|
|
|
2004-09-09 11:40:48 -04:00
|
|
|
ngx_buf_t *buffer;
|
2004-09-08 01:18:51 -04:00
|
|
|
} ngx_imap_proxy_ctx_t;
|
|
|
|
|
|
|
|
|
2004-09-10 10:32:02 -04:00
|
|
|
typedef enum {
|
|
|
|
ngx_pop3_start = 0,
|
|
|
|
ngx_pop3_user
|
|
|
|
} ngx_imap_state_e;
|
|
|
|
|
|
|
|
|
2004-09-08 01:18:51 -04:00
|
|
|
typedef struct {
|
2004-09-09 11:40:48 -04:00
|
|
|
uint32_t signature; /* "IMAP" */
|
2004-09-08 01:18:51 -04:00
|
|
|
|
2004-09-09 11:40:48 -04:00
|
|
|
ngx_connection_t *connection;
|
|
|
|
ngx_buf_t *buffer;
|
|
|
|
|
2004-09-10 10:32:02 -04:00
|
|
|
ngx_imap_state_e imap_state;
|
|
|
|
|
2004-09-09 11:40:48 -04:00
|
|
|
ngx_imap_proxy_ctx_t *proxy;
|
|
|
|
|
2004-09-11 16:22:11 -04:00
|
|
|
ngx_str_t login;
|
|
|
|
ngx_str_t passwd;
|
|
|
|
|
2004-09-09 11:40:48 -04:00
|
|
|
ngx_uint_t command;
|
|
|
|
ngx_array_t args;
|
|
|
|
|
|
|
|
/* used to parse IMAP/POP3 command */
|
|
|
|
|
|
|
|
ngx_uint_t state;
|
|
|
|
u_char *arg_start;
|
|
|
|
u_char *arg_end;
|
2004-09-08 01:18:51 -04:00
|
|
|
} ngx_imap_session_t;
|
|
|
|
|
|
|
|
|
2004-09-09 11:40:48 -04:00
|
|
|
#define NGX_POP3_USER 1
|
|
|
|
#define NGX_POP3_PASS 2
|
|
|
|
#define NGX_POP3_APOP 3
|
|
|
|
#define NGX_POP3_STAT 4
|
|
|
|
#define NGX_POP3_LIST 5
|
|
|
|
#define NGX_POP3_RETR 6
|
|
|
|
#define NGX_POP3_DELE 7
|
|
|
|
#define NGX_POP3_NOOP 8
|
|
|
|
#define NGX_POP3_RSET 9
|
|
|
|
#define NGX_POP3_TOP 10
|
|
|
|
#define NGX_POP3_UIDL 11
|
|
|
|
#define NGX_POP3_QUIT 12
|
|
|
|
|
|
|
|
|
|
|
|
#define NGX_IMAP_PARSE_INVALID_COMMAND 10
|
|
|
|
|
|
|
|
|
|
|
|
#define NGX_IMAP_PROXY_INVALID 10
|
|
|
|
#define NGX_IMAP_PROXY_ERROR 11
|
2004-09-07 11:29:22 -04:00
|
|
|
|
|
|
|
|
2004-09-13 12:18:09 -04:00
|
|
|
#define NGX_IMAP_MODULE 0x50414D49 /* "IMAP" */
|
|
|
|
|
|
|
|
#define NGX_IMAP_CONF 0x02000000
|
|
|
|
|
|
|
|
|
2004-09-07 11:29:22 -04:00
|
|
|
void ngx_imap_init_connection(ngx_connection_t *c);
|
|
|
|
void ngx_imap_close_connection(ngx_connection_t *c);
|
|
|
|
|
2004-09-09 11:40:48 -04:00
|
|
|
void ngx_imap_proxy_init(ngx_imap_session_t *s);
|
|
|
|
|
|
|
|
ngx_int_t ngx_pop3_parse_command(ngx_imap_session_t *s);
|
|
|
|
|
2004-09-07 11:29:22 -04:00
|
|
|
|
|
|
|
#endif /* _NGX_IMAP_H_INCLUDED_ */
|