Commit graph

37 commits

Author SHA1 Message Date
Gusted
b8d8ca6301 refactor(gofumpt): run gofumpt over the code 2021-08-10 19:33:54 +03:00
Gusted
d0928d2743 refactor: remove/_-ify unused params
Hi!

I've removed some unused params. But if they where needed for e.g. interface type I've simply `_` them. Also I have to instances to fix tests params, whereby they were passed but not initialized at all, they are in`internal/target/remote/remote_test.go` and `internal/modify/dkim/dkim_test.go`. All test are still passing so it seems like I didn't break anything.

I might've refactored some code away that actually is used but wasn't implemented correctly, but as far as I see their is nothing wrong or erroring going on.
2021-07-31 22:43:27 +03:00
fox.cpp
2d18ff5a30
MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
fox.cpp
bcceec4fe4
Extract several packages to form a public API 2020-07-15 01:31:06 +03:00
fox.cpp
46502217ed
Remove config.Map.MatchErr()
Obscure and often misused.
2020-03-05 02:26:29 +03:00
fox.cpp
1579ea10b2
Use config.Node instead of *config.Node everywhere
Closes #197.
2020-03-05 02:26:29 +03:00
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
522537e07e
Don't leak old os.File on log rotation 2019-11-12 23:29:49 +03:00
fox.cpp
08e6219013
Fix panic on startup with 'log off' 2019-10-09 20:43:04 +03:00
fox.cpp
2e9a0ea818
Implement log rotation
Closes #132.
2019-09-19 19:36:53 +03:00
fox.cpp
feb1507c75
log: Rework how outputs are handled
Now they are represented by implementations of the log.Output interface
instead of just callbacks. This allows to add additional methods to it.
Mainly, it was done for purpose of Close method for flushing and closing
log files. This is important to make runtime logger reinitialization
(e.g. log rotation) possible.

Additionally, documentation now explains goroutine-safety of logger
objects.
2019-09-19 19:09:25 +03:00
fox.cpp
5b1622ad48
cmd/maddy: Allow to set logging target from command line
Useful to redirect log messages generated before config is parsed.
2019-09-15 04:03:24 +03:00
fox.cpp
163997c40a
log: Don't add timestamp to messages when logging to stderr
In most cases, the stderr will be recorded by system log daemon and
this will result in duplicate timestamps.

'log stderr_ts' option is added for cases where timestamps are needed.
2019-09-15 04:01:36 +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
1a2d6724ac
config: Create log file if it doesn't exist 2019-09-01 14:14:03 +03:00
fox.cpp
1b83a43021
stateless_check: Add 'ignore' option for fail_action
Check failures are still logged, this allows testing the check
before actually enforcing it (with fail_action reject or fail_action
quarantine).
2019-08-31 10:53:58 +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
537e802dd7
config: Oops, fix compilation error 2019-08-28 15:45:40 +03:00
fox.cpp
9ba5403ea4
config: Remove unused arg from initInlineModule 2019-08-28 04:19:51 +03:00
fox.cpp
e7b373219c
stateless_check: Implement scoring and quarantining 2019-08-28 04:19:14 +03:00
fox.cpp
4764ab3826
config: Slightly adjust inline module definition logic
Consider anything with more than 1 argument to be inline definitions.
Combined with previous change it allows writing stuff like
'deliver_to proxy smtp://blah:25'. This looks natural despite
actually using kinda strange (for non-programmers) abstractions
of maddy module framework.
2019-08-27 22:24:00 +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
8579c50762 dispatcher: Don't log anything while debug is off
On a second thought, I think its source module responsbility to
report failures.
2019-08-25 20:23:13 +03:00
fox.cpp
cfea080b4c Clean up inline module initialization
It was quickly hacked in, built on the pile of broken abstractions
and was source of several bugs.

This commit is almost full rewrite of most functions in config.go.
2019-08-25 20:23:13 +03:00
fox.cpp
5df1dad72c
Do not modify Node argument passed to initInlineModule
It causes config.Map state to be corrupted which make some
directives "disappear".

Closes #84.
2019-05-28 20:32:15 +03:00
fox.cpp
de4c4eb4dc Extract duplicated logic into moduleFromNode func 2019-05-13 19:37:59 +03:00
fox.cpp
2c54f91047 Allow to define module instances "inline" (see #42) 2019-05-13 19:37:59 +03:00
fox.cpp
7db67acad8 Drop most of the implicit defaults in favor of explicit configuration (#43)
* Drop most of the implicit defaults in favor of explicit configuration

We no longer follow caddy's "zero-configuration" approach. Mail is much
more complex than HTTP and we want to be explicit about things, always.

* Remove commented out directives from maddy.conf
2019-04-13 12:28:45 +03:00
fox.cpp
5b4df6e9ee
Rename 'delivery' step to 'deliver'
It was (incorrectly) named 'deliver' in documentation but 'delivery' in
code.
2019-04-11 17:59:32 +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
741c997fdb log: Correctly handle 'log off' + add missing \n 2019-04-07 00:31:56 +03:00
fox.cpp
2ae192e12d log: Implement local syslog support 2019-04-07 00:31:56 +03:00
fox.cpp
89ac5d6c67 log: Implement basic redirection support 2019-04-07 00:31:56 +03:00
fox.cpp
ee553a4cc4 Rework logging
Implement debug log (can be enabled using `debug` config directive)
Remove errors directive for IMAP endpoint module.
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