1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-02 12:05:21 +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:
Flightkick 2023-09-23 15:56:34 +00:00 committed by GitHub
parent a22d500603
commit bb9afd86c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 22 additions and 22 deletions

View file

@ -33,7 +33,7 @@ function import_from_file () {
}
input="list"
mail="changeme@email.com"
mail="changeme@example.com"
password="MyPassword"
mealie_url=http://localhost:9000
@ -85,7 +85,7 @@ def import_from_file(input_file, token, mealie_url):
print(response.text)
input_file="list"
mail="changeme@email.com"
mail="changeme@example.com"
password="MyPassword"
mealie_url="http://localhost:9000"

View file

@ -9,7 +9,7 @@
| PUID | 911 | UserID permissions between host OS and container |
| PGID | 911 | GroupID permissions between host OS and container |
| DEFAULT_GROUP | Home | The default group for users |
| DEFAULT_EMAIL | changeme@email.com | The default username for the superuser |
| DEFAULT_EMAIL | changeme@example.com | The default username for the superuser |
| BASE_URL | http://localhost:8080 | Used for Notifications |
| TOKEN_TIME | 48 | The time in hours that a login/auth token is valid |
| API_PORT | 9000 | The port exposed by backend API. **Do not change this if you're running in Docker** |

View file

@ -69,7 +69,7 @@ You should see the containers start up without error. You should now be able to
!!! tip "Default Credentials"
**Username:** changeme@email.com
**Username:** changeme@example.com
**Password:** MyPassword

File diff suppressed because one or more lines are too long