mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
go fmt
This commit is contained in:
parent
cd45490c16
commit
db569891a5
6 changed files with 17 additions and 17 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue