comparison src/imap/ngx_imap.c @ 90:71c46860eb55 NGINX_0_1_45

nginx 0.1.45 *) Change: the "ssl_engine" directive was canceled in the ngx_http_ssl_module and now is introduced at global level. *) Bugfix: the responses with SSI subrequests did not transferred via SSL connection. *) Various bug fixes in the IMAP/POP3 proxy.
author Igor Sysoev <http://sysoev.ru>
date Thu, 08 Sep 2005 00:00:00 +0400
parents da9a3b14312d
children df17fbafec8f
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
39 ngx_module_t ngx_imap_module = { 39 ngx_module_t ngx_imap_module = {
40 NGX_MODULE_V1, 40 NGX_MODULE_V1,
41 &ngx_imap_module_ctx, /* module context */ 41 &ngx_imap_module_ctx, /* module context */
42 ngx_imap_commands, /* module directives */ 42 ngx_imap_commands, /* module directives */
43 NGX_CORE_MODULE, /* module type */ 43 NGX_CORE_MODULE, /* module type */
44 NULL, /* init master */
44 NULL, /* init module */ 45 NULL, /* init module */
45 NULL /* init process */ 46 NULL, /* init process */
47 NULL, /* init thread */
48 NULL, /* exit thread */
49 NULL, /* exit process */
50 NULL, /* exit master */
51 NGX_MODULE_V1_PADDING
46 }; 52 };
47 53
48 54
49 static char * 55 static char *
50 ngx_imap_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) 56 ngx_imap_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)