docs: update README to reflect changes in features and environment variables; add Authentik integration details

This commit is contained in:
Christian Krakau-Louis
2025-03-28 15:11:45 +01:00
parent 387e07d025
commit 828c921a9d
3 changed files with 41 additions and 31 deletions
+6
View File
@@ -31,6 +31,12 @@ class Settings(BaseSettings):
azure_endpoint: str
gotenberg_url: str
# Authentik
authentik_client_id: Optional[str] = None
authentik_client_secret: Optional[str] = None
authentik_config_url: Optional[str] = None
auth_enabled: bool = True # Default to enabled
# IMAP 1
imap1_host: Optional[str] = None
imap1_port: Optional[int] = 993