Commit graph

12 commits

Author SHA1 Message Date
fox.cpp
dbc030c267
Clean-up lint warnings 2025-01-24 23:34:09 +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
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
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
bcceec4fe4
Extract several packages to form a public API 2020-07-15 01:31:06 +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
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
a6dde6345d
msgpipeline: Fix hang on DMARC fetch error 2019-12-07 05:37:26 +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
Renamed from msgpipeline/check_runner.go (Browse further)