Commit graph

19 commits

Author SHA1 Message Date
fox.cpp
bf188e454f
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.
2019-12-06 01:35:12 +03:00
fox.cpp
ad13d026ec
Make endpoint modules special
To support unusual configuration syntax, endpoint modules (imap, smtp,
etc) relied on rather awkward code using modName+instName+aliases as
arguments. This commit replaces old handling with use of special
signature similar to inlineArgs introduced in 1edd031.

Endpoint modules are placed in a separate 'registry' and use
different initialization callback signature for simplicity. This makes
them inaccessible for other modules, though they are not supposed to be
anyway.

Endpoint modules are initialized before other modules. This allows
detecting unused configuration blocks by checking for modules
that were not lazily initalized after endpoint initialization.
This relies on endpoint modules being essentially "roots" of
instances dependency tree.

Idea of "semantical module names" is completely dropped now and so
HACKING.md is updated to not mention it.
2019-10-26 21:28:07 +03:00
fox.cpp
0590d5ac3c
smtp_upstream -> smtp_downstream
Terminology is confusing.
2019-10-24 03:42:35 +03:00
fox.cpp
1edd031f6a
module: Revise how inline definition arguments are handled
Stop using weird hacks and just pass them to the module, they are
assumed to be aware of inline definition logic anyway.
2019-09-20 18:52:18 +03:00
fox.cpp
35c3b1c792
Restructure code tree
Root package now contains only initialization code and 'dummy' module.

Each module now got its own package. Module packages are grouped by
their main purpose (storage/, target/, auth/, etc). Shared code is
placed in these "group" packages.

Parser for module references in config is moved into config/module.

Code shared by tests (mock modules, etc) is placed in testutils.
2019-09-08 16:06:38 +03:00
fox.cpp
a4b4706dbb
module: Allow config blocks to have more than one name
This allows more readable configuration files without additional
explanations in cases where a single module is used for multiple
purposes.

Also cleans up certain problems with modules that rely on block
names having certain semantics (e.g. endpoint modules).
2019-08-27 19:39:49 +03:00
fox.cpp
bd918fb4d9
all: Rename module and update imports 2019-08-25 20:32:53 +03:00
fox.cpp
d5297903d7
Fix typos fround by misspell 2019-06-01 18:23:38 +03:00
fox.cpp
a72eb5d968 Pass config.Map to modules for initialization 2019-04-06 23:52:36 +03:00
NamedKitten
b7664258f9
Fix typo in module.go 2019-04-01 16:29:59 +03:00
fox.cpp
addc2e8490 Rename go-sqlmail to go-imap-sql
Maddy module is named just 'sql' now.
2019-03-30 17:34:19 +02:00
fox.cpp
5507c9f58b Drop module.Version
We can just report versions in debug log now.
2019-03-30 17:34:19 +02:00
fox.cpp
0d5bd96a5b Make module initialization two-phase
This allows modules to reference each other during initialization
independently of configuration blocks order.

Also this allows us to initialize default modules in a more clean way.
2019-03-30 17:34:19 +02:00
fox.cpp
84d150a00f Rework config directives iteration
Create more high-level wrapper (config.Map) instead of walking syntax
tree directly.
2019-03-30 17:34:19 +02:00
fox.cpp
09acaeff39 Allow to define tls and hostname outside of module configuration
This allows to set hostname or tls for all modules, making it possible
slightly cleaner configuration.
2019-03-30 17:34:19 +02:00
fox.cpp
530c077beb Address feedback from inital review & fix few problems
All configuration directives now use underscores instead of dashes for
consistency with Caddy conventions.

Disallow defining multiple module instances with implicit name.

Remove global module.WaitGroup and add as field where it is necessary
(endpoint modules).

buf.Reset() and use rewind Reader in SMTP pipeline.

Rename several entities in code (NewModule => FuncNewModule, CfgTreeNode
=> Node, etc).

Also fix several warnings from linters.
2019-03-30 17:34:19 +02:00
fox.cpp
1a738d1111 Replace caddyfile parser with custom one
Reasons are explained here:
https://github.com/emersion/maddy/issues/15#issuecomment-473340377
2019-03-30 17:34:19 +02:00
fox.cpp
da8c66c9a3 Drop module.IMAPBackend, fix few typos, add module.WaitGroup
IMAPBackend is not necessary, WaitGroup is useful for graceful shutdown.
2019-03-30 17:34:19 +02:00
fox.cpp
b3baf8ad25 Add base Module interface and global registry 2019-03-30 17:34:19 +02:00