maddy/internal
fox.cpp c3ebbb05a0
Generalize message flow restrictions
Set of flow restrictions is represented as a "limits" module instance
that can be either created inline via "limits" directive in some modules
(including "remote" target and "smtp" endpoint) or defined globally and
referenced in configuration of modules mentioned above.

This permits a variety of use cases, including shared and separate
counters for various endpoints and also "modules group" style sharing
described in #195.
2020-02-15 17:02:48 +03:00
..
address Fix a bunch of grammar errors in messages around the code base 2019-12-13 17:31:35 +03:00
auth Unbreak PAM/shadow authentication support 2020-02-04 19:03:24 +03:00
buffer Move most code from the repo root into subdirectories 2019-12-06 01:35:12 +03:00
check Fix linter warnings 2020-02-08 03:32:28 +03:00
config Generalize message flow restrictions 2020-02-15 17:02:48 +03:00
dmarc Instrument the SMTP code using runtime/trace 2019-12-13 17:31:35 +03:00
dns dns: Ignore AD flag from non-local resolvers 2019-12-13 21:11:03 +03:00
dsn Fix a bunch of grammar errors in messages around the code base 2019-12-13 17:31:35 +03:00
endpoint Generalize message flow restrictions 2020-02-15 17:02:48 +03:00
exterrors Move most code from the repo root into subdirectories 2019-12-06 01:35:12 +03:00
future target/remote: Implement basic DANE support 2019-12-13 17:31:36 +03:00
hooks Implement global callbacks for "shutdown" and "reload" 2020-01-02 12:26:32 +03:00
limits Generalize message flow restrictions 2020-02-15 17:02:48 +03:00
log log: Ignore Logger.Error calls with nil error 2019-12-13 21:34:31 +03:00
modify msgpipeline: Refactor modify{} blocks to work as a "module group" 2020-02-15 00:18:23 +03:00
module Implement global callbacks for "shutdown" and "reload" 2020-01-02 12:26:32 +03:00
msgpipeline msgpipeline: Register pipeline as a delivery target module 2020-02-15 17:02:47 +03:00
smtpconn target/remote: Rework MX records authentication and TLS enforcement 2019-12-13 21:11:03 +03:00
storage/sql storage/sql: Enable I18NLEVEL=1 IMAP extension 2020-02-08 03:23:00 +03:00
target Generalize message flow restrictions 2020-02-15 17:02:48 +03:00
testutils testutils: Mark DoTestDelivery as a test helper 2019-12-13 21:37:53 +03:00
updatepipe Use Unix socket to pass IMAP updates from maddyctl to daemon 2019-12-13 17:31:35 +03:00
README.md Move most code from the repo root into subdirectories 2019-12-06 01:35:12 +03:00

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)