2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
/**
|
|
|
|
* Mail configuration options.
|
|
|
|
*
|
|
|
|
* Changes to these config files are not supported by BookStack and may break upon updates.
|
|
|
|
* Configuration should be altered via the `.env` file or environment variables.
|
|
|
|
* Do not edit this file unless you're happy to maintain any changes yourself.
|
|
|
|
*/
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
return [
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// Mail driver to use.
|
|
|
|
// Options: smtp, mail, sendmail, log
|
2015-07-12 15:01:42 -04:00
|
|
|
'driver' => env('MAIL_DRIVER', 'smtp'),
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// SMTP host address
|
2015-07-12 15:01:42 -04:00
|
|
|
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// SMTP host port
|
2015-07-12 15:01:42 -04:00
|
|
|
'port' => env('MAIL_PORT', 587),
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// Global "From" address & name
|
|
|
|
'from' => [
|
|
|
|
'address' => env('MAIL_FROM', 'mail@bookstackapp.com'),
|
2019-09-15 13:29:51 -04:00
|
|
|
'name' => env('MAIL_FROM_NAME', 'BookStack')
|
2018-12-23 11:26:39 -05:00
|
|
|
],
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// Email encryption protocol
|
2015-07-12 15:01:42 -04:00
|
|
|
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// SMTP server username
|
2015-07-12 15:01:42 -04:00
|
|
|
'username' => env('MAIL_USERNAME'),
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// SMTP server password
|
2015-07-12 15:01:42 -04:00
|
|
|
'password' => env('MAIL_PASSWORD'),
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// Sendmail application path
|
2015-07-12 15:01:42 -04:00
|
|
|
'sendmail' => '/usr/sbin/sendmail -bs',
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// Email markdown configuration
|
2018-12-16 15:44:57 -05:00
|
|
|
'markdown' => [
|
|
|
|
'theme' => 'default',
|
|
|
|
'paths' => [
|
|
|
|
resource_path('views/vendor/mail'),
|
|
|
|
],
|
|
|
|
],
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2019-09-06 18:36:16 -04:00
|
|
|
// Log Channel
|
|
|
|
// If you are using the "log" driver, you may specify the logging channel
|
|
|
|
// if you prefer to keep mail messages separate from other log entries
|
|
|
|
// for simpler reading. Otherwise, the default channel will be used.
|
|
|
|
'log_channel' => env('MAIL_LOG_CHANNEL'),
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
];
|