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
|
|
|
|
2023-06-24 06:27:18 -04:00
|
|
|
// Configured mail encryption method.
|
|
|
|
// STARTTLS should still be attempted, but tls/ssl forces TLS usage.
|
|
|
|
$mailEncryption = env('MAIL_ENCRYPTION', null);
|
|
|
|
|
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.
|
2021-10-26 17:04:18 -04:00
|
|
|
// From Laravel 7+ this is MAIL_MAILER in laravel.
|
|
|
|
// Kept as MAIL_DRIVER in BookStack to prevent breaking change.
|
2021-03-27 11:56:36 -04:00
|
|
|
// Options: smtp, sendmail, log, array
|
2023-02-06 11:58:29 -05:00
|
|
|
'default' => env('MAIL_DRIVER', 'smtp'),
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// Global "From" address & name
|
|
|
|
'from' => [
|
|
|
|
'address' => env('MAIL_FROM', 'mail@bookstackapp.com'),
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => env('MAIL_FROM_NAME', 'BookStack'),
|
2018-12-23 11:26:39 -05:00
|
|
|
],
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2023-02-06 11:58:29 -05:00
|
|
|
// Mailer Configurations
|
|
|
|
// Available mailing methods and their settings.
|
|
|
|
'mailers' => [
|
|
|
|
'smtp' => [
|
|
|
|
'transport' => 'smtp',
|
2023-06-24 06:27:18 -04:00
|
|
|
'scheme' => ($mailEncryption === 'tls' || $mailEncryption === 'ssl') ? 'smtps' : null,
|
2023-02-06 11:58:29 -05:00
|
|
|
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
|
|
|
|
'port' => env('MAIL_PORT', 587),
|
|
|
|
'username' => env('MAIL_USERNAME'),
|
|
|
|
'password' => env('MAIL_PASSWORD'),
|
2023-04-23 10:04:35 -04:00
|
|
|
'verify_peer' => env('MAIL_VERIFY_SSL', true),
|
2023-02-06 11:58:29 -05:00
|
|
|
'timeout' => null,
|
|
|
|
'local_domain' => env('MAIL_EHLO_DOMAIN'),
|
|
|
|
],
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2023-02-06 11:58:29 -05:00
|
|
|
'sendmail' => [
|
|
|
|
'transport' => 'sendmail',
|
2023-02-17 09:25:38 -05:00
|
|
|
'path' => env('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs'),
|
2023-02-06 11:58:29 -05:00
|
|
|
],
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2023-02-06 11:58:29 -05:00
|
|
|
'log' => [
|
|
|
|
'transport' => 'log',
|
|
|
|
'channel' => env('MAIL_LOG_CHANNEL'),
|
|
|
|
],
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2023-02-06 11:58:29 -05:00
|
|
|
'array' => [
|
|
|
|
'transport' => 'array',
|
|
|
|
],
|
|
|
|
|
|
|
|
'failover' => [
|
|
|
|
'transport' => 'failover',
|
|
|
|
'mailers' => [
|
|
|
|
'smtp',
|
|
|
|
'log',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2015-07-12 15:01:42 -04:00
|
|
|
|
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
|
|
|
];
|