mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-02 20:15:24 +02:00
fix: Use reserved example.com as bogus instead of email.com domain. (#2551)
`email.com` is not a reserved domain, incorrect configuration could result in unintentional effects. `example.com` is reserved by IANA for bogus purposes, see RFC 6761.
This commit is contained in:
parent
a22d500603
commit
bb9afd86c1
14 changed files with 22 additions and 22 deletions
|
@ -4,7 +4,7 @@ from mealie.core.config import get_app_settings
|
|||
from mealie.services.email import EmailService
|
||||
from mealie.services.email.email_senders import ABCEmailSender
|
||||
|
||||
FAKE_ADDRESS = "my_secret_email@email.com"
|
||||
FAKE_ADDRESS = "my_secret_email@example.com"
|
||||
|
||||
SUBJECTS = {"Mealie Forgot Password", "Invitation to join Mealie", "Test Email"}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue