comparison src/mail/ngx_mail_smtp_module.c @ 5989:ec01b1d1fff1

Mail: client SSL certificates support. The "ssl_verify_client", "ssl_verify_depth", "ssl_client_certificate", "ssl_trusted_certificate", and "ssl_crl" directives introduced to control SSL client certificate verification in mail proxy module. If there is a certificate, detail of the certificate are passed to the auth_http script configured via Auth-SSL-Verify, Auth-SSL-Subject, Auth-SSL-Issuer, Auth-SSL-Serial, Auth-SSL-Fingerprint headers. If the auth_http_pass_client_cert directive is set, client certificate in PEM format will be passed in the Auth-SSL-Cert header (urlencoded). If there is no required certificate provided during an SSL handshake or certificate verification fails then a protocol-specific error is returned after the SSL handshake and the connection is closed. Based on previous work by Sven Peter, Franck Levionnois and Filipe Da Silva.
author Maxim Dounin <mdounin@mdounin.ru>
date Wed, 25 Feb 2015 17:48:05 +0300
parents baa705805138
children bcb107bb89cd
comparison
equal deleted inserted replaced
5988:3b3f789655dc 5989:ec01b1d1fff1
43 ngx_mail_smtp_init_session, 43 ngx_mail_smtp_init_session,
44 ngx_mail_smtp_init_protocol, 44 ngx_mail_smtp_init_protocol,
45 ngx_mail_smtp_parse_command, 45 ngx_mail_smtp_parse_command,
46 ngx_mail_smtp_auth_state, 46 ngx_mail_smtp_auth_state,
47 47
48 ngx_string("451 4.3.2 Internal server error" CRLF) 48 ngx_string("451 4.3.2 Internal server error" CRLF),
49 ngx_string("421 4.7.1 SSL certificate error" CRLF),
50 ngx_string("421 4.7.1 No required SSL certificate" CRLF)
49 }; 51 };
50 52
51 53
52 static ngx_command_t ngx_mail_smtp_commands[] = { 54 static ngx_command_t ngx_mail_smtp_commands[] = {
53 55