Commit graph

16 commits

Author SHA1 Message Date
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
c4df3af4af
testutils: Move DontRecover flag
It was used only in queue tests and so was moved there. This fixes
-tests.debuglog command line flag being present in the maddy executable
as a side effect of testutils package import.
2019-12-06 00:09:07 +03:00
fox.cpp
af3e295424
Fix a bunch of linter warnings
address: ADd missing error check for Split call

check/command, endpoint/smtp: Silence errcheck warnings, errors are
ignored intentionally here.

modify/dkim: Remove unnecessary 'return'

target/smtp_downstream: Log QUIT error
2019-12-02 23:49:19 +03:00
fox.cpp
21f054e699
target/queue: Use OriginalFrom as a DSN recipient
The DSN is supposed to be sent to the actual message sender without any
modifications applied (such as replace_sender).
2019-11-29 01:45:44 +03:00
fox.cpp
741790abfd
target/queue: Fix use of the same ID for all attempts
It was meant to be different, but deliveryTarget.Start was actually
called using the original ID.
2019-11-21 18:50:27 +03:00
fox.cpp
c11612424c
target/queue: Fix data race on Close
While at it, simplify the TimeWheel code to be callback-based rather
than a channel-based. This allows to get rid of second goroutine
(dispatch) to make shutdown logic simplier.

Change the order of operations to close the TimeWheel before waiting for
goroutines to stop. This prevents starting of new goroutines.

Make operations on closed TimeWheel no-op. Otherwise it will cause panics
when the TimeWheel is already closed. No-op behavior is fine, we are
about to discard TimeWheel state anyway and the TimeWheel caller already
saved meta-data needed to restore it on the next start-up to the disk.
2019-11-19 23:17:27 +03:00
fox.cpp
0e60a7c183
target/queue: Fix DSN generation
Use correct enhanced codes in Status fields.
Use null return-path in MAIL FROM, as required by RFC 5321.
Don't generate DSNs for messages with null return-path.
Add tests.
2019-11-15 23:54:40 +03:00
fox.cpp
cf9e81d8a1
Rework how error inspection and logging is done
Previous error reporting code was inconsistent in terms of what is
logged, when and by whom. This caused several problems such as: logs
missing important error context, duplicated error messages, too verbose
messages, etc.

Instead of logging all generated errors, module should log
only errors it 'handles' somehow and does not simply pass it to the
caller. This removes duplication, however, also it removes context
information. To fix this, exterrors package was extended to provide
utilities for error wrapping. These utilities provide ability to
'attach' arbitrary key-value ('fields') pairs to any error object while
preserving the original value (using to Go 1.13 error handling
primitives).

In additional to solving problems described above this commit makes logs
machine-readable, creating the possibility for automated analysis.
Three new functions were added to the Logger object, providing
loosely-typed structured logging. However, they do not completely
replace plain logging and are used only where they are useful (to allow
automated analysis of message processing logs).

So, basically, instead of being logged god knows where and when,
all context information is attached to the error object and then it is
passed up until it is handled somewhere, at this point it is logged
together with all context information and then discarded.
2019-11-02 05:30:48 +03:00
fox.cpp
ba0a2e221c
Fix bunch of linter warnings
Some fixed warnings are not actual problems. I just want output
golangci-run to be smaller. Otherwise it is problematic to see
actual problems found by linters due to amount of noise.

testutils, ctl/maddyctl: Remove quite a lot of unused entities.
msgpipeline: Fix typo in log message.
msgpipeline: Add missing 'case 0' for 'reject' directive parsing
msgpipeline: Preallocate slice in parseChecksGroup
Check errors in some places in tests.
smtp_upstream: Move DATA command use into Commit
target/queue: Avoid copying sync.Mutex
    Not a problem since it is not used after copying, but I just want
    govet to shut up.
2019-10-22 04:06:59 +03:00
fox.cpp
028d8b914c
Rename dispatcher to "msgpipeline"
New name more precisely describes what it is doing now. It was initally
meant to be more generic and usable for other purposes, but I don't
think we will need that flexibility.
2019-10-13 18:42:51 +03:00
fox.cpp
6832ab5d69
queue: Unexport PartialError
Now it is a queue implementation detail.
2019-09-28 11:55:25 +03:00
fox.cpp
cd94dd2c0c
queue: Use PartialDelivery interface instead of PartialError 2019-09-28 11:55:25 +03:00
fox.cpp
957f4a8749
queue: Fix tests to use exterrors 2019-09-28 11:53:08 +03:00
fox.cpp
ca4f73dad8
Fix-up 1edd031 2019-09-20 21:42:14 +03:00
fox.cpp
11fff40ba5
target/queue: Fix logger initialization in tests 2019-09-15 04:19:22 +03:00
fox.cpp
f77b204b5e
Fix-up 35c3b1c
Due to .gitignore, target/queue directory got ignored and was not
commited.

This commit makes problematic ignore filter more strict and adds
accidentally removed directory.
2019-09-08 17:15:18 +03:00