mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	web-app-bookwyrm, web-app-confluence:
- Fix BookWyrm email SSL/TLS handling (use ternary without 'not' for clarity) - Add truststore_enabled flag in Confluence config and vars - Wire JVM_SUPPORT_RECOMMENDED_ARGS to disable UPM signature check if truststore is disabled - Add placeholder style.css.j2 for Confluence See conversation: https://chatgpt.com/share/68b80024-7100-800f-a2fe-ba8b9f5cec05
This commit is contained in:
		| @@ -59,5 +59,5 @@ EMAIL_HOST_USER:                "{{ users['no-reply'].email }}" | ||||
| EMAIL_HOST_PASSWORD:            "{{ users['no-reply'].mailu_token }}" | ||||
| # TLS/SSL: If TLS is true → TLS; else → SSL | ||||
| EMAIL_USE_TLS:                  "{{ SYSTEM_EMAIL.TLS | ternary('true','false') }}" | ||||
| EMAIL_USE_SSL:                  "{{ not SYSTEM_EMAIL.TLS | ternary('true','false') }}" | ||||
| EMAIL_USE_SSL:                  "{{ SYSTEM_EMAIL.TLS | ternary('false','true') }}" | ||||
| EMAIL_DEFAULT_FROM:             "BookWyrm <{{ users['no-reply'].email }}>" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user