From: Lukas Tribus Date: Sun, 26 Mar 2017 12:55:35 +0000 (+0000) Subject: MINOR: doc: fix use-server example (imap vs mail) X-Git-Tag: v1.8-dev1~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=98a3e3f998e2803c368a9431a39cf957781f4657;p=thirdparty%2Fhaproxy.git MINOR: doc: fix use-server example (imap vs mail) Another minor doc issue in the use-server example, use-server refers to server "imap", but the server below is actually called "mail". Renames the server from "mail" to "imap". --- diff --git a/doc/configuration.txt b/doc/configuration.txt index 3a02840cee..09aaf1d0ca 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -10069,7 +10069,7 @@ use-server unless use-server mail if { req_ssl_sni -i mail.example.com } server mail 192.168.0.1:587 weight 0 use-server imap if { req_ssl_sni -i imap.example.com } - server mail 192.168.0.1:993 weight 0 + server imap 192.168.0.1:993 weight 0 # all the rest is forwarded to this server server default 192.168.0.2:443 check