Commit graph

4 commits

Author SHA1 Message Date
fox.cpp
a8e0a74be9 docs: Convert manual pages into per-module Markdown pages 2022-01-06 21:55:24 +03:00
fox.cpp
c83a2f09dc
docs: Fix a number of links in documentation
Remove link to CONTRIBUTING.md from README.md since it is included
in documentation build and results in broken link since CONTRIBUTING.md
is not included. It does not seem to be possible to include files from
parent directories and symlinks do not work.

Fix man page link in seclevels.md.

Add missing maddy-tables(5) link in maddy(1) "See Also".

Closes #223.
2020-05-31 19:07:40 +03:00
fox.cpp
3cc284ba54
target/remote: Clean up security policies checking
Decouple it from connection estabilishment logic to allow further
extensions without turning it into bloody incomprehensible mess.
2019-12-28 18:41:55 +03:00
fox.cpp
9f523c8c61
target/remote: Rework MX records authentication and TLS enforcement
Previous approach consisted of multiple independent options with unknown
interaction between each other and not offering enough flexibility for
local policy configuration.

Additionally, it was not possible to implement downgrade protection
mentioned in #178 because it was not clear what is "downgrade" since
options were not related in any linear order, this commit makes it
explicit via the "security levels" system:
MX: DNSSEC > MTA-STS > Nothing
TLS: Authenticated+Encrypted > Encrypted > Plaintext

Note DNSSEC and MTA-STS being different levels, they provide different
security guarantees. Keeping them together under "authenticated" level
would not provide enough granularity for levels-based downgrade
protection and local policies.

'common_domain' MX authentication option is removed. It was offering no
real protection and therefore is was problematic to use together with
planned downgrade protection.

All security level errors are marked as temporary to force requeueing
and allow local admin to troubleshoot them without losing messages.

'remote' tests are changed to use testTarget function to initialize
tested module instance, since security levels mapping requires some
pre-initialization.

Support for IP literals in address domain-part is disabled because it
is incompatible with the new verification logic and was broken anyway
(#176).
2019-12-13 21:11:03 +03:00