Added details on how to use a SMTP server with SSL.

dev
Loic d'Anterroches 2009-01-14 21:52:59 +01:00
parent 00f3b08ec6
commit 7f32c6f377
1 changed files with 15 additions and 0 deletions

View File

@ -151,3 +151,18 @@ this in your configuration file:
$cfg['idf_mimetypes_db'] = '/home/mime.types';
## Using a SMTP server with authentication
If your SMTP server requires authentication, for example,
*smtp.gmail.com*, you can use the following email configuration:
$cfg['send_emails'] = true;
$cfg['mail_backend'] = 'smtp';
$cfg['mail_auth'] = true;
$cfg['mail_host'] = 'ssl://smtp.gmail.com';
$cfg['mail_port'] = 465;
$cfg['mail_username'] = 'YOURGMAILADDRESS';
$cfg['mail_password'] = 'YOURPASSWORD';
Check with your provider to get the right settings.