Proxy#
Directives#
proxy_buffer#
Sets the size of the buffer used for proxying. By default, the buffer size is equal to one memory page. Depending on a platform, it is either 4K or 8K.
proxy_pass_error_message#
Indicates whether to pass the error message obtained during the authentication on the backend to the client.
Usually, if the authentication in Angie is a success, the backend cannot return an error. If it nevertheless returns an error, it means some internal error has occurred. In such case the backend message can contain information that should not be shown to the client. However, responding with an error for the correct password is a normal behavior for some POP3 servers. The directive should be enabled in this case.
proxy_protocol#
Enables the PROXY protocol for connections to a backend.
proxy_smtp_auth#
Enables or disables user authentication on the SMTP backend using the AUTH command.
If XCLIENT is also enabled, then the XCLIENT command will not send the LOGIN parameter.
proxy_timeout#
Sets the timeout between two successive read or write operations on client or proxied server connections. If no data is transmitted within this time, the connection is closed.
xclient#
Enables or disables the passing of the XCLIENT command with client parameters when connecting to the SMTP backend.
With XCLIENT
, the MTA is able to write client information to the log and
apply various limitations based on this data.
If XCLIENT
is enabled then Angie passes the following commands when
connecting to the backend:
EHLO
with the server nameXCLIENT
EHLO
orHELO
, as passed by the client
If the name found by the client IP address points to the
same address, it is passed in the NAME
parameter of the XCLIENT
command. If the name could not be found, points to a different address, or
resolver is not specified, then [UNAVAILABLE]
is
passed in the NAME
parameter. If an error has occurred in the process of
resolving, the [TEMPUNAVAIL]
value is used.
If XCLIENT
is disabled, Angie passes the EHLO
command with the
server name when connecting to the backend if the client
has passed EHLO
, or HELO
with the server name, otherwise.