]> git.mxchange.org Git - friendica-addons.git/blob - phpmailer/config/phpmailer.config.php
Array instead of a string
[friendica-addons.git] / phpmailer / config / phpmailer.config.php
1 <?php
2
3 // Warning: Don't change this file! It only holds the default config values for this addon.
4 // Instead overwrite these config values in config/addon.config.php in your Friendica directory
5
6 return [
7         'phpmailer' => [
8                 // smtp (Boolean)
9                 // Enables SMTP relaying for outbound emails
10                 'smtp' => false,
11
12                 // smtp_server (String)
13                 // SMTP server host name
14                 'smtp_server' => 'smtp.example.com',
15
16                 // smtp_port (Integer)
17                 // SMTP server port number
18                 'smtp_port' => 25,
19
20                 // smtp_secure (String)
21                 // What kind of encryption to use on the SMTP connection.
22                 // Options: '', 'ssl' or 'tls'.
23                 'smtp_secure' => '',
24
25                 // smtp_port_s (Integer)
26                 // Secure SMTP server port number
27                 'smtp_port_s' => 465,
28
29                 // smtp_username (String)
30                 // SMTP server authentication user name
31                 // Empty string disables authentication
32                 'smtp_username' => '',
33
34                 // smtp_password (String)
35                 // SMTP server authentication password
36                 // Empty string disables authentication
37                 'smtp_password' => '',
38
39                 // smtp_from (String)
40                 // From address used when using the SMTP server
41                 // Example: no-reply@example.com
42                 'smtp_from' => '',
43         ],
44 ];