From f0761eb7ec6e67cd081abb2ebf203d5307c5a86e Mon Sep 17 00:00:00 2001 From: ᴜɴᴋɴᴡᴏɴ Date: Sat, 22 Aug 2020 22:25:21 +0800 Subject: conf: remove legacy options (#6267) * conf: remove legacy options * Update tests --- internal/conf/conf.go | 8 -------- 1 file changed, 8 deletions(-) (limited to 'internal/conf/conf.go') 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 ----- -- cgit v1.2.3