This commit is contained in:
angelnu 2022-01-31 21:59:27 +00:00
parent cd45490c16
commit db569891a5
6 changed files with 17 additions and 17 deletions

View file

@ -80,7 +80,7 @@ func (r replaceAddr) RewriteSender(ctx context.Context, mailFrom string) (string
if err != nil {
return mailFrom, err
}
mailFrom = results [0]
mailFrom = results[0]
}
return mailFrom, nil
}

View file

@ -19,8 +19,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
package modify
import (
"reflect"
"context"
"reflect"
"testing"
"github.com/foxcpp/maddy/framework/config"
@ -57,7 +57,7 @@ func testReplaceAddr(t *testing.T, modName string) {
}
}
if ! reflect.DeepEqual(actualMulti,expectedMulti) {
if !reflect.DeepEqual(actualMulti, expectedMulti) {
t.Errorf("want %s, got %s", expectedMulti, actualMulti)
}
}

View file

@ -26,8 +26,8 @@ import (
"github.com/emersion/go-message/textproto"
"github.com/foxcpp/maddy/framework/buffer"
"github.com/foxcpp/maddy/framework/module"
"github.com/foxcpp/maddy/internal/testutils"
"github.com/foxcpp/maddy/internal/modify"
"github.com/foxcpp/maddy/internal/testutils"
)
func TestMsgPipeline_AllToTarget(t *testing.T) {
@ -664,7 +664,7 @@ func TestMsgPipeline_TwoRcptToOneTarget(t *testing.T) {
func TestMsgPipeline_multi_alias(t *testing.T) {
target1, target2 := testutils.Target{InstName: "target1"}, testutils.Target{InstName: "target2"}
mod := testutils.Modifier{
RcptTo: map[string][]string {
RcptTo: map[string][]string{
"recipient@example.com": []string{
"recipient-1@example.org",
"recipient-2@example.net",
@ -675,8 +675,8 @@ func TestMsgPipeline_multi_alias(t *testing.T) {
msgpipelineCfg: msgpipelineCfg{
perSource: map[string]sourceBlock{},
defaultSource: sourceBlock{
modifiers: modify.Group {
Modifiers: []module.Modifier {mod},
modifiers: modify.Group{
Modifiers: []module.Modifier{mod},
},
perRcpt: map[string]*rcptBlock{
"example.org": {

View file

@ -91,7 +91,7 @@ func (s *Chain) Lookup(ctx context.Context, key string) (string, bool, error) {
func (s *Chain) LookupMulti(ctx context.Context, key string) ([]string, error) {
result := []string{key}
STEP:
STEP:
for i, step := range s.chain {
new_result := []string{}
for _, key = range result {

View file

@ -100,7 +100,7 @@ func (r *Regexp) LookupMulti(_ context.Context, key string) ([]string, error) {
}
result := []string{}
for _,replacement := range r.replacements{
for _, replacement := range r.replacements {
if !r.expandPlaceholders {
result = append(result, replacement)
} else {