Commit graph

76 commits

Author SHA1 Message Date
fox.cpp
857b5fc7a5
Update go-smtp
See https://github.com/emersion/go-smtp/pull/90
2020-02-22 04:35:30 +03:00
fox.cpp
c83f0168a1
Update go-smtp
See https://github.com/emersion/go-smtp/pull/89
2020-02-18 18:38:42 +03:00
fox.cpp
97926c0131
storage/sql: Report serialiation failures as temporary SMTP errors
To make it actually happen instead of hanging forever, go-imap-sql's
naive default for SQLite3's PRAGMA busy_timeout is changed to 5000ms.

Closes #146.
2020-02-16 01:14:05 +03:00
fox.cpp
44c640be48
Update dependencies
go-message added size limitations.
Closes #118.
2020-02-15 23:49:01 +03:00
fox.cpp
539692c30b
Update dependencies + go mod tidy 2020-02-08 03:23:50 +03:00
fox.cpp
56ffdff07f
storage/sql: Enable I18NLEVEL=1 IMAP extension
go-imap-sql is already Unicode-aware so no other changes are needed.
I18NLEVEL=2 is not generally worth the effort so it is ignored.
2020-02-08 03:23:00 +03:00
fox.cpp
843001e218
Update go-imap-sql 2020-01-04 18:41:58 +03:00
fox.cpp
5156a5176b
Update go-imap-sql
Closes #190.
2020-01-04 18:31:26 +03:00
fox.cpp
bafedd5792
modify/dkim: Do not refold the signature field
Closes #187.
2019-12-29 19:06:07 +03:00
fox.cpp
ef61216b4e
target/remote: Use foxcpp/go-mtasts
It has a number of design changes to make it more generic and also misc
improvements. The big deal here is the EFF preload list support.
2019-12-28 18:41:55 +03:00
fox.cpp
c7f3e0caaa
target/remote: Implement basic DANE support
Enforce TLS if there is a "secure" TLSA record for the recipient MX.

Closes #50.
2019-12-13 17:31:36 +03:00
fox.cpp
a574b9fbb2
Use Unix socket to pass IMAP updates from maddyctl to daemon
There is abstraction 'updates pipe' defined for future use with
configuration involving IMAP data replication (e.g. multiple nodes with
maddy instances + PostgreSQL replicas + S3 bucket for messages).

However, for the case of local SQLite3 DB, limited UDS-based
implementation is provided. It solves the problem of maddyctl not being
able to tell the server about modifications it makes. Alternative to
this approach would be to have server actually perform operations and
maddyctl being a dumb API client, but this requires a lot more complex
IPC interface and will not work when the server is down.
2019-12-13 17:31:35 +03:00
fox.cpp
dae3d5bd09
endpoint/smtp: Finalize the LMTP support
Closes #137.
2019-12-07 05:42:11 +03:00
fox.cpp
0412cfa65e
Implement SMTPUTF8 support in smtp_downstream and remote modules
The SMTPUTF8 support is not required from the remote server unless it is
needed to transmit the SMTP envelope. The implementation assumes that we
will not accept a message without the SMTPUTF8 flag set with non-ASCII
addresses.
2019-12-02 19:35:51 +03:00
fox.cpp
577793fbf3
Implement utilities for normalization of domain names and email addresses
Newly added functions to address and dns packages implement Unicode and
IDNA2008-aware "clean" and "equal" operations.

The equality check for local-parts of addresses is intentionally defined
to be case-insensitive, this is consistent with other implementations
and ensures safer behavior for the situation when the final MTA handles
local-part in a case-insensitive way.

The equality check for the domain part diverges from the strict
definition provided by IDNA2008, converting both values into U-labels
form instead of A-labels if they are in different forms in the first
place. However, it is believed to yield the same results as the
comparsion strictly as defined by IDNA2008 as long as NFC normalization
is applied afterwards (the 'symmetry rule' also defined by IDNA2008
will hold then). The actual IDNA2008 equivalence is more problematic to
implement for cases where NFC normalization requirement ("MUST" from RFC
5890) is broken by the client. As we all know, clients are terrible at
following complex standards and Unicode is hard. Remember the
robustness principle: "Be conservative in what you send, be liberal in
what you accept".

Additionally, U-labels form is planned to be used internally in maddy in
all places converting the A-labels form only where necessary for
interoperability. This form is more useful in logs (A-labels look like a
gibberish for the end-user) and also is practically considered to be the
"true" representation of IDNs and should be prefferred in environments
where legacy compatibility is not a concern.

References:
- https://unicode.org/reports/tr15/ (UAX#15)
- https://tools.ietf.org/html/rfc5890 (IDNA2008)
- https://blog.golang.org/normalization
2019-12-02 19:35:50 +03:00
fox.cpp
a15118f18c
Update go-smtp
This commit does not enable support for SMTPUTF8 (we are not conformant
to RFC 6531 yet, #165) nor for REQUIRETLS (more changes are needed to
implement it correctly, #123).

It just fixes code to account for backward-incompatible changes and adds
a new field to MsgMetadata to store MAIL FROM arguments in.
2019-11-29 04:18:11 +03:00
fox.cpp
5b9b7bb550
endpoint/smtp: Add tests
since the endpoint/smtp initialization is rather complex, tests use
New+Init instead of creating the Endpoint object directly like it is
done for target/queue and target/remote. This requires a couple of
tricks to create a valid configuration tree for it. This is the reason
dummy module was moved into 'module' package, this wasy it can be
registered and then referenced by the Init code when reading the
configuration.

A small problem was found and fixed in go-mockdns along the way.
2019-11-23 17:47:06 +03:00
fox.cpp
f26df04579
target/remote: Add support for IP literals in place of recipient domains
We merely do an rDNS lookup on the IP address and use the returned
domain name to do everything. It seems to be the only one way to
verify certificates while using IP literals, since most servers don't
have a certificate valid for its IP, only for domain.

Most legitimate mail servers have forward-confirmed rDNS records, so it
should work fine.
2019-11-17 00:36:07 +03:00
fox.cpp
a208a8af21
msgpieline: Fix data race in FetchRecord and applyResults
applyResults modifies the header while FetchRecord (running in parallel
calls extractDomains that reads it.

Additionally, another race condition was caused by go-mockdns not
copying the slice before returning, that was addressed upstream:
* ed42e5b Copy slice before returning it from Lookup*
2019-11-16 23:10:50 +03:00
fox.cpp
7ab274dc27
target/remote: Add tests for delivery and MX authentication
Minimal mock server is implemented using go-smtp in testutils package.
This means some problems can be hidden by the go-smtp processing, but
this believed to not be a significant problems.

Also I have to export some of the dns and mtasts packages internals
to make them mockable.

Several hooks had to be added to the module object itself:
- net.Dial replacement (Target.dialer)
- mtasts.Cache.Get replacement (Target.mtastsGet)

In meanwhile I learned that message body must end with CRLF and go-smtp
implicitly adds it if it is not present, so I adjusted CheckTestMessage
and DoTestDelivery routines to include it in the body.
2019-11-16 23:10:46 +03:00
fox.cpp
c112b335a0
Update dependencies 2019-11-10 18:41:05 +03:00
fox.cpp
80a0691a82
go mod tidy 2019-11-10 00:11:01 +03:00
fox.cpp
cc93c432dd
check/dns: Add tests 2019-11-09 19:41:07 +03:00
fox.cpp
1d886833c5
Update go-imap-sql
* 42bd4cf Log errors returned to clients
2019-11-09 17:27:28 +03:00
fox.cpp
206a5d61db
Implement support for DNSBL lookups
Currently lacks whitelisting support and return codes filtering.
Both should be implemented in the future.
2019-11-03 12:22:24 +03:00
fox.cpp
6620282912
Implement SPF policy enforcement
apply_spf module implements recommendation from DMARC RFC to not
reject messages based on only SPF policy if DMARC policy is present.

Closes #91.
2019-10-29 23:15:59 +03:00
fox.cpp
51c342bc7a
Update go-msgauth, drop foxcpp/go-msgauth replace
* dkim: Add signer method to return only value of the DKIM-Signature field
* dmarc: Separate Parse from Lookup
* dkim: Always close done channel in Sign
* dkim: Don't pass hash function to Sign for ed25519
* dkim: Add tests for ed25519 signing
2019-10-29 02:32:01 +03:00
fox.cpp
beef9e2455
Implement DKIM signing support
This support is based on github.com/foxcpp/go-msgauth fork until
emerison/go-msgauth#13 gets merged.

Further extensions are required to make sure only messages we can
actually "take responsibility for" are signed.

RSA-2048 is used as a default algorithm when generating new keys.
RSA-4096 can cause trouble with UDP-only DNS due to responses being
bigger than 512 octets. RSA-1024 is too weak and explicitly
disallowed in maddy for new keys. It could be possible to use Ed25519
but support is not widely deployed yet (according to warning in rspamd
docs dated 2019-09). Users concerned about security of RSA-2048 can
switch to RSA-4096 or Ed25519, keeping relevant problems in mind.

Ed25519 key format uses PKCS#8, this seems to be different from other
implementations that just dump key material into a file without any
wrapping. Interoperability is not considered to encourage key
rotation when migration, which is a good thing to do anyway.

There is no option to use "body limit", since it is dangerous
and go-msgauth/dkim does not support it for signing.

The default set of signed header fields is the list used by rspamd.
Most "core" fields are oversigned to provide strict integrity.
"Conditional oversigning" similar to rspamd is not implemented, though
it may be useful, further research is required.

Multi-tentant configuration with DKIM and DMARC is much more verbose,
configuration example is added to config.d/multitentant-dkim.conf to
explain how to make it work.
2019-10-27 20:40:38 +03:00
fox.cpp
7352fc312f
Update go-msgauth 2019-10-21 20:01:21 +03:00
fox.cpp
9a6b0e6e31
check/dkim: Apply broken_sig_actions only if all signatures are invalid
Mailing lists break DKIM signatures by modifing Subject and other header
fields. They are supposed to either include their own DKIM signature
and/or ARC (RFC 8617) seal.
2019-10-19 16:25:12 +03:00
fox.cpp
8970ed3f4e
remote: Implement authenticate_mx directive
See #151.
2019-10-18 21:50:34 +03:00
fox.cpp
379fd60fe8
dns: Add minimal security-aware stub resolver
Now it is a wrapper around miekg/dns library that reports
whether AD flag is set in the response. It does not perform
any verification on its own. This is not going to be implemented due
to complexity of code required to make it work reasonably fast.
2019-10-18 18:41:04 +03:00
fox.cpp
ae8fe2b14e
Fork imapsql-ctl utility from go-imap-sql repo
1. There is only one version for maddy and imapsql-ctl utility.
This prevents confusion about compatibility.

2. Modified imapsql-ctl understands maddy config format, this allows
it to read needed values from it without the need for lengthy commmand
line arguments.

Closes #148.
2019-10-16 23:19:40 +03:00
fox.cpp
5f8f447a36
config: Move parser code into config/parser
To keep it separate from other code in 'config' package that now
contains many shared configuration matchers.
2019-10-16 02:05:06 +03:00
fox.cpp
be8567bacd
Bump go-imap-sql version 2019-10-13 23:40:27 +03:00
fox.cpp
9d3b7f15a4
Update go-imap-sql
* f93c4bc Reduce amount of allocations in message processing code
2019-10-13 16:56:24 +03:00
fox.cpp
c265c7339e
Update go-imap-sql
- fsstore is now required, this is reflected by documentation updates.

Upstream commits:
* 8ee5c96 Fix handling of "null" compression
* d6bc61c Add support for zstd compression
* aa76135 Implement support for LZ4 compression support
* cde9a24 Update VersionStr constant
* 2008a7b Remove schema upgrade operations for older versions
* b6668d0 Remove section about Internal/External BLOBs from README
* e91826c cmd/imapsql-ctl: Remove support for reading driver/DSN from text file
* 0dca68f Rename imapsql.Store -> imapsql.FSStore
* 4071c69 Remove support for handling messages in table rows
* 4c8996e Remove most of the code for storing messages in table rows
* b682ac1 Skip header in openBody if needHeader = false
* 2a263c3 Require fsstore to be used
* 45b437d Remove CI job for testing with MariaDB
* 8d30346 Add 'go 1.12' to go.mod
2019-10-12 03:14:06 +03:00
fox.cpp
e8c6740b49
Update go-imap-sql
* 1679626 Fix wrong order of arguments for setInboxId query
* da0b12c Remove dangling External Store key when message is not added to DB
* c706691 Use Bytes() method on Reader passed to Delivery.Body
* 3d2b5b0 Fix User.inboxId = 0 for newly created users
* 45cd989 Remove schema upgrade restriction
2019-10-11 16:19:35 +03:00
fox.cpp
b6e5ba7876
Update go-imap
See emersion/go-imap#302.
Closes #143.
2019-10-09 20:39:25 +03:00
fox.cpp
baafcd95a2
dispatcher: Remove context.Context support for checks
Use of context.Context for cancellation turned out to be impractical.
Additionally, most maddy configuration will not make use of
configuration where checks can be cancelled.

E.g. it is important to run all checks to generate complete
Authentication-Results header.
Additionally, due to scoring system use (will be used by default
after DMRAC support introduction), we can't rely on a subset of checks
to reject the message.
2019-10-08 17:15:28 +03:00
fox.cpp
ad6f802c6f
remote: Update go-smtp and drop error parsing hacks
Both PRs mentioned before are merged.
2019-09-28 11:54:16 +03:00
fox.cpp
65e5e3b4a8
exterrors: Implement utilities to mark arbitrary errors as temporary
Now exterrors.IsTemporary should be used to check whether error is a
temporary one.

This implementation relies on Go 1.13 error inspection primitives and
thus increases minimal Go version required by maddy accordingly.
2019-09-28 11:53:08 +03:00
fox.cpp
3b46a88aa0
Update dependencies 2019-09-19 23:45:28 +03:00
fox.cpp
d05a3820b0
Add 'go 1.12' to go.mod
Go 1.13 and newer always adds that string, so it can be annoying when
doing unrelated changes.

Note that it is go 1.12, not go 1.12. Later would be pointless since
we don't use anything from Go 1.13. Some distros ship older versions
of Go so it is actually bad to require it to be newer than needed.
2019-09-12 00:47:19 +03:00
fox.cpp
8560a2e7c9
Bump go-imap-sql version
A bunch of important bug-fixes.
2019-09-06 21:41:55 +03:00
fox.cpp
17bfaf0388
Update go-imap-sql version 2019-09-04 01:58:57 +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
e7b373219c
stateless_check: Implement scoring and quarantining 2019-08-28 04:19:14 +03:00
fox.cpp
670405be05
Update dependencies
Close #118.
2019-08-27 23:17:48 +03:00
fox.cpp
5e64421d04
config/lexer: Copy from caddy repository
This removes 36 dependencies we had before just for that one utility.
2019-08-26 19:49:45 +03:00