Merge pull request #556 from pcoder/feature/use_email_smarthost
Obtain email host, port and tls settings from env
This commit is contained in:
		
				commit
				
					
						e85993eabf
					
				
			
		
					 1 changed files with 6 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -63,8 +63,12 @@ LOGIN_URL = None
 | 
			
		|||
LOGOUT_URL = None
 | 
			
		||||
LOGIN_REDIRECT_URL = None
 | 
			
		||||
 | 
			
		||||
EMAIL_HOST = env("EMAIL_HOST")
 | 
			
		||||
if not EMAIL_HOST:
 | 
			
		||||
    EMAIL_HOST = "localhost"
 | 
			
		||||
EMAIL_PORT = 25
 | 
			
		||||
EMAIL_PORT = int_env("EMAIL_PORT", 25)
 | 
			
		||||
EMAIL_USE_TLS = bool_env("EMAIL_USE_TLS")
 | 
			
		||||
 | 
			
		||||
SECRET_KEY = env('DJANGO_SECRET_KEY')
 | 
			
		||||
 | 
			
		||||
# Application definition
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue