diff options
author | Raphael <mail@raphaelkabo.com> | 2025-04-23 10:44:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-23 10:44:47 +0100 |
commit | ebe7a6182fe84ac0ed49b75e40e60b54d414fe36 (patch) | |
tree | 231fe85c024a33ab735bfce1eb786e9e074c59b9 /src/lib/config.ts | |
parent | fc78f8eb7723db727484d83016c7a633a03dbacb (diff) | |
parent | 2520ba69933e17f6ef7f8cc11f803de3e66b179f (diff) |
Merge pull request #200 from halkeye/allow-nodemailer-url
Allow url with config information for nodemailer
Diffstat (limited to 'src/lib/config.ts')
-rw-r--r-- | src/lib/config.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/config.ts b/src/lib/config.ts index e8b774a..003a714 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -28,6 +28,7 @@ export interface GathioConfig { mongodb_url: string; }; nodemailer?: { + smtp_url?: string; smtp_server: string; smtp_port: string; smtp_username: string; |