Commit graph

38 commits

Author SHA1 Message Date
fox.cpp
80328b8dee
Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
angelnu
db569891a5 go fmt 2022-01-31 21:59:27 +00:00
angelnu
7bea1fb6ff <void race condition 2022-01-28 02:22:46 +00:00
angelnu
cbcbfa74e5 improve test 2022-01-28 02:13:08 +00:00
angelnu
639f1a609d add test for 1-N 2022-01-28 02:08:37 +00:00
angelnu
6690f3369d addapt testcases 2022-01-27 23:13:56 +00:00
angelnu
eef54139b1 1-n recipent 2022-01-27 22:25:27 +00:00
Gusted
b8d8ca6301 refactor(gofumpt): run gofumpt over the code 2021-08-10 19:33:54 +03:00
fox.cpp
6d44617840
Use context.Context in module.Table
Closes #366.
2021-07-10 14:56:43 +03:00
fox.cpp
5c143530ff
Merge branch 'master' into dev
# Conflicts:
#	framework/address/norm.go
#	go.mod
#	go.sum
#	internal/target/remote/security.go
2021-07-10 00:23:28 +03:00
fox.cpp
a0f2424d78
msgpipeline: Fix small typo in test message 2021-07-09 22:49:32 +03:00
fox.cpp
d275cd044f
Fix two issues in handling of DSN messages in SMTP pipeline and checks
First issue: check.spf CheckBody deadlocks if CheckConnection skipped
the message due to it being locally generated (the case for DSNs).

Second issue: msgpipeline does not call CheckConnection at all
if MAIL FROM is an empty string (which is also the case for DSNs).

tests/issue327_test.go is added based on symptoms from the original
bug report.
See #237.
2021-01-16 21:08:39 +03:00
fox.cpp
bf982ebbea
msgpipeline: Fix wrong effective_rcpt in log messages when sub-pipelines do rewriting 2020-11-21 23:03:02 +03:00
fox.cpp
51ccd84011
msgpipeline: Fix log messages missing for separate (not endpoint) pipelines 2020-10-31 12:29:05 +03:00
fox.cpp
5d46949b25
gofmt -s everything 2020-10-03 18:42:17 +03:00
fox.cpp
ec02cca6f8
Add more recover() at goroutine start points
This is a double-edged sword though as blind panic recovery
can lead to consistency issues in program state.

In particular, halting imapsql update push due to panic can lead
to a deadlock in IMAP code.

Panic in MTA-STS cache maintenance routine can lead to degraded
security.
2020-09-10 20:45:57 +03:00
fox.cpp
2d18ff5a30
MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
fox.cpp
6243b3067c
msgpipeline: Permit duplicate destination/source rules
This allows "the most specific match wins" semantics for
$(local_domains) rule and per-domain matching.
2020-07-18 17:42:17 +03:00
fox.cpp
bcceec4fe4
Extract several packages to form a public API 2020-07-15 01:31:06 +03:00
fox.cpp
03d9e52627
Rename modules and introduce namespace-aware module name lookups
See #248.
2020-07-15 01:31:05 +03:00
fox.cpp
e258555592
Implement Prometheus metrics for SMTP pipeline
Closes #236.
2020-06-10 00:23:12 +03:00
fox.cpp
e85e6b24bd
msgpipeline: Fix to use Raw from go-message 0.12 2020-05-31 14:33:34 +03:00
fox.cpp
d8a6f9dd22
msgpipeline: Use HeaderField.Raw when copying fields around
To make sure the formatting is preserved. This is important for e.g.
DKIM signatures.
2020-05-04 22:18:06 +03:00
fox.cpp
503b558643
msgpipeline: Implement source_in, destination_in
Closes #138.
2020-05-04 15:25:47 +03:00
fox.cpp
9b279735e8
Address several TODO comments
Several comments were removed since they are not worth the trouble.
A few minor issues were addressed.
Most of remaining comments got corresponding GitHub issues assigned.
2020-03-05 02:26:30 +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
e3a438a3c7
Rewrite smtpconn SMTPUTF8 tests, fix code duplication in some other tests
Also drop 'dupl' from golangci.yml. It is not very useful for constant
use.
2020-03-01 02:36:54 +03:00
fox.cpp
353c1edd5e
Move Received header field generation into pipeline code 2020-02-22 23:02:00 +03:00
fox.cpp
aa2600aa50
msgpipeline: Run per-recipient body modifiers and checks 2020-02-15 17:08:35 +03:00
fox.cpp
23a3097591
msgpipeline: Register pipeline as a delivery target module
Allows pipeline routing to be used in places where a regular target is
required. Also allows to share parts of pipeline configurations on the
semantical level (instead of lexical level as it goes with config
snippets), see #195.
2020-02-15 17:02:47 +03:00
fox.cpp
3b888fba61
msgpipeline: Refactor modify{} blocks to work as a "module group" 2020-02-15 00:18:23 +03:00
fox.cpp
708bbd1d20
msgpipeline: Implement same cfg block reuse as mx_auth 2020-02-14 23:32:29 +03:00
fox.cpp
c4ea9a730f
Instrument the SMTP code using runtime/trace
runtime/trace together with 'go tool trace' provides extremely powerful
tooling for performance (latency) analysis. Since maddy prides itself on
being "optimized for concurrency", it is a good idea to actually live up
to this promise.

Closes #144. No need to reinvent the wheel. The original issue
proposed a solution to use in production to detect "performance
anomalies", it is possible to use runtime/trace in production too, but
the corresponding flag to enable profiler endpoint is hidden behind the
'debugflags' build tag at the moment.

For SMTP code, the basic latency information can be obtained from
regular logs since they include timestamps with millisecond granularity.
After the issue is apparent, it is possible to deploy the server
executable compiled with tracing support and obtain more information

... Also add missing context.Context arguments to smtpconn.C.
2019-12-13 17:31:35 +03:00
fox.cpp
305fdddf24
Use context.Context all over the place
It is useful to define background tasks lifetimes more precisely,
especially involving timeouts and other cancellation methods.

On top of that, several tracing facilities are context-based (e.g.
runtime/trace), so it is possible to use them now.
2019-12-13 17:31:35 +03:00
fox.cpp
48e21f566e
Extend .debug.* flags and hide them by default
Allow to override DNS resolver address via the -debug.dnsoverride flag
and SMTP port via -debug.smtpport.

All flags are not available unless maddy is built using the 'debugflags'
tag.
2019-12-13 17:31:35 +03:00
fox.cpp
a6dde6345d
msgpipeline: Fix hang on DMARC fetch error 2019-12-07 05:37:26 +03:00
fox.cpp
0f7ebf57f0
msgpipeline: Report the effective recipient in errors 2019-12-07 01:37:49 +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