Commit graph

27 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
17bfaf0388
Update go-imap-sql version 2019-09-04 01:58:57 +03:00
fox.cpp
19e806d987
sql: Do not deadlock if no IMAP is configured to consume updates 2019-09-01 14:14:02 +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
f128aa689b
smtp, dispatcher, sql: Use SMTPError with enhanced codes 2019-08-28 14:41:28 +03:00
fox.cpp
f24408c476
sql: Place quarantined messages in Junk directory 2019-08-28 04:12:02 +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
187b96cae0
sql: Case-fold and deduplicate recipients
Closes #94.
Closes #78.
2019-08-26 02:30:38 +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
7e72f31101 sql: Update to implement new delivery target interface 2019-08-25 20:23:13 +03:00
fox.cpp
1bdffb5126
Don't ignore some errors (fix errcheck warnings) 2019-06-01 18:49:38 +03:00
fox.cpp
be7c3ab785 sql: Fix delivery to multiple receipients 2019-06-01 17:36:00 +03:00
fox.cpp
e349371542 Rework message body handling in pipeline code 2019-06-01 17:36:00 +03:00
fox.cpp
ed9780a4d6 Add auth_perdomain and auth_domains directives 2019-06-01 16:24:45 +03:00
fox.cpp
76e3970a96 Add storage_perdomain directive 2019-06-01 16:24:45 +03:00
fox.cpp
35953a18da
Enable MySQL and PostgreSQL drivers unconditionally 2019-05-28 23:46:16 +03:00
fox.cpp
004a3be4e5 sql: Expose access to SQLite performance tweaking options. 2019-05-19 17:19:03 +03:00
fox.cpp
4b108c9c88 sql: Add options to enable fsstore 2019-05-19 17:19:03 +03:00
fox.cpp
ee49a83a4d sql: Use new function names 2019-05-19 17:19:03 +03:00
fox.cpp
b0149ff65b Update to the latest go-imap-sql version 2019-05-19 17:19:03 +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
63d0ab4eef
sql: Return SMTPError with code 550 if user doesn't exist 2019-04-11 00:12:49 +03:00
fox.cpp
646bf43145 log: Use Out function from DefaultLogger if none is set 2019-04-07 00:31:56 +03:00
fox.cpp
a72eb5d968 Pass config.Map to modules for initialization 2019-04-06 23:52:36 +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
Renamed from sqlmail.go (Browse further)