Indefero

Indefero Commit Details


Date:2009-01-14 14:52:59 (15 years 11 months ago)
Author:Loic d'Anterroches
Branch:dev, develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3
Commit:7f32c6f3775d575d68210b37edfa98eb351faf1d
Parents: 00f3b08ec68b1eb30d72710b6522e9ce895187e2
Message:Added details on how to use a SMTP server with SSL.

Changes:

File differences

INSTALL.mdtext
151151
152152
153153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
$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.

Archive Download the corresponding diff file

Page rendered in 0.06861s using 13 queries.