Commit graph

15 commits

Author SHA1 Message Date
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