mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
fix(server): smtp certificate validation (#9506)
This commit is contained in:
parent
efb844c6cd
commit
581b467b4b
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ export class NotificationRepository implements INotificationRepository {
|
|||
return createTransport({
|
||||
host: options.host,
|
||||
port: options.port,
|
||||
tls: { rejectUnauthorized: options.ignoreCert },
|
||||
tls: { rejectUnauthorized: !options.ignoreCert },
|
||||
auth:
|
||||
options.username || options.password
|
||||
? {
|
||||
|
|
Loading…
Reference in a new issue