Mail: added Auth-SSL header to indicate SSL.

Based on a patch by Filipe da Silva.
This commit is contained in:
Maxim Dounin 2015-02-25 17:47:49 +03:00
parent 52c5ba0f37
commit 78e1a8ed7f

View File

@ -1173,6 +1173,9 @@ ngx_mail_auth_http_create_request(ngx_mail_session_t *s, ngx_pool_t *pool,
+ sizeof("Auth-SMTP-Helo: ") - 1 + s->smtp_helo.len + sizeof(CRLF) - 1
+ sizeof("Auth-SMTP-From: ") - 1 + s->smtp_from.len + sizeof(CRLF) - 1
+ sizeof("Auth-SMTP-To: ") - 1 + s->smtp_to.len + sizeof(CRLF) - 1
#if (NGX_MAIL_SSL)
+ sizeof("Auth-SSL: on" CRLF) - 1
#endif
+ ahcf->header.len
+ sizeof(CRLF) - 1;
@ -1255,6 +1258,15 @@ ngx_mail_auth_http_create_request(ngx_mail_session_t *s, ngx_pool_t *pool,
}
#if (NGX_MAIL_SSL)
if (s->connection->ssl) {
b->last = ngx_cpymem(b->last, "Auth-SSL: on" CRLF,
sizeof("Auth-SSL: on" CRLF) - 1);
}
#endif
if (ahcf->header.len) {
b->last = ngx_copy(b->last, ahcf->header.data, ahcf->header.len);
}