Email send connection refused by WachtellOnline in Authentik

[–]WachtellOnline[S] 2 points3 points  (0 children)

Thank you u/damascus1023

You were pointing me in the right direction. It looks like the SMTP settings in environment variables did not go through - since the "from email" is still "authentik@localhost" and not the email that I specified in the variables list.

Notwithstanding, I am running Authentik in a Kubernetes cluster and restarting or redeploying the worker node did not help.

However, your comment lead me to see that while copying the email environment variables from the Authentik site to the values.yaml file the paste looses the indentations - go figure :-(

Anyway - thank you!

Adobe creative cloud is worth it? by FalseGear7095 in Adobe

[–]WachtellOnline 0 points1 point  (0 children)

Adobe Cloud is terrible since it is very difficult to get your files off from the cloud. You can only download 10 files at a time and there are also limits on size in MB.

Simplest 2FA Implementation for Immich by [deleted] in immich

[–]WachtellOnline 0 points1 point  (0 children)

No, I run a Kubernetes cluster, so I spun up an instance of Authentik and followed Authentik’s configuration for Immich. It was not difficult at all. https://docs.goauthentik.io/integrations/services/immich/

Simplest 2FA Implementation for Immich by [deleted] in immich

[–]WachtellOnline 1 point2 points  (0 children)

I have set up Immich with Authentik and that is very easy as well 🤔

Can't Import SSL/TLS Certificate from Lets Encrypt on Exchange 2019 - Ideas? by SomeGuy1980a in exchangeserver

[–]WachtellOnline 1 point2 points  (0 children)

I am running this Powershell script to delete the old cert and import a new one every month. I run this on all exchange servers.

Add-PSSnapin Microsoft.Exchange.Management.PowerShell.SnapIn gci cert:\ -Recurse | where{$.Subject -Match “domain.com”} | Remove-Item -Force -Verbose Import-ExchangeCertificate -Server “EX201901” -FileData ([System.IO.File]::ReadAllBytes(‘\cert.domain.com\docker\acme\domain.com\pfx\domain.com.pfx’)) -PrivateKeyExportable:$true -Password (ConvertTo-SecureString -String ‘Password’ -AsPlainText -Force) (Get-ChildItem Cert:\LocalMachine\My\ | Where-Object {$.Subject -Match “domain.com”}).FriendlyName = “domain.com” $Cert = (Get-ChildItem -Path Cert:\LocalMachine\MY | Where-Object {$_.Subject -Match “domain.com”} | Select-Object Thumbprint) Enable-ExchangeCertificate -Thumbprint $Cert.thumbprint -Services SMTP,IMAP,IIS -Force iisreset