Added a "valid" email address so certain tests go through.

This commit is contained in:
James Cole 2015-02-04 06:15:14 +01:00
parent 19c7e08c5d
commit 662fbed1d0

View File

@ -4,9 +4,9 @@ return [
'driver' => 'smtp', 'driver' => 'smtp',
'host' => 'smtp.gmail.com', 'host' => 'smtp.gmail.com',
'port' => 587, 'port' => 587,
'from' => ['address' => '@gmail.com', 'name' => 'Firefly III'], 'from' => ['address' => 'empty@example.com', 'name' => 'Firefly III'],
'encryption' => 'tls', 'encryption' => 'tls',
'username' => '@gmail.com', 'username' => 'empty@example.com',
'password' => '', 'password' => '',
'sendmail' => '/usr/sbin/sendmail -bs', 'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false, 'pretend' => false,