mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 05:57:39 +03:00
Move most code from the repo root into subdirectories
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.
This commit is contained in:
parent
c4df3af4af
commit
bf188e454f
180 changed files with 722 additions and 684 deletions
10
HACKING.md
10
HACKING.md
|
@ -63,8 +63,8 @@ initialization path, so they are always initialized directly.
|
||||||
|
|
||||||
## Error handling
|
## Error handling
|
||||||
|
|
||||||
Familarize yourself with the github.com/foxcpp/maddy/exterrors package and
|
Familarize yourself with the github.com/foxcpp/maddy/internal/exterrors package
|
||||||
make sure you have the following for returned errors.
|
and make sure you have the following for returned errors:
|
||||||
- SMTP status information (smtp\_code, smtp\_enchcode, smtp\_msg fields)
|
- SMTP status information (smtp\_code, smtp\_enchcode, smtp\_msg fields)
|
||||||
- SMTP message text should contain a generic description of the error
|
- SMTP message text should contain a generic description of the error
|
||||||
condition without any details to prevent accidental disclosure of the
|
condition without any details to prevent accidental disclosure of the
|
||||||
|
@ -101,9 +101,9 @@ bugs will not bring the whole server down.
|
||||||
"Check" is a module that inspects the message and flags it as spam or rejects
|
"Check" is a module that inspects the message and flags it as spam or rejects
|
||||||
it altogether based on some condition.
|
it altogether based on some condition.
|
||||||
|
|
||||||
The skeleton for the stateful check module can be found in check/skeleton.go.
|
The skeleton for the stateful check module can be found in
|
||||||
Throw it into a file in `check/check_name` directory and start ~~breaking~~
|
internal/check/skeleton.go. Throw it into a file in
|
||||||
extending it.
|
`internal/check/check_name` directory and start ~~breaking~~ extending it.
|
||||||
|
|
||||||
If you don't need any per-message state, you can use StatelessCheck wrapper.
|
If you don't need any per-message state, you can use StatelessCheck wrapper.
|
||||||
See check/dns directory for a working example.
|
See check/dns directory for a working example.
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
package maddy
|
|
||||||
|
|
||||||
import (
|
|
||||||
"runtime/debug"
|
|
||||||
)
|
|
||||||
|
|
||||||
var Version = "unknown (built from source tree)"
|
|
||||||
|
|
||||||
func BuildInfo() string {
|
|
||||||
if info, ok := debug.ReadBuildInfo(); ok {
|
|
||||||
if info.Main.Version == "(devel)" {
|
|
||||||
return Version
|
|
||||||
}
|
|
||||||
return info.Main.Version + " " + info.Main.Sum
|
|
||||||
}
|
|
||||||
return Version + " (GOPATH build)"
|
|
||||||
}
|
|
18
cmd/README.md
Normal file
18
cmd/README.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
maddy executables
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
### maddy
|
||||||
|
|
||||||
|
Main server executable.
|
||||||
|
|
||||||
|
### maddyctl
|
||||||
|
|
||||||
|
IMAP index and authentication database inspection and manipulation utility.
|
||||||
|
|
||||||
|
### maddy-pam-helper, maddy-shadow-helper
|
||||||
|
|
||||||
|
__Deprecated: Currently they are unusable due to changes made to the storage
|
||||||
|
implementation.__
|
||||||
|
|
||||||
|
Utilities compatible with the extauth module that call libpam or read
|
||||||
|
/etc/shadow on Unix systems.
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/auth/shadow"
|
"github.com/foxcpp/maddy/internal/auth/shadow"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
@ -5,8 +5,8 @@ import (
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy"
|
"github.com/foxcpp/maddy"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/config/parser"
|
parser "github.com/foxcpp/maddy/pkg/cfgparser"
|
||||||
)
|
)
|
||||||
|
|
||||||
func findBlockInCfg(path, cfgBlock string) (root, block *config.Node, err error) {
|
func findBlockInCfg(path, cfgBlock string) (root, block *config.Node, err error) {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/storage/sql"
|
"github.com/foxcpp/maddy/internal/storage/sql"
|
||||||
|
|
||||||
_ "github.com/go-sql-driver/mysql"
|
_ "github.com/go-sql-driver/mysql"
|
||||||
_ "github.com/lib/pq"
|
_ "github.com/lib/pq"
|
||||||
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
package maddy
|
|
||||||
|
|
||||||
var (
|
|
||||||
// ConfigDirectory specifies platform-specific value
|
|
||||||
// that should be used as a location of default configuration
|
|
||||||
//
|
|
||||||
// It should not be changed and is defined as a variable
|
|
||||||
// only for purposes of modification using -X linker flag.
|
|
||||||
ConfigDirectory = "/etc/maddy"
|
|
||||||
|
|
||||||
// DefaultStateDirectory specifies platform-specific
|
|
||||||
// default for StateDirectory.
|
|
||||||
//
|
|
||||||
// Most code should use StateDirectory instead since
|
|
||||||
// it will contain the effective location of the state
|
|
||||||
// directory.
|
|
||||||
//
|
|
||||||
// It should not be changed and is defined as a variable
|
|
||||||
// only for purposes of modification using -X linker flag.
|
|
||||||
DefaultStateDirectory = "/var/lib/maddy"
|
|
||||||
|
|
||||||
// DefaultRuntimeDirectory specifies platform-specific
|
|
||||||
// default for RuntimeDirectory.
|
|
||||||
//
|
|
||||||
// Most code should use RuntimeDirectory instead since
|
|
||||||
// it will contain the effective location of the state
|
|
||||||
// directory.
|
|
||||||
//
|
|
||||||
// It should not be changed and is defined as a variable
|
|
||||||
// only for purposes of modification using -X linker flag.
|
|
||||||
DefaultRuntimeDirectory = "/run/maddy"
|
|
||||||
|
|
||||||
// DefaultLibexecDirectory specifies platform-specific
|
|
||||||
// default for LibexecDirectory.
|
|
||||||
//
|
|
||||||
// Most code should use LibexecDirectory since it will
|
|
||||||
// contain the effective location of the libexec
|
|
||||||
// directory.
|
|
||||||
//
|
|
||||||
// It should not be changed and is defined as a variable
|
|
||||||
// only for purposes of modification using -X linker flag.
|
|
||||||
DefaultLibexecDirectory = "/usr/lib/maddy"
|
|
||||||
)
|
|
3
dist/README.md
vendored
3
dist/README.md
vendored
|
@ -1,4 +1,5 @@
|
||||||
# Distribution files for maddy
|
Distribution files for maddy
|
||||||
|
------------------------------
|
||||||
|
|
||||||
**Disclaimer:** Most of the files here are maintained in a "best-effort" way.
|
**Disclaimer:** Most of the files here are maintained in a "best-effort" way.
|
||||||
That is, they may break or become outdated from time to time. Caveat emptor.
|
That is, they may break or become outdated from time to time. Caveat emptor.
|
||||||
|
|
24
internal/README.md
Normal file
24
internal/README.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
maddy source tree
|
||||||
|
------------------
|
||||||
|
|
||||||
|
Main maddy code base lives here. No packages are intended to be used in
|
||||||
|
third-party software hence API is not stable.
|
||||||
|
|
||||||
|
Subdirectories are organised as follows:
|
||||||
|
```
|
||||||
|
/
|
||||||
|
auxiliary libraries
|
||||||
|
endpoint/
|
||||||
|
modules - protocol listeners (e.g. SMTP server, etc)
|
||||||
|
target/
|
||||||
|
modules - final delivery targets (including outbound delivery, such as
|
||||||
|
smtp_downstream, remote)
|
||||||
|
auth/
|
||||||
|
modules - authentication providers
|
||||||
|
check/
|
||||||
|
modules - message checkers (module.Check)
|
||||||
|
modify/
|
||||||
|
modules - message modifiers (module.Modifier)
|
||||||
|
storage/
|
||||||
|
modules - local messages storage implementations (module.Storage)
|
||||||
|
```
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"unicode/utf8"
|
"unicode/utf8"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/dns"
|
"github.com/foxcpp/maddy/internal/dns"
|
||||||
"golang.org/x/net/idna"
|
"golang.org/x/net/idna"
|
||||||
"golang.org/x/text/unicode/norm"
|
"golang.org/x/text/unicode/norm"
|
||||||
)
|
)
|
|
@ -6,10 +6,10 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/auth"
|
"github.com/foxcpp/maddy/internal/auth"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ExternalAuth struct {
|
type ExternalAuth struct {
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
func AuthUsingHelper(l log.Logger, binaryPath, accountName, password string) bool {
|
func AuthUsingHelper(l log.Logger, binaryPath, accountName, password string) bool {
|
|
@ -6,10 +6,10 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/auth/external"
|
"github.com/foxcpp/maddy/internal/auth/external"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Auth struct {
|
type Auth struct {
|
|
@ -8,10 +8,10 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/auth/external"
|
"github.com/foxcpp/maddy/internal/auth/external"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Auth struct {
|
type Auth struct {
|
|
@ -6,9 +6,9 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
// FailAction specifies actions that messages pipeline should take based on the
|
// FailAction specifies actions that messages pipeline should take based on the
|
|
@ -14,13 +14,13 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/foxcpp/maddy/buffer"
|
"github.com/foxcpp/maddy/internal/buffer"
|
||||||
"github.com/foxcpp/maddy/check"
|
"github.com/foxcpp/maddy/internal/check"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/target"
|
"github.com/foxcpp/maddy/internal/target"
|
||||||
)
|
)
|
||||||
|
|
||||||
const modName = "command"
|
const modName = "command"
|
|
@ -10,13 +10,13 @@ import (
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/emersion/go-msgauth/authres"
|
"github.com/emersion/go-msgauth/authres"
|
||||||
"github.com/emersion/go-msgauth/dkim"
|
"github.com/emersion/go-msgauth/dkim"
|
||||||
"github.com/foxcpp/maddy/buffer"
|
"github.com/foxcpp/maddy/internal/buffer"
|
||||||
"github.com/foxcpp/maddy/check"
|
"github.com/foxcpp/maddy/internal/check"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/target"
|
"github.com/foxcpp/maddy/internal/target"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Check struct {
|
type Check struct {
|
|
@ -5,11 +5,11 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/address"
|
"github.com/foxcpp/maddy/internal/address"
|
||||||
"github.com/foxcpp/maddy/check"
|
"github.com/foxcpp/maddy/internal/check"
|
||||||
"github.com/foxcpp/maddy/dns"
|
"github.com/foxcpp/maddy/internal/dns"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
func requireMatchingRDNS(ctx check.StatelessCheckContext) module.CheckResult {
|
func requireMatchingRDNS(ctx check.StatelessCheckContext) module.CheckResult {
|
|
@ -6,10 +6,10 @@ import (
|
||||||
|
|
||||||
"github.com/emersion/go-smtp"
|
"github.com/emersion/go-smtp"
|
||||||
"github.com/foxcpp/go-mockdns"
|
"github.com/foxcpp/go-mockdns"
|
||||||
"github.com/foxcpp/maddy/check"
|
"github.com/foxcpp/maddy/internal/check"
|
||||||
"github.com/foxcpp/maddy/future"
|
"github.com/foxcpp/maddy/internal/future"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/testutils"
|
"github.com/foxcpp/maddy/internal/testutils"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestRequireMatchingRDNS(t *testing.T) {
|
func TestRequireMatchingRDNS(t *testing.T) {
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/dns"
|
"github.com/foxcpp/maddy/internal/dns"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ListedErr struct {
|
type ListedErr struct {
|
|
@ -7,15 +7,15 @@ import (
|
||||||
|
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/emersion/go-smtp"
|
"github.com/emersion/go-smtp"
|
||||||
"github.com/foxcpp/maddy/address"
|
"github.com/foxcpp/maddy/internal/address"
|
||||||
"github.com/foxcpp/maddy/buffer"
|
"github.com/foxcpp/maddy/internal/buffer"
|
||||||
"github.com/foxcpp/maddy/check"
|
"github.com/foxcpp/maddy/internal/check"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/dns"
|
"github.com/foxcpp/maddy/internal/dns"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/target"
|
"github.com/foxcpp/maddy/internal/target"
|
||||||
"golang.org/x/sync/errgroup"
|
"golang.org/x/sync/errgroup"
|
||||||
)
|
)
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/foxcpp/go-mockdns"
|
"github.com/foxcpp/go-mockdns"
|
||||||
"github.com/foxcpp/maddy/testutils"
|
"github.com/foxcpp/maddy/internal/testutils"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestCheckList(t *testing.T) {
|
func TestCheckList(t *testing.T) {
|
|
@ -9,11 +9,11 @@ package directory_name_here
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/foxcpp/maddy/buffer"
|
"github.com/foxcpp/maddy/internal/buffer"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/target"
|
"github.com/foxcpp/maddy/internal/target"
|
||||||
)
|
)
|
||||||
|
|
||||||
const modName = "check_things"
|
const modName = "check_things"
|
|
@ -11,16 +11,16 @@ import (
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/emersion/go-msgauth/authres"
|
"github.com/emersion/go-msgauth/authres"
|
||||||
"github.com/emersion/go-msgauth/dmarc"
|
"github.com/emersion/go-msgauth/dmarc"
|
||||||
"github.com/foxcpp/maddy/address"
|
"github.com/foxcpp/maddy/internal/address"
|
||||||
"github.com/foxcpp/maddy/buffer"
|
"github.com/foxcpp/maddy/internal/buffer"
|
||||||
"github.com/foxcpp/maddy/check"
|
"github.com/foxcpp/maddy/internal/check"
|
||||||
maddydmarc "github.com/foxcpp/maddy/check/dmarc"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/config"
|
maddydmarc "github.com/foxcpp/maddy/internal/dmarc"
|
||||||
"github.com/foxcpp/maddy/dns"
|
"github.com/foxcpp/maddy/internal/dns"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/target"
|
"github.com/foxcpp/maddy/internal/target"
|
||||||
"golang.org/x/net/idna"
|
"golang.org/x/net/idna"
|
||||||
)
|
)
|
||||||
|
|
|
@ -5,12 +5,12 @@ import (
|
||||||
"net"
|
"net"
|
||||||
|
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/foxcpp/maddy/buffer"
|
"github.com/foxcpp/maddy/internal/buffer"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/dns"
|
"github.com/foxcpp/maddy/internal/dns"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/target"
|
"github.com/foxcpp/maddy/internal/target"
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
|
@ -3,7 +3,7 @@ package config
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/config/parser"
|
parser "github.com/foxcpp/maddy/pkg/cfgparser"
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/limiters"
|
"github.com/foxcpp/maddy/internal/limiters"
|
||||||
)
|
)
|
||||||
|
|
||||||
// GlobalRateLimit reads '... <burst> <interval>' config directive and returns
|
// GlobalRateLimit reads '... <burst> <interval>' config directive and returns
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
"unicode"
|
"unicode"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/config/parser"
|
parser "github.com/foxcpp/maddy/pkg/cfgparser"
|
||||||
)
|
)
|
||||||
|
|
||||||
type matcher struct {
|
type matcher struct {
|
|
@ -1,8 +1,8 @@
|
||||||
package modconfig
|
package modconfig
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
func AuthDirective(m *config.Map, node *config.Node) (interface{}, error) {
|
func AuthDirective(m *config.Map, node *config.Node) (interface{}, error) {
|
|
@ -1,8 +1,8 @@
|
||||||
package modconfig
|
package modconfig
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
func MessageCheck(globals map[string]interface{}, args []string, block *config.Node) (module.Check, error) {
|
func MessageCheck(globals map[string]interface{}, args []string, block *config.Node) (module.Check, error) {
|
|
@ -1,8 +1,8 @@
|
||||||
package modconfig
|
package modconfig
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
// deliveryDirective is a callback for use in config.Map.Custom.
|
// deliveryDirective is a callback for use in config.Map.Custom.
|
|
@ -13,10 +13,10 @@ import (
|
||||||
"reflect"
|
"reflect"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/config/parser"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/module"
|
parser "github.com/foxcpp/maddy/pkg/cfgparser"
|
||||||
)
|
)
|
||||||
|
|
||||||
// createInlineModule is a helper function for config matchers that can create inline modules.
|
// createInlineModule is a helper function for config matchers that can create inline modules.
|
|
@ -1,8 +1,8 @@
|
||||||
package modconfig
|
package modconfig
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
func MsgModifier(globals map[string]interface{}, args []string, block *config.Node) (module.Modifier, error) {
|
func MsgModifier(globals map[string]interface{}, args []string, block *config.Node) (module.Modifier, error) {
|
|
@ -1,8 +1,8 @@
|
||||||
package modconfig
|
package modconfig
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
func StorageDirective(m *config.Map, node *config.Node) (interface{}, error) {
|
func StorageDirective(m *config.Map, node *config.Node) (interface{}, error) {
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TLSClientBlock(m *Map, node *Node) (interface{}, error) {
|
func TLSClientBlock(m *Map, node *Node) (interface{}, error) {
|
|
@ -3,7 +3,7 @@ package config
|
||||||
import (
|
import (
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
var strVersionsMap = map[string]uint16{
|
var strVersionsMap = map[string]uint16{
|
|
@ -12,7 +12,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TLSDirective(m *Map, node *Node) (interface{}, error) {
|
func TLSDirective(m *Map, node *Node) (interface{}, error) {
|
|
@ -11,7 +11,7 @@ import (
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/emersion/go-msgauth/authres"
|
"github.com/emersion/go-msgauth/authres"
|
||||||
"github.com/emersion/go-msgauth/dmarc"
|
"github.com/emersion/go-msgauth/dmarc"
|
||||||
"github.com/foxcpp/maddy/address"
|
"github.com/foxcpp/maddy/internal/address"
|
||||||
"golang.org/x/net/publicsuffix"
|
"golang.org/x/net/publicsuffix"
|
||||||
)
|
)
|
||||||
|
|
|
@ -12,8 +12,8 @@ import (
|
||||||
|
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/emersion/go-smtp"
|
"github.com/emersion/go-smtp"
|
||||||
"github.com/foxcpp/maddy/address"
|
"github.com/foxcpp/maddy/internal/address"
|
||||||
"github.com/foxcpp/maddy/dns"
|
"github.com/foxcpp/maddy/internal/dns"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ReportingMTAInfo struct {
|
type ReportingMTAInfo struct {
|
|
@ -20,10 +20,10 @@ import (
|
||||||
"github.com/emersion/go-message"
|
"github.com/emersion/go-message"
|
||||||
_ "github.com/emersion/go-message/charset"
|
_ "github.com/emersion/go-message/charset"
|
||||||
"github.com/foxcpp/go-imap-sql/children"
|
"github.com/foxcpp/go-imap-sql/children"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
modconfig "github.com/foxcpp/maddy/config/module"
|
modconfig "github.com/foxcpp/maddy/internal/config/module"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Endpoint struct {
|
type Endpoint struct {
|
|
@ -16,18 +16,18 @@ import (
|
||||||
|
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/emersion/go-smtp"
|
"github.com/emersion/go-smtp"
|
||||||
"github.com/foxcpp/maddy/address"
|
"github.com/foxcpp/maddy/internal/address"
|
||||||
"github.com/foxcpp/maddy/buffer"
|
"github.com/foxcpp/maddy/internal/buffer"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
modconfig "github.com/foxcpp/maddy/config/module"
|
modconfig "github.com/foxcpp/maddy/internal/config/module"
|
||||||
"github.com/foxcpp/maddy/dns"
|
"github.com/foxcpp/maddy/internal/dns"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/future"
|
"github.com/foxcpp/maddy/internal/future"
|
||||||
"github.com/foxcpp/maddy/limiters"
|
"github.com/foxcpp/maddy/internal/limiters"
|
||||||
"github.com/foxcpp/maddy/log"
|
"github.com/foxcpp/maddy/internal/log"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/msgpipeline"
|
"github.com/foxcpp/maddy/internal/msgpipeline"
|
||||||
"github.com/foxcpp/maddy/target"
|
"github.com/foxcpp/maddy/internal/target"
|
||||||
"golang.org/x/net/idna"
|
"golang.org/x/net/idna"
|
||||||
)
|
)
|
||||||
|
|
|
@ -13,11 +13,11 @@ import (
|
||||||
"github.com/emersion/go-sasl"
|
"github.com/emersion/go-sasl"
|
||||||
"github.com/emersion/go-smtp"
|
"github.com/emersion/go-smtp"
|
||||||
"github.com/foxcpp/go-mockdns"
|
"github.com/foxcpp/go-mockdns"
|
||||||
"github.com/foxcpp/maddy/config"
|
"github.com/foxcpp/maddy/internal/config"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/msgpipeline"
|
"github.com/foxcpp/maddy/internal/msgpipeline"
|
||||||
"github.com/foxcpp/maddy/testutils"
|
"github.com/foxcpp/maddy/internal/testutils"
|
||||||
)
|
)
|
||||||
|
|
||||||
var testPort string
|
var testPort string
|
|
@ -6,9 +6,9 @@ import (
|
||||||
|
|
||||||
"github.com/emersion/go-smtp"
|
"github.com/emersion/go-smtp"
|
||||||
"github.com/foxcpp/go-mockdns"
|
"github.com/foxcpp/go-mockdns"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/foxcpp/maddy/testutils"
|
"github.com/foxcpp/maddy/internal/testutils"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestSMTPUTF8_MangleStatusMessage(t *testing.T) {
|
func TestSMTPUTF8_MangleStatusMessage(t *testing.T) {
|
|
@ -7,8 +7,8 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
)
|
)
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
|
|
||||||
"github.com/emersion/go-message/textproto"
|
"github.com/emersion/go-message/textproto"
|
||||||
"github.com/emersion/go-smtp"
|
"github.com/emersion/go-smtp"
|
||||||
"github.com/foxcpp/maddy/module"
|
"github.com/foxcpp/maddy/internal/module"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/foxcpp/maddy/exterrors"
|
"github.com/foxcpp/maddy/internal/exterrors"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Logger is the structure that writes formatted output to the underlying
|
// Logger is the structure that writes formatted output to the underlying
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue