feat: implement AES-256-GCM encryption for SMTP passwords with environment-based key support
Build and Push Multi-Platform Images / build-and-push (push) Successful in 27s

This commit is contained in:
2026-05-06 20:10:20 +02:00
parent 609e4beab2
commit 8212f733ab
3 changed files with 46 additions and 5 deletions
@@ -17,7 +17,7 @@ export class UserSettings {
@Column({ type: 'varchar', length: 255, nullable: true })
SmtpUser!: string | null;
@Column({ type: 'varchar', length: 255, nullable: true })
@Column({ type: 'varchar', length: 512, nullable: true })
SmtpPass!: string | null;
@Column({ type: 'varchar', length: 255, nullable: true })