mirror of
https://github.com/YunoHost-Apps/firefly-iii_ynh.git
synced 2024-09-03 18:36:13 +02:00
Use sendmail
to send mail.
There seems to be a problem in interop between Laravel's mail system and default ynh conf that allows unauthenticated SMTP usage. Using `sendmail` gets around this problem.
This commit is contained in:
parent
13cb4300e4
commit
6e1dd93ddc
1 changed files with 2 additions and 2 deletions
|
@ -117,7 +117,7 @@ COOKIE_SECURE=false
|
|||
# If you want Firefly III to mail you, update these settings
|
||||
# For instructions, see: https://docs.firefly-iii.org/advanced-installation/email
|
||||
# If you use Docker or similar, you can set these variables from a file by appending them with _FILE
|
||||
MAIL_MAILER=smtp
|
||||
MAIL_MAILER=sendmail
|
||||
MAIL_HOST=127.0.0.1
|
||||
MAIL_PORT=25
|
||||
MAIL_FROM=__EMAIL__
|
||||
|
@ -326,4 +326,4 @@ FIREFLY_III_LAYOUT=v1
|
|||
#
|
||||
# If you're stuck I understand you get desperate but look SOMEWHERE ELSE.
|
||||
#
|
||||
APP_URL=http://__DOMAIN____PATH__
|
||||
APP_URL=http://__DOMAIN____PATH__
|
||||
|
|
Loading…
Reference in a new issue