mirror of
https://github.com/nginx/nginx.git
synced 2024-12-20 06:03:31 -06:00
Mail: added Auth-SSL header to indicate SSL.
Based on a patch by Filipe da Silva.
This commit is contained in:
parent
52c5ba0f37
commit
78e1a8ed7f
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user