1<?php
2
3$lang['smtp_host'] = 'Your outgoing SMTP server.';
4$lang['smtp_port'] = 'The port your SMTP server listens on. Usually 25. 465 for SSL.';
5$lang['smtp_ssl']  = 'What kind of encryption is used when communicating with your SMTP Server?'; // off, ssl, tls
6
7$lang['smtp_ssl_o_']      = 'none';
8$lang['smtp_ssl_o_ssl']   = 'SSL';
9$lang['smtp_ssl_o_tls']   = 'TLS';
10
11$lang['auth_user'] = 'If authentication is required, put your user name here.';
12$lang['auth_pass'] = 'Password for the above user.';
13
14$lang['localdomain'] = 'The name to be used during HELO phase of SMTP. Should be the FQDN of the webserver DokuWiki is running on. Leave empty for autodetection.';
15
16$lang['debug'] = 'Print a full error log when sending fails? Disable when everything works!';
17