diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-08-22 22:25:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-22 22:25:21 +0800 |
commit | f0761eb7ec6e67cd081abb2ebf203d5307c5a86e (patch) | |
tree | 81df52667be7139e294d4fd9a69d22b06036651f /internal/conf/conf.go | |
parent | 05477f1d294dc43f36c4a3b3b9575a96aea66a67 (diff) |
conf: remove legacy options (#6267)
* conf: remove legacy options
* Update tests
Diffstat (limited to 'internal/conf/conf.go')
-rw-r--r-- | internal/conf/conf.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/internal/conf/conf.go b/internal/conf/conf.go index 99e9a325..fed5bca4 100644 --- a/internal/conf/conf.go +++ b/internal/conf/conf.go @@ -214,10 +214,6 @@ func Init(customConf string) error { if err = File.Section("email").MapTo(&Email); err != nil { return errors.Wrap(err, "mapping [email] section") } - // LEGACY [0.13]: In case there are values with old section name. - if err = File.Section("mailer").MapTo(&Email); err != nil { - return errors.Wrap(err, "mapping [mailer] section") - } if Email.Enabled { if Email.From == "" { @@ -238,10 +234,6 @@ func Init(customConf string) error { if err = File.Section("auth").MapTo(&Auth); err != nil { return errors.Wrap(err, "mapping [auth] section") } - // LEGACY [0.13]: In case there are values with old section name. - if err = File.Section("service").MapTo(&Auth); err != nil { - return errors.Wrap(err, "mapping [service] section") - } // ************************* // ----- User settings ----- |