mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 09:26:29 -06:00
14 lines
308 B
PHP
14 lines
308 B
PHP
<?php
|
|
|
|
return [
|
|
'driver' => 'smtp',
|
|
'host' => '',
|
|
'port' => 587,
|
|
'from' => ['address' => '', 'name' => 'Firefly III'],
|
|
'encryption' => 'tls',
|
|
'username' => '',
|
|
'password' => '',
|
|
'sendmail' => '/usr/sbin/sendmail -bs',
|
|
'pretend' => false,
|
|
];
|