mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
The intention is to keep to repo root clean while the list of packages is slowly growing. Additionally, a bunch of small (~30 LoC) files in the repo root is merged into a single maddy.go file, for the same reason. Most of the internal code is moved into the internal/ directory. Go toolchain will make it impossible to import these packages from external applications. Some packages are renamed and moved into the pkg/ directory in the root. According to https://github.com/golang-standards/project-layout this is the de-facto standard to place "library code that's ok to use by external applications" in. To clearly define the purpose of top-level directories, README.md files are added to each.
102 lines
1.9 KiB
Go
102 lines
1.9 KiB
Go
package testutils
|
|
|
|
import (
|
|
"github.com/emersion/go-message/textproto"
|
|
"github.com/foxcpp/maddy/internal/buffer"
|
|
"github.com/foxcpp/maddy/internal/config"
|
|
"github.com/foxcpp/maddy/internal/module"
|
|
)
|
|
|
|
type Modifier struct {
|
|
InstName string
|
|
|
|
InitErr error
|
|
MailFromErr error
|
|
RcptToErr error
|
|
BodyErr error
|
|
|
|
MailFrom map[string]string
|
|
RcptTo map[string]string
|
|
AddHdr textproto.Header
|
|
|
|
UnclosedStates int
|
|
}
|
|
|
|
func (m Modifier) Init(*config.Map) error {
|
|
return nil
|
|
}
|
|
|
|
func (m Modifier) Name() string {
|
|
return "test_modifier"
|
|
}
|
|
|
|
func (m Modifier) InstanceName() string {
|
|
return m.InstName
|
|
}
|
|
|
|
type modifierState struct {
|
|
m *Modifier
|
|
}
|
|
|
|
func (m Modifier) ModStateForMsg(msgMeta *module.MsgMetadata) (module.ModifierState, error) {
|
|
if m.InitErr != nil {
|
|
return nil, m.InitErr
|
|
}
|
|
|
|
m.UnclosedStates++
|
|
return modifierState{&m}, nil
|
|
}
|
|
|
|
func (ms modifierState) RewriteSender(mailFrom string) (string, error) {
|
|
if ms.m.MailFromErr != nil {
|
|
return "", ms.m.MailFromErr
|
|
}
|
|
if ms.m.MailFrom == nil {
|
|
return mailFrom, nil
|
|
}
|
|
|
|
newMailFrom, ok := ms.m.MailFrom[mailFrom]
|
|
if ok {
|
|
return newMailFrom, nil
|
|
}
|
|
return mailFrom, nil
|
|
}
|
|
|
|
func (ms modifierState) RewriteRcpt(rcptTo string) (string, error) {
|
|
if ms.m.RcptToErr != nil {
|
|
return "", ms.m.RcptToErr
|
|
}
|
|
|
|
if ms.m.RcptTo == nil {
|
|
return rcptTo, nil
|
|
}
|
|
|
|
newRcptTo, ok := ms.m.RcptTo[rcptTo]
|
|
if ok {
|
|
return newRcptTo, nil
|
|
}
|
|
return rcptTo, nil
|
|
}
|
|
|
|
func (ms modifierState) RewriteBody(h *textproto.Header, body buffer.Buffer) error {
|
|
if ms.m.BodyErr != nil {
|
|
return ms.m.BodyErr
|
|
}
|
|
|
|
for field := ms.m.AddHdr.Fields(); field.Next(); {
|
|
h.Add(field.Key(), field.Value())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (ms modifierState) Close() error {
|
|
ms.m.UnclosedStates--
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
module.Register("test_modifier", func(_, _ string, _, _ []string) (module.Module, error) {
|
|
return &Modifier{}, nil
|
|
})
|
|
module.RegisterInstance(&Modifier{}, nil)
|
|
}
|