63 lines
1.3 KiB
Plaintext
63 lines
1.3 KiB
Plaintext
<?php return
|
|
[
|
|
|
|
'mail' =>
|
|
[
|
|
'driver' => 'smtp',
|
|
'smtp' =>
|
|
[
|
|
'host' => '',
|
|
'user' => '',
|
|
'password' => '',
|
|
'port' => 587,
|
|
'keepAlive' => false,
|
|
'timeout' => 10,
|
|
'encode' => 'tls',
|
|
'dsn' => false,
|
|
'auth' => true
|
|
],
|
|
'imap' =>
|
|
[
|
|
'host' => '',
|
|
'user' => '',
|
|
'password' => '',
|
|
'port' => 993,
|
|
'flags' => [],
|
|
'mailbox' => 'INBOX'
|
|
],
|
|
'general' =>
|
|
[
|
|
'senderMail' => '',
|
|
'senderName' => '',
|
|
]
|
|
],
|
|
|
|
'cache' =>
|
|
[
|
|
'driver' => 'file',
|
|
'file' =>
|
|
[
|
|
'encode' => false,
|
|
],
|
|
'redis' =>
|
|
[
|
|
'host' => '',
|
|
'password' => '',
|
|
'port' => 6379,
|
|
'timeout' => 60,
|
|
],
|
|
'memcache' =>
|
|
[
|
|
'host' => '',
|
|
'port' => 11211,
|
|
'weight' => 1,
|
|
],
|
|
'memcached' =>
|
|
[
|
|
'host' => '',
|
|
'port' => 11211,
|
|
'weight' => 1,
|
|
],
|
|
]
|
|
];
|