feat: add debug logging for SMTP configuration and detailed mail delivery status
Build and Push Multi-Platform Images / build-and-push (push) Failing after 34s

This commit is contained in:
2026-05-06 19:48:29 +02:00
parent 443ab765c9
commit a000e0f5c6
16 changed files with 431 additions and 5 deletions
@@ -0,0 +1,28 @@
import { Entity, PrimaryColumn, Column } from 'typeorm';
@Entity('user_settings')
export class UserSettings {
@PrimaryColumn({ type: 'varchar', length: 255 })
UserId!: string;
@Column({ type: 'varchar', length: 255, nullable: true })
SmtpHost!: string | null;
@Column({ type: 'int', nullable: true })
SmtpPort!: number | null;
@Column({ type: 'boolean', default: false })
SmtpSecure!: boolean;
@Column({ type: 'varchar', length: 255, nullable: true })
SmtpUser!: string | null;
@Column({ type: 'varchar', length: 255, nullable: true })
SmtpPass!: string | null;
@Column({ type: 'varchar', length: 255, nullable: true })
SmtpFrom!: string | null;
@Column({ type: 'text', nullable: true })
MailSignatureHtml!: string | null;
}