From 632fa6cf8e679284baa292fca429fd7e522d5cbb Mon Sep 17 00:00:00 2001 From: Asai Neko Date: Wed, 21 Jan 2026 09:03:12 +0800 Subject: [PATCH] Fix config types Signed-off-by: Asai Neko --- config.default.yaml | 1 - config/types.go | 1 - 2 files changed, 2 deletions(-) diff --git a/config.default.yaml b/config.default.yaml index d2dd9c9..b369747 100644 --- a/config.default.yaml +++ b/config.default.yaml @@ -24,7 +24,6 @@ email: port: username: password: - from: security: insecure_skip_verify: secrets: diff --git a/config/types.go b/config/types.go index c495347..3680e87 100644 --- a/config/types.go +++ b/config/types.go @@ -45,7 +45,6 @@ type email struct { Port string `yaml:"port"` Username string `yaml:"username"` Password string `yaml:"password"` - From string `yaml:"from"` Security string `yaml:"security"` InsecureSkipVerify bool `yaml:"insecure_skip_verify"` }