diff --git a/.mkdocs.yml b/.mkdocs.yml index 9c352e8..07b0332 100644 --- a/.mkdocs.yml +++ b/.mkdocs.yml @@ -79,4 +79,4 @@ nav: - internals/specifications.md - internals/unicode.md - internals/quirks.md - - internals/sqlite.md \ No newline at end of file + - internals/sqlite.md diff --git a/README.md b/README.md index cb1b4c3..d5a79b6 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ daemon with uniform configuration and minimal maintenance cost. feature-packed implementation you may want to use Dovecot instead. maddy still can handle message delivery business. -[![builds.sr.ht status](https://builds.sr.ht/~emersion/maddy.svg)](https://builds.sr.ht/~emersion/maddy?) +[![CI status](https://img.shields.io/github/workflow/status/foxcpp/maddy/Testing%20and%20release%20preparation?style=flat-square)](https://github.com/foxcpp/maddy/actions/workflows/cicd.yml) [![Issues tracker](https://img.shields.io/github/issues/foxcpp/maddy)](https://github.com/foxcpp/maddy) * [Setup tutorial](https://maddy.email/tutorials/setting-up/) diff --git a/cmd/maddy/main.go b/cmd/maddy/main.go index 23c6047..1007417 100644 --- a/cmd/maddy/main.go +++ b/cmd/maddy/main.go @@ -20,7 +20,7 @@ package main import ( _ "github.com/foxcpp/maddy" - "github.com/foxcpp/maddy/internal/cli" + maddycli "github.com/foxcpp/maddy/internal/cli" _ "github.com/foxcpp/maddy/internal/cli/ctl" ) diff --git a/cmd/maddy/test.conf b/cmd/maddy/test.conf new file mode 100644 index 0000000..cf2f800 --- /dev/null +++ b/cmd/maddy/test.conf @@ -0,0 +1,13 @@ +state_dir /tmp +runtime_dir /tmp + +imap tcp://127.0.0.1:2222 { + tls off + auth pam + storage imapsql { + driver sqlite3 + dsn /tmp/hello.db + delivery_map email_localpart + auth_normalize precis_casefold + } +} diff --git a/directories.go b/directories.go index 8cc64d1..b3930db 100644 --- a/directories.go +++ b/directories.go @@ -1,4 +1,5 @@ -//+build !docker +//go:build !docker +// +build !docker package maddy diff --git a/directories_docker.go b/directories_docker.go index 16a9b37..4869f60 100644 --- a/directories_docker.go +++ b/directories_docker.go @@ -1,4 +1,5 @@ -//+build docker +//go:build docker +// +build docker package maddy diff --git a/framework/dns/debugflags.go b/framework/dns/debugflags.go index 5fd0df4..fde218b 100644 --- a/framework/dns/debugflags.go +++ b/framework/dns/debugflags.go @@ -1,4 +1,5 @@ -//+build debugflags +//go:build debugflags +// +build debugflags /* Maddy Mail Server - Composable all-in-one email server. diff --git a/framework/log/syslog.go b/framework/log/syslog.go index 7e63a9d..d608f55 100644 --- a/framework/log/syslog.go +++ b/framework/log/syslog.go @@ -1,4 +1,5 @@ -//+build !windows,!plan9 +//go:build !windows && !plan9 +// +build !windows,!plan9 /* Maddy Mail Server - Composable all-in-one email server. diff --git a/framework/log/syslog_stub.go b/framework/log/syslog_stub.go index 79a1969..bc48616 100644 --- a/framework/log/syslog_stub.go +++ b/framework/log/syslog_stub.go @@ -1,4 +1,5 @@ -//+build windows plan9 +//go:build windows || plan9 +// +build windows plan9 /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/auth/pam/pam.go b/internal/auth/pam/pam.go index 85e2eff..2b5b0ef 100644 --- a/internal/auth/pam/pam.go +++ b/internal/auth/pam/pam.go @@ -1,4 +1,5 @@ -//+build cgo,libpam +//go:build cgo && libpam +// +build cgo,libpam /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/auth/pam/pam_stub.go b/internal/auth/pam/pam_stub.go index a9b9431..fb75421 100644 --- a/internal/auth/pam/pam_stub.go +++ b/internal/auth/pam/pam_stub.go @@ -1,4 +1,5 @@ -//+build !cgo !libpam +//go:build !cgo || !libpam +// +build !cgo !libpam /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/auth/shadow/module.go b/internal/auth/shadow/module.go index 1a6931f..92307bf 100644 --- a/internal/auth/shadow/module.go +++ b/internal/auth/shadow/module.go @@ -1,4 +1,5 @@ -//+build !windows +//go:build !windows +// +build !windows /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/check/dns/dns_test.go b/internal/check/dns/dns_test.go index ebd92a5..5f04a87 100644 --- a/internal/check/dns/dns_test.go +++ b/internal/check/dns/dns_test.go @@ -119,4 +119,3 @@ func TestRequireMXRecord(t *testing.T) { test("", "", nil, false) // Permit <> for bounces. test("foo@example.org", "example.org", []net.MX{{Host: "."}}, true) } - diff --git a/internal/check/skeleton.go b/internal/check/skeleton.go index 77a34e7..f374359 100644 --- a/internal/check/skeleton.go +++ b/internal/check/skeleton.go @@ -1,4 +1,5 @@ -//+build ignore +//go:build ignore +// +build ignore /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/cli/app.go b/internal/cli/app.go index 78e6ec1..fc4273d 100644 --- a/internal/cli/app.go +++ b/internal/cli/app.go @@ -95,11 +95,15 @@ func Run() { // Actual entry point is registered in maddy.go. // Print help when called via maddyctl executable. To be removed - // once backward compatbility hack for 'maddy run' is removed too. + // once backward compatibility hack for 'maddy run' is removed too. if strings.Contains(os.Args[0], "maddyctl") && len(os.Args) == 1 { - app.Run([]string{os.Args[0], "help"}) + if err := app.Run([]string{os.Args[0], "help"}); err != nil { + log.DefaultLogger.Error("app.Run failed", err) + } return } - app.Run(os.Args) + if err := app.Run(os.Args); err != nil { + log.DefaultLogger.Error("app.Run failed", err) + } } diff --git a/internal/cli/clitools/termios.go b/internal/cli/clitools/termios.go index 926d268..cf817d1 100644 --- a/internal/cli/clitools/termios.go +++ b/internal/cli/clitools/termios.go @@ -1,4 +1,5 @@ -//+build linux +//go:build linux +// +build linux /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/cli/clitools/termios_stub.go b/internal/cli/clitools/termios_stub.go index 0d8ef3b..03397fa 100644 --- a/internal/cli/clitools/termios_stub.go +++ b/internal/cli/clitools/termios_stub.go @@ -1,4 +1,5 @@ -//+build !linux +//go:build !linux +// +build !linux /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/cli/ctl/imap.go b/internal/cli/ctl/imap.go index bc1de67..069aef6 100644 --- a/internal/cli/ctl/imap.go +++ b/internal/cli/ctl/imap.go @@ -468,7 +468,8 @@ func mboxesCreate(be module.Storage, ctx *cli.Context) error { } if ctx.IsSet("special") { - attr := "\\" + strings.Title(ctx.String("special")) + attr := "\\" + strings.Title(ctx.String("special")) //nolint:staticcheck + // (nolint) strings.Title is perfectly fine there since special mailbox tags will never use Unicode. suu, ok := u.(SpecialUseUser) if !ok { diff --git a/internal/cli/ctl/users.go b/internal/cli/ctl/users.go index 924e433..09dc909 100644 --- a/internal/cli/ctl/users.go +++ b/internal/cli/ctl/users.go @@ -199,8 +199,8 @@ func usersCreate(be module.PlainUserDB, ctx *cli.Context) error { } } - if be, ok := be.(*pass_table.Auth); ok { - return be.CreateUserHash(username, pass, ctx.String("hash"), pass_table.HashOpts{ + if beHash, ok := be.(*pass_table.Auth); ok { + return beHash.CreateUserHash(username, pass, ctx.String("hash"), pass_table.HashOpts{ BcryptCost: ctx.Int("bcrypt-cost"), }) } else if ctx.IsSet("hash") || ctx.IsSet("bcrypt-cost") { diff --git a/internal/libdns/alidns.go b/internal/libdns/alidns.go index 5acefe9..cb980be 100644 --- a/internal/libdns/alidns.go +++ b/internal/libdns/alidns.go @@ -1,4 +1,5 @@ -//+build libdns_alidns libdns_all +//go:build libdns_alidns || libdns_all +// +build libdns_alidns libdns_all package libdns diff --git a/internal/libdns/cloudflare.go b/internal/libdns/cloudflare.go index 10ae981..3031953 100644 --- a/internal/libdns/cloudflare.go +++ b/internal/libdns/cloudflare.go @@ -1,4 +1,5 @@ -//+build libdns_cloudflare !libdns_separate +//go:build libdns_cloudflare || !libdns_separate +// +build libdns_cloudflare !libdns_separate package libdns diff --git a/internal/libdns/digitalocean.go b/internal/libdns/digitalocean.go index e18c38c..98b77b0 100644 --- a/internal/libdns/digitalocean.go +++ b/internal/libdns/digitalocean.go @@ -1,4 +1,5 @@ -//+build libdns_digitalocean !libdns_separate +//go:build libdns_digitalocean || !libdns_separate +// +build libdns_digitalocean !libdns_separate package libdns diff --git a/internal/libdns/gandi.go b/internal/libdns/gandi.go index d90fa69..91e8d87 100644 --- a/internal/libdns/gandi.go +++ b/internal/libdns/gandi.go @@ -1,4 +1,5 @@ -//+build libdns_gandi !libdns_separate +//go:build libdns_gandi || !libdns_separate +// +build libdns_gandi !libdns_separate package libdns diff --git a/internal/libdns/googleclouddns.go b/internal/libdns/googleclouddns.go index 90276df..b59c056 100644 --- a/internal/libdns/googleclouddns.go +++ b/internal/libdns/googleclouddns.go @@ -1,4 +1,5 @@ -//+build libdns_googleclouddns libdns_all +//go:build libdns_googleclouddns || libdns_all +// +build libdns_googleclouddns libdns_all package libdns diff --git a/internal/libdns/hetzner.go b/internal/libdns/hetzner.go index c48b63b..b360641 100644 --- a/internal/libdns/hetzner.go +++ b/internal/libdns/hetzner.go @@ -1,4 +1,5 @@ -//+build libdns_hetzner !libdns_separate +//go:build libdns_hetzner || !libdns_separate +// +build libdns_hetzner !libdns_separate package libdns diff --git a/internal/libdns/leaseweb.go b/internal/libdns/leaseweb.go index d57fb0b..23af12d 100644 --- a/internal/libdns/leaseweb.go +++ b/internal/libdns/leaseweb.go @@ -1,4 +1,5 @@ -//+build libdns_leaseweb libdns_all +//go:build libdns_leaseweb || libdns_all +// +build libdns_leaseweb libdns_all package libdns diff --git a/internal/libdns/metaname.go b/internal/libdns/metaname.go index 5038963..2e37ddd 100644 --- a/internal/libdns/metaname.go +++ b/internal/libdns/metaname.go @@ -1,4 +1,5 @@ -//+build libdns_metaname libdns_all +//go:build libdns_metaname || libdns_all +// +build libdns_metaname libdns_all package libdns diff --git a/internal/libdns/namecheap.go b/internal/libdns/namecheap.go index 77b942c..656ebe5 100644 --- a/internal/libdns/namecheap.go +++ b/internal/libdns/namecheap.go @@ -1,4 +1,5 @@ -//+build go1.16 +//go:build go1.16 +// +build go1.16 package libdns diff --git a/internal/libdns/namedotcom.go b/internal/libdns/namedotcom.go index 3061544..3ce3c51 100644 --- a/internal/libdns/namedotcom.go +++ b/internal/libdns/namedotcom.go @@ -1,4 +1,5 @@ -//+build libdns_namedotdom libdns_all +//go:build libdns_namedotdom || libdns_all +// +build libdns_namedotdom libdns_all package libdns diff --git a/internal/libdns/route53.go b/internal/libdns/route53.go index 6b4664c..dd50724 100644 --- a/internal/libdns/route53.go +++ b/internal/libdns/route53.go @@ -1,4 +1,5 @@ -//+build libdns_route53 libdns_all +//go:build libdns_route53 || libdns_all +// +build libdns_route53 libdns_all package libdns diff --git a/internal/libdns/vultr.go b/internal/libdns/vultr.go index 684a8ce..9157258 100644 --- a/internal/libdns/vultr.go +++ b/internal/libdns/vultr.go @@ -1,4 +1,5 @@ -//+build libdns_vultr !libdns_separate +//go:build libdns_vultr || !libdns_separate +// +build libdns_vultr !libdns_separate package libdns diff --git a/internal/modify/replace_addr_test.go b/internal/modify/replace_addr_test.go index fc6fd6f..e16cfd3 100644 --- a/internal/modify/replace_addr_test.go +++ b/internal/modify/replace_addr_test.go @@ -103,7 +103,6 @@ func testReplaceAddr(t *testing.T, modName string) { test("test@example.com", []string{"1@example.com", "2@example.com", "3@example.com"}, map[string][]string{"test@example.com": []string{"1@example.com", "2@example.com", "3@example.com"}}) } - } func TestReplaceAddr_RewriteSender(t *testing.T) { diff --git a/internal/msgpipeline/msgpipeline.go b/internal/msgpipeline/msgpipeline.go index 31df782..9b57fe9 100644 --- a/internal/msgpipeline/msgpipeline.go +++ b/internal/msgpipeline/msgpipeline.go @@ -339,7 +339,6 @@ func (dd *msgpipelineDelivery) AddRcpt(ctx context.Context, to string) error { dd.log.Debugln("per-rcpt modifiers:", to, "=>", newTo) for _, to = range newTo { - wrapErr = func(err error) error { return exterrors.WithFields(err, map[string]interface{}{ "effective_rcpt": to, diff --git a/internal/storage/blob/test_blob.go b/internal/storage/blob/test_blob.go index 9984c61..9672efe 100644 --- a/internal/storage/blob/test_blob.go +++ b/internal/storage/blob/test_blob.go @@ -1,4 +1,5 @@ -//+build cgo,!no_sqlite3 +//go:build cgo && !no_sqlite3 +// +build cgo,!no_sqlite3 package blob @@ -40,8 +41,8 @@ func TestStore(t *testing.T, newStore func() module.BlobStore, cleanStore func(m b, err := imapsql.New("sqlite3", ":memory:", imapsql2.ExtBlobStore{Base: store}, imapsql.Opts{ - PRNG: prng, - Log: testutils.Logger(t, "imapsql"), + PRNG: prng, + Log: testutils.Logger(t, "imapsql"), }, ) if err != nil { diff --git a/internal/storage/blob/test_blob_nosqlite.go b/internal/storage/blob/test_blob_nosqlite.go index 72a7a33..601f467 100644 --- a/internal/storage/blob/test_blob_nosqlite.go +++ b/internal/storage/blob/test_blob_nosqlite.go @@ -1,4 +1,5 @@ -//+build !cgo no_sqlite3 +//go:build !cgo || no_sqlite3 +// +build !cgo no_sqlite3 package blob diff --git a/internal/storage/imapsql/bench_test.go b/internal/storage/imapsql/bench_test.go index 9b3763a..04cfac9 100644 --- a/internal/storage/imapsql/bench_test.go +++ b/internal/storage/imapsql/bench_test.go @@ -46,7 +46,7 @@ func createTestDB(tb testing.TB, compAlgo string) *Storage { } db, err := imapsql.New(testDB, testDSN, &imapsql.FSStore{Root: testFsstore}, imapsql.Opts{ - CompressAlgo: compAlgo, + CompressAlgo: compAlgo, }) if err != nil { tb.Fatal(err) diff --git a/internal/storage/imapsql/sqlite3.go b/internal/storage/imapsql/sqlite3.go index 84cc6c9..3307d59 100644 --- a/internal/storage/imapsql/sqlite3.go +++ b/internal/storage/imapsql/sqlite3.go @@ -1,4 +1,5 @@ -//+build !nosqlite3,cgo +//go:build !nosqlite3 && cgo +// +build !nosqlite3,cgo /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/table/file.go b/internal/table/file.go index 87c481d..6c8afe2 100644 --- a/internal/table/file.go +++ b/internal/table/file.go @@ -119,11 +119,11 @@ func (f *File) reloader() { }() t := time.NewTicker(reloadInterval) + defer t.Stop() for { select { case <-t.C: - var latestStamp time.Time info, err := os.Stat(f.file) if err != nil { if os.IsNotExist(err) { @@ -133,10 +133,10 @@ func (f *File) reloader() { f.mLck.Unlock() continue } - f.log.Printf("%v", err) + f.log.Error("os stat", err) } - if info.ModTime().After(latestStamp) { - latestStamp = info.ModTime() + if info.ModTime().Before(f.mStamp) { + continue // reload not necessary } case <-f.forceReload: case <-f.stopReloader: diff --git a/internal/table/sql_query_test.go b/internal/table/sql_query_test.go index 1a454d3..fd160f7 100644 --- a/internal/table/sql_query_test.go +++ b/internal/table/sql_query_test.go @@ -1,4 +1,5 @@ -//+build !nosqlite3,cgo +//go:build !nosqlite3 && cgo +// +build !nosqlite3,cgo /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/table/sqlite3.go b/internal/table/sqlite3.go index f0c19ea..8b22794 100644 --- a/internal/table/sqlite3.go +++ b/internal/table/sqlite3.go @@ -1,4 +1,5 @@ -//+build !nosqlite3,cgo +//go:build !nosqlite3 && cgo +// +build !nosqlite3,cgo /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/target/remote/debugflags.go b/internal/target/remote/debugflags.go index 76774b9..0a71a10 100644 --- a/internal/target/remote/debugflags.go +++ b/internal/target/remote/debugflags.go @@ -1,4 +1,5 @@ -//+build debugflags +//go:build debugflags +// +build debugflags /* Maddy Mail Server - Composable all-in-one email server. diff --git a/internal/target/skeleton.go b/internal/target/skeleton.go index 4eb2ee5..00d481c 100644 --- a/internal/target/skeleton.go +++ b/internal/target/skeleton.go @@ -1,4 +1,5 @@ -//+build ignore +//go:build ignore +// +build ignore // Copy that file into target/ subdirectory. diff --git a/maddy_debug.go b/maddy_debug.go index fa40aa6..dc03168 100644 --- a/maddy_debug.go +++ b/maddy_debug.go @@ -1,4 +1,5 @@ -//+build debugflags +//go:build debugflags +// +build debugflags /* Maddy Mail Server - Composable all-in-one email server. diff --git a/signal.go b/signal.go index 332a4c6..e952fcf 100644 --- a/signal.go +++ b/signal.go @@ -1,4 +1,5 @@ -//+build darwin dragonfly freebsd linux netbsd openbsd solaris +//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris +// +build darwin dragonfly freebsd linux netbsd openbsd solaris /* Maddy Mail Server - Composable all-in-one email server. diff --git a/signal_nonposix.go b/signal_nonposix.go index 3eaf096..87ea0cd 100644 --- a/signal_nonposix.go +++ b/signal_nonposix.go @@ -1,4 +1,5 @@ -//+build windows plan9 +//go:build windows || plan9 +// +build windows plan9 /* Maddy Mail Server - Composable all-in-one email server. diff --git a/systemd.go b/systemd.go index fa07601..649740d 100644 --- a/systemd.go +++ b/systemd.go @@ -1,4 +1,5 @@ -//+build linux +//go:build linux +// +build linux /* Maddy Mail Server - Composable all-in-one email server. diff --git a/systemd_nonlinux.go b/systemd_nonlinux.go index 7c601b6..e31cd15 100644 --- a/systemd_nonlinux.go +++ b/systemd_nonlinux.go @@ -1,4 +1,5 @@ -//+build !linux +//go:build !linux +// +build !linux /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/basic_test.go b/tests/basic_test.go index c92010a..ac7af2a 100644 --- a/tests/basic_test.go +++ b/tests/basic_test.go @@ -1,4 +1,5 @@ -//+build integration +//go:build integration +// +build integration /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/cover_test.go b/tests/cover_test.go index b43d2d9..ad86c53 100644 --- a/tests/cover_test.go +++ b/tests/cover_test.go @@ -1,4 +1,5 @@ -//+build cover_main +//go:build cover_main +// +build cover_main /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/dovecot_sasl_test.go b/tests/dovecot_sasl_test.go index 1434345..11fbcaf 100644 --- a/tests/dovecot_sasl_test.go +++ b/tests/dovecot_sasl_test.go @@ -1,5 +1,6 @@ -//+build integration -//+build darwin dragonfly freebsd linux netbsd openbsd solaris +//go:build integration && (darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris) +// +build integration +// +build darwin dragonfly freebsd linux netbsd openbsd solaris /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/dovecot_sasld_test.go b/tests/dovecot_sasld_test.go index b2aad8d..fbab1e3 100644 --- a/tests/dovecot_sasld_test.go +++ b/tests/dovecot_sasld_test.go @@ -1,4 +1,5 @@ -//+build integration +//go:build integration +// +build integration /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/gocovcat.go b/tests/gocovcat.go index 5b3e759..4018912 100644 --- a/tests/gocovcat.go +++ b/tests/gocovcat.go @@ -2,6 +2,7 @@ // // From: https://git.lukeshu.com/go/cmd/gocovcat/ // +//go:build ignore // +build ignore // Copyright 2017 Luke Shumaker diff --git a/tests/imapsql_test.go b/tests/imapsql_test.go index 62a0dbe..69f9e7e 100644 --- a/tests/imapsql_test.go +++ b/tests/imapsql_test.go @@ -1,4 +1,5 @@ -//+build integration,cgo,!nosqlite3 +//go:build integration && cgo && !nosqlite3 +// +build integration,cgo,!nosqlite3 /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/issue327_test.go b/tests/issue327_test.go index e6ce3b2..b766424 100644 --- a/tests/issue327_test.go +++ b/tests/issue327_test.go @@ -1,4 +1,5 @@ -//+build integration +//go:build integration +// +build integration /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/limits_test.go b/tests/limits_test.go index bc20c70..f085bb3 100644 --- a/tests/limits_test.go +++ b/tests/limits_test.go @@ -1,4 +1,5 @@ -//+build integration +//go:build integration +// +build integration /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/lmtp_test.go b/tests/lmtp_test.go index 5e86c31..8e29a93 100644 --- a/tests/lmtp_test.go +++ b/tests/lmtp_test.go @@ -1,4 +1,5 @@ -//+build integration +//go:build integration +// +build integration /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/mta_test.go b/tests/mta_test.go index bf62177..21ac001 100644 --- a/tests/mta_test.go +++ b/tests/mta_test.go @@ -1,4 +1,5 @@ -//+build integration +//go:build integration +// +build integration /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/replace_addr_test.go b/tests/replace_addr_test.go index fb1d871..c898071 100644 --- a/tests/replace_addr_test.go +++ b/tests/replace_addr_test.go @@ -1,4 +1,5 @@ -//+build integration +//go:build integration +// +build integration /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/smtp_autobuffer_test.go b/tests/smtp_autobuffer_test.go index b7c2bbd..58ef341 100644 --- a/tests/smtp_autobuffer_test.go +++ b/tests/smtp_autobuffer_test.go @@ -1,4 +1,5 @@ -//+build integration,cgo,!nosqlite3 +//go:build integration && cgo && !nosqlite3 +// +build integration,cgo,!nosqlite3 /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/smtp_test.go b/tests/smtp_test.go index ed1bee4..85a5173 100644 --- a/tests/smtp_test.go +++ b/tests/smtp_test.go @@ -1,4 +1,5 @@ -//+build integration +//go:build integration +// +build integration /* Maddy Mail Server - Composable all-in-one email server. diff --git a/tests/stress_test.go b/tests/stress_test.go index 93be9a0..55e5f76 100644 --- a/tests/stress_test.go +++ b/tests/stress_test.go @@ -1,4 +1,5 @@ -//+build integration +//go:build integration +// +build integration /* Maddy Mail Server - Composable all-in-one email server.