c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
64 lines
1.6 KiB
Go
64 lines
1.6 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package setting
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"net/mail"
|
|
"strings"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/log"
|
|
)
|
|
|
|
const IncomingEmailTokenPlaceholder = "%{token}"
|
|
|
|
var IncomingEmail = struct {
|
|
Enabled bool
|
|
ReplyToAddress string
|
|
Host string
|
|
Port int
|
|
UseTLS bool `ini:"USE_TLS"`
|
|
SkipTLSVerify bool `ini:"SKIP_TLS_VERIFY"`
|
|
Username string
|
|
Password string
|
|
Mailbox string
|
|
DeleteHandledMessage bool
|
|
MaximumMessageSize uint32
|
|
}{
|
|
Mailbox: "INBOX",
|
|
DeleteHandledMessage: true,
|
|
MaximumMessageSize: 10485760,
|
|
}
|
|
|
|
func loadIncomingEmailFrom(rootCfg ConfigProvider) {
|
|
mustMapSetting(rootCfg, "email.incoming", &IncomingEmail)
|
|
|
|
if !IncomingEmail.Enabled {
|
|
return
|
|
}
|
|
|
|
if err := checkReplyToAddress(); err != nil {
|
|
log.Fatal("Invalid incoming_mail.REPLY_TO_ADDRESS (%s): %v", IncomingEmail.ReplyToAddress, err)
|
|
}
|
|
}
|
|
|
|
func checkReplyToAddress() error {
|
|
parsed, err := mail.ParseAddress(IncomingEmail.ReplyToAddress)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if parsed.Name != "" {
|
|
return errors.New("name must not be set")
|
|
}
|
|
|
|
placeholderCount := strings.Count(IncomingEmail.ReplyToAddress, IncomingEmailTokenPlaceholder)
|
|
userPart, _, _ := strings.Cut(IncomingEmail.ReplyToAddress, "@")
|
|
if placeholderCount != 1 || !strings.Contains(userPart, IncomingEmailTokenPlaceholder) {
|
|
return fmt.Errorf("%s must appear in the user part of the address (before the @)", IncomingEmailTokenPlaceholder)
|
|
}
|
|
return nil
|
|
}
|