diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-01-21 12:02:42 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-01-21 12:02:42 +0100 |
commit | 1f49b7b4a0fdeee4ebffc9f2f62cb00c12157ff7 (patch) | |
tree | e39f97a5e2d7500287224fea3c69d30017707b69 /docs/en | |
parent | 4be01c3928ad5bc9fc9ae5be611b3463e9bda570 (diff) | |
download | bugzilla-1f49b7b4a0fdeee4ebffc9f2f62cb00c12157ff7.tar.gz bugzilla-1f49b7b4a0fdeee4ebffc9f2f62cb00c12157ff7.tar.xz |
Bug 469068: SMTP parameters not documented
r/a=LpSolit
Diffstat (limited to 'docs/en')
-rw-r--r-- | docs/en/xml/administration.xml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/docs/en/xml/administration.xml b/docs/en/xml/administration.xml index a25ed555c..bdcdaeefb 100644 --- a/docs/en/xml/administration.xml +++ b/docs/en/xml/administration.xml @@ -775,6 +775,68 @@ <varlistentry> <term> + smtpserver + </term> + <listitem> + <para> + This is the SMTP server address, if the <quote>mail_delivery_method</quote> + parameter is set to SMTP. Use "localhost" if you have a local MTA + running, otherwise use a remote SMTP server. Append ":" and the port + number, if a non-default port is needed. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term> + smtp_username + </term> + <listitem> + <para> + Username to use for SASL authentication to the SMTP server. Leave + this parameter empty if your server does not require authentication. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term> + smtp_password + </term> + <listitem> + <para> + Password to use for SASL authentication to the SMTP server. This + parameter will be ignored if the <quote>smtp_username</quote> + parameter is left empty. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term> + smtp_ssl + </term> + <listitem> + <para> + Enable SSL support for connection to the SMTP server. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term> + smtp_debug + </term> + <listitem> + <para> + This parameter allows you to enable detailed debugging output. + Log messages are printed the web server's error log. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term> whinedays </term> <listitem> |