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_8']      = 'none';
8$lang['smtp_ssl_o_4']   = 'SSL';
9$lang['smtp_ssl_o_2']   = '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$lang['pop3_host'] = 'If your server uses POP-before-SMTP for authentication, give your POP3 credentials above and put your POP3 server here. For usual SMTP auth leave this field empty.';
14
15$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.';
16
17$lang['debug'] = 'Print a full error log when sending fails? Disable when everything works!';
18