mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Fixed #7099 - set email to null by default for backup notifications
This commit is contained in:
parent
b07a254e60
commit
37f950ab42
|
@ -43,6 +43,7 @@ MAIL_FROM_ADDR=you@example.com
|
||||||
MAIL_FROM_NAME='Snipe-IT'
|
MAIL_FROM_NAME='Snipe-IT'
|
||||||
MAIL_REPLYTO_ADDR=you@example.com
|
MAIL_REPLYTO_ADDR=you@example.com
|
||||||
MAIL_REPLYTO_NAME='Snipe-IT'
|
MAIL_REPLYTO_NAME='Snipe-IT'
|
||||||
|
MAIL_BACKUP_NOTIFICATION_ADDRESS=you@example.com
|
||||||
|
|
||||||
# --------------------------------------------
|
# --------------------------------------------
|
||||||
# REQUIRED: IMAGE LIBRARY
|
# REQUIRED: IMAGE LIBRARY
|
||||||
|
|
|
@ -132,7 +132,7 @@ return [
|
||||||
'notifiable' => \Spatie\Backup\Notifications\Notifiable::class,
|
'notifiable' => \Spatie\Backup\Notifications\Notifiable::class,
|
||||||
|
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'to' => 'your@example.com',
|
'to' => env('MAIL_BACKUP_NOTIFICATION_ADDRESS', null),
|
||||||
],
|
],
|
||||||
|
|
||||||
'slack' => [
|
'slack' => [
|
||||||
|
|
Loading…
Reference in a new issue