2021-07-24 10:16:34 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-07-24 10:16:34 +00:00
|
|
|
|
|
|
|
package smtp
|
|
|
|
|
|
|
|
import (
|
2022-01-02 13:12:35 +00:00
|
|
|
"code.gitea.io/gitea/models/auth"
|
2021-07-24 16:03:58 +00:00
|
|
|
"code.gitea.io/gitea/modules/json"
|
2021-07-24 10:16:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// _________ __________________________
|
|
|
|
// / _____/ / \__ ___/\______ \
|
|
|
|
// \_____ \ / \ / \| | | ___/
|
|
|
|
// / \/ Y \ | | |
|
|
|
|
// /_______ /\____|__ /____| |____|
|
|
|
|
// \/ \/
|
|
|
|
|
|
|
|
// Source holds configuration for the SMTP login source.
|
|
|
|
type Source struct {
|
|
|
|
Auth string
|
2022-11-10 21:12:23 +00:00
|
|
|
Host string
|
2021-07-24 10:16:34 +00:00
|
|
|
Port int
|
|
|
|
AllowedDomains string `xorm:"TEXT"`
|
2021-08-11 20:42:58 +00:00
|
|
|
ForceSMTPS bool
|
2021-07-24 10:16:34 +00:00
|
|
|
SkipVerify bool
|
2021-08-11 20:42:58 +00:00
|
|
|
HeloHostname string
|
|
|
|
DisableHelo bool
|
2021-09-27 01:02:01 +00:00
|
|
|
SkipLocalTwoFA bool `json:",omitempty"`
|
2021-07-24 10:16:34 +00:00
|
|
|
|
2022-01-02 13:12:35 +00:00
|
|
|
// reference to the authSource
|
|
|
|
authSource *auth.Source
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up an SMTPConfig from serialized format.
|
|
|
|
func (source *Source) FromDB(bs []byte) error {
|
2021-12-10 01:27:50 +00:00
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &source)
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports an SMTPConfig to a serialized format.
|
|
|
|
func (source *Source) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(source)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsSkipVerify returns if SkipVerify is set
|
|
|
|
func (source *Source) IsSkipVerify() bool {
|
|
|
|
return source.SkipVerify
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasTLS returns true for SMTP
|
|
|
|
func (source *Source) HasTLS() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// UseTLS returns if TLS is set
|
|
|
|
func (source *Source) UseTLS() bool {
|
2021-08-11 20:42:58 +00:00
|
|
|
return source.ForceSMTPS || source.Port == 465
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
|
|
|
|
2022-01-02 13:12:35 +00:00
|
|
|
// SetAuthSource sets the related AuthSource
|
|
|
|
func (source *Source) SetAuthSource(authSource *auth.Source) {
|
|
|
|
source.authSource = authSource
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2022-01-02 13:12:35 +00:00
|
|
|
auth.RegisterTypeConfig(auth.SMTP, &Source{})
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|