Commit graph

15 commits

Author SHA1 Message Date
fox.cpp
bd918fb4d9
all: Rename module and update imports 2019-08-25 20:32:53 +03:00
fox.cpp
36df546193 Rename DeliveryContext to MsgMetadata, update docs
The name "context" is also used for several other entities. This is
simply confusing. We are getting rid of that fancy word and will leave
it only for context.Context.

Additionally, with the introduction of the new interfaces for most
stuff DeliveryContext struct is no longer used to pass arbitrary
data between modules, it now contains mostly message meta-data and
a few flags, though the latter is now discouraged because it may
lead to problems with concurrency.

Additionally, documentation for some fields in the structure was wrong.

The field DeliveryID is simply renamed to ID for clarity.
2019-08-25 20:23:13 +03:00
fox.cpp
d07d656472 buffer: Move to a separate package
The module package is meant for interfaces implemented by modules and is
not a catch-all for all utilities.
2019-08-25 20:23:13 +03:00
fox.cpp
4af1f46a4d module: Clarify and rename BodyBuffer interface
Close method does not free the "buffer handle", it discards
the underlying data. It is renamed to Remove.

Interface itself is renamed simply into Buffer since it can be used for
any blob, not just message body.
2019-08-25 20:23:13 +03:00
fox.cpp
ba520116ac Add missing header argument for Delivery.Body function
dispatcher: Add missing Body check group execution.
2019-08-25 20:23:13 +03:00
fox.cpp
7741ac7496 dummy: Implement new DeliveryTarget interface 2019-08-25 20:23:13 +03:00
fox.cpp
47ae6e30c5 Remove most of the old code message dispatching code 2019-08-25 20:23:13 +03:00
fox.cpp
0ddf540d35 Implement lazy initialization of module instances
It is correct fix for initialization order issue introduced in
https://github.com/emersion/maddy/pull/24.
2019-04-08 19:34:09 +03:00
fox.cpp
a72eb5d968 Pass config.Map to modules for initialization 2019-04-06 23:52:36 +03: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
601fddb9ed Update dummy module to implement new interfaces 2019-03-30 17:34:19 +02:00
fox.cpp
4ab794f3bb Add version constants 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
5315e16873 Add Dummy module
Useful for testing.
2019-03-30 17:34:19 +02:00