Commit graph

46 commits

Author SHA1 Message Date
fox.cpp
3270ba57ba
Perform rDNS lookup asynchronously and generate Received early
New implementation newer inserts 'for' field into Received field.
It could reveal details of address aliases and forwarding used by
server, we don't want to make this possible.

Closes #135.
2019-09-18 22:59:31 +03:00
fox.cpp
25a40fe043
module, dispatcher: Implement message rewriting framework
Check.NewMessage is renamed to Check.CheckStateForMsg to allow
a single module to implement both Modifier and Check interfaces.

Due to various implementation details, body and MAIL FROM rewrites
are not applied on per-destination basis.

Closes #134.
2019-09-14 21:58:54 +03:00
fox.cpp
61b29a6f68
Remove MsgMeta.OurHostname field
Closes #112.
2019-09-13 00:29:52 +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
7583e418cb
Rework how check results are reported and processed
In general, the checks interface with added scoring and quarantining
support was not convenient to use enough. Also it was problematic
to add support for Authentication-Results header field generation.

Per-sender and per-recipient checks were not applied to body.
This is fixed now.

Checks inspecting the message header was able to see header
modifications done by other checks. This could lead to unwanted
side-effects and so now checks can't modify the header directly
and instead can only prepend fields to it by returning them.

Additionally, it allows checks to return values for
Authentication-Results field. Each server handling the message should
add only one field, so it is not possible to implement it using header
prepending.

MsgMetadata.CheckScore is removed, now it is managed internally by
dispatcher code and not exposed where it is not needed.

MsgMetadata.Quarantine is no longer set directly by checks code. Future
refactoring may be remove it altogether as it is discouraged to have
mutable flags in MsgMetadata.

On top of that, tests are added for all new code.
2019-08-31 01:15:48 +03:00
fox.cpp
7578b5c183
queue: Rewrite aliased recipients back in DSN 2019-08-30 00:03:37 +03:00
fox.cpp
8b0a48446e
dispatcher: Add basic logic for check scoring 2019-08-28 04:12:02 +03:00
fox.cpp
efa282456f
Don't use term "module instance" in error messages
This is internal terminology, users are presented with more simple
explanation that calls them "configuration blocks".
2019-08-27 19:44:24 +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
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
ac295fed8b dispatcher: Implement message check running 2019-08-25 20:23:13 +03:00
fox.cpp
c7154a62a0 Implement per-source/recipient dispatching logic 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
a592ee90c3 module: Add new message buffering primitives 2019-08-25 20:23:13 +03:00
fox.cpp
b429665d13
Fix gosimple warnings 2019-06-01 18:39:39 +03:00
fox.cpp
d5297903d7
Fix typos fround by misspell 2019-06-01 18:23:38 +03:00
fox.cpp
e349371542 Rework message body handling in pipeline code 2019-06-01 17:36:00 +03:00
fox.cpp
85b81d19d2
sql: Use (new) GetOrcreateUser function 2019-05-29 21:23:37 +03:00
fox.cpp
2c54f91047 Allow to define module instances "inline" (see #42) 2019-05-13 19:37:59 +03:00
fox.cpp
9a08f92b91 Hide sender information from Received header for local senders 2019-05-13 18:40:40 +03:00
fox.cpp
06d1e2c2c2 Add random DeliveryID to delivery context 2019-05-05 19:22:48 +03:00
fox.cpp
a678665683 Implement destination pipeline step (#44)
* smtp: Implement 'destination' pipeline step

* Slightly improve CONFIG_REFERENCE.md

We have rcpt_domain now, so match example should use it.
Add note that 'destination' should be used instead of 'match' in
most cases.
Add another reminder that pipeline steps order matters.

* Create deep copy of DeliveryContext in 'destination' step

* Drop local_only hack

It is not handled properly using 'destination' directive.

* Stop pipeline if there are no recipients left after 'destination' block

* Address feedback

Reword documentation for 'destination'.
Create map with initial capacity in DeliveryContext.DeepCopy
2019-04-14 01:28:11 +03:00
fox.cpp
3c40e21817 module: drop GetUninitedInstance, unexport Instances
There is no reason to be able to interact with uninitialized module instances.
2019-04-08 19:34:09 +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
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
6c22a22e79 Few small fixes
Fix typo in README.
Rename module.GetMod to module.Get.
Use pointer receiver in SMTPUser.Send.
2019-03-30 17:34:19 +02:00
fox.cpp
474ccd8097 Rename module.Extensions to module.IMAPExtensions 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
36a91668a5 Enable APPENDLIMIT, MOVE, CHILDREN IMAP extensions 2019-03-30 17:34:19 +02:00
fox.cpp
3861d0440f Add Received header to processed messages 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
471821e58b Allow to override default* module instances
Necessary to allow customization of storage backends while using
default configuration for IMAP/SMTP endpoint modules.
2019-03-30 17:34:19 +02:00
fox.cpp
8599d92f6d Implement SMTP pipeline 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
c95890ad9e Add initial set of interfaces for modules 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