mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	See: https://chatgpt.com/share/68bb0b25-96bc-800f-8ff7-9ca8d7c7af11
		
			
				
	
	
		
			14 lines
		
	
	
		
			573 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			573 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| "smtpServer": {
 | |
|     "password": "{{ users['no-reply'].mailu_token }}",
 | |
|     "replyToDisplayName": "",
 | |
|     "starttls": "{{ SYSTEM_EMAIL.START_TLS | lower }}",
 | |
|     "auth": "true",
 | |
|     "port": "{{ SYSTEM_EMAIL.PORT }}",
 | |
|     "replyTo": "",
 | |
|     "host": "{{ SYSTEM_EMAIL.HOST }}",
 | |
|     "from": "{{ users['no-reply'].email }}",
 | |
|     "fromDisplayName": "Keycloak Authentication System - {{ KEYCLOAK_DOMAIN | upper }}",
 | |
|     "envelopeFrom": "",
 | |
|     "ssl": "{{ (SYSTEM_EMAIL.TLS and not SYSTEM_EMAIL.START_TLS) | ternary('true','false') }}",
 | |
|     "user": "{{ users['no-reply'].email }}"
 | |
| } |