comparison src/imap/ngx_imap_core_module.c @ 541:b09ee85d0ac8 release-0.1.45

nginx-0.1.45-RELEASE import *) 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 <igor@sysoev.ru>
date Thu, 08 Sep 2005 14:36:09 +0000
parents 371c1cee100d
children 511a89da35ad
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
112 ngx_module_t ngx_imap_core_module = { 112 ngx_module_t ngx_imap_core_module = {
113 NGX_MODULE_V1, 113 NGX_MODULE_V1,
114 &ngx_imap_core_module_ctx, /* module context */ 114 &ngx_imap_core_module_ctx, /* module context */
115 ngx_imap_core_commands, /* module directives */ 115 ngx_imap_core_commands, /* module directives */
116 NGX_IMAP_MODULE, /* module type */ 116 NGX_IMAP_MODULE, /* module type */
117 NULL, /* init master */
117 NULL, /* init module */ 118 NULL, /* init module */
118 NULL /* init process */ 119 NULL, /* init process */
120 NULL, /* init thread */
121 NULL, /* exit thread */
122 NULL, /* exit process */
123 NULL, /* exit master */
124 NGX_MODULE_V1_PADDING
119 }; 125 };
120 126
121 127
122 static void * 128 static void *
123 ngx_imap_core_create_main_conf(ngx_conf_t *cf) 129 ngx_imap_core_create_main_conf(ngx_conf_t *cf)