mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	* Changes Settings to use new SMTP_AUTH_STRATEGY variable in place of SMTP_TLS with transition support #1187 * Wires up default email client to use ssl or tls authentication if enabled in settings * Updates the docs * Update template file * remove SMTP_TLS and use staticmethod for validate * consolidate test cases with params Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
		
			
				
	
	
		
			42 lines
		
	
	
		
			1004 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1004 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # The Default Group Assigned to All Users
 | |
| DEFAULT_GROUP=Home
 | |
| 
 | |
| # The Default Credentials for the Super User
 | |
| DEFAULT_EMAIL=changeme@email.com
 | |
| DEFAULT_PASSWORD=MyPassword
 | |
| 
 | |
| # Determines Production Mode, This will set the directory path to use for data storage
 | |
| PRODUCTION=False
 | |
| 
 | |
| # API Port for Python Server
 | |
| API_PORT=9000
 | |
| 
 | |
| # Exposes /docs and /redoc on the server
 | |
| API_DOCS=True
 | |
| 
 | |
| # Sets the Database type to use. Note that in order for Postgres URI to be created, you must set DB_ENGINE=postgres
 | |
| DB_ENGINE=sqlite # Optional: 'sqlite', 'postgres'
 | |
| POSTGRES_USER=mealie
 | |
| POSTGRES_PASSWORD=mealie
 | |
| POSTGRES_SERVER=postgres
 | |
| POSTGRES_PORT=5432
 | |
| POSTGRES_DB=mealie
 | |
| TOKEN_TIME=24
 | |
| 
 | |
| LANG=en-US
 | |
| 
 | |
| # NOT USED
 | |
| # SMTP_HOST=""
 | |
| # SMTP_PORT=""
 | |
| # SMTP_FROM_NAME=""
 | |
| # SMTP_AUTH_STRATEGY="" # Options: 'TLS', 'SSL', 'NONE'
 | |
| # SMTP_FROM_EMAIL=""
 | |
| # SMTP_USER=""
 | |
| # SMTP_PASSWORD=""
 | |
| 
 | |
| # Configuration for authentication via an external LDAP server
 | |
| LDAP_AUTH_ENABLED=False
 | |
| LDAP_SERVER_URL=None
 | |
| LDAP_BIND_TEMPLATE=None
 | |
| LDAP_ADMIN_FILTER=None
 |