Commit graph

874 commits

Author SHA1 Message Date
fox.cpp
c3ebbb05a0
Generalize message flow restrictions
Set of flow restrictions is represented as a "limits" module instance
that can be either created inline via "limits" directive in some modules
(including "remote" target and "smtp" endpoint) or defined globally and
referenced in configuration of modules mentioned above.

This permits a variety of use cases, including shared and separate
counters for various endpoints and also "modules group" style sharing
described in #195.
2020-02-15 17:02:48 +03:00
fox.cpp
100ed13784
limiters: Generalize RateSet and rename to BucketSet
Makes it reusable with other limiters e.g. concurrency limiter.
2020-02-15 17:02:47 +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
5fa11e8597
target/remote: Allow to share outbound SMTP policies via top-level config blocks
See #195.
2020-02-14 22:33:28 +03:00
fox.cpp
9396e12e89
config/module: Add GroupFromNode utility for use in module groups 2020-02-14 21:59:50 +03:00
fox.cpp
91129abe58
docs: Do not lie about maddy simplicity
It is pretty much not that simple as e.g WildDuck and not at all magical
like caddy.

It is (going to be) as powerful as Postfix & Dovecot combo. Except that
it is not tainted by 20 years of maintaining compatibility while adding
features, not tainted by defaults that were reasonable two decades ago
and so on.

maddy is locking in users by using a custom storage format, though. So
saying "GTFO, use a different server if you need that" is not a very
reasonable path to take.
2020-02-10 19:41:46 +03:00
fox.cpp
8bdf039d80
Fix linter warnings
cmd/maddyctl: Silence errcheck warning for TcSetAttr.
check/command: Log Process.Interrupt errors.
check/dnsbl: Remove unused listedAction field.
config/lexer: Fix typo in comment.
2020-02-08 03:32:28 +03:00
fox.cpp
e5e2fa1b92
config/lexer: Fix missing 'return nil, err' line 2020-02-08 03:24:39 +03:00
fox.cpp
539692c30b
Update dependencies + go mod tidy 2020-02-08 03:23:50 +03:00
fox.cpp
87cde0c91b
docs: Add page with implemented RFCs 2020-02-08 03:23:05 +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
4f12ec4c99
target/remote: Fix race condition in MTASTS test
https://builds.sr.ht/~emersion/job/147975
2020-02-07 23:00:28 +03:00
fox.cpp
f931cbfe45
Rewrite build scripts
New script build.sh is much more suitable for downstream packaging
(e.g. ./build.sh package) than hacked together package.sh wrapper for
get.sh while still being usable for "effort-less" installation.

Additionally, hostname setting in get.sh is flawed in many ways and is
not reimplemented in build.sh.

build.sh has proper command line options that allow to customize build
configuration and installation prefixes.
Documentation page get.sh is removed since all applicable environment
variables and flags are documented in ./build.sh --help.

build.sh can be called from the source directory to build maddy from
*this* source instead of forced 'go get' that was used in get.sh.
However, if build.sh is called not from the source directory, it clones
the repo and (optionally) uses the specified commit. This keeps build.sh
usable in curl|bash commands.

Due to the way source code is fetched, build.sh uses Git tags instead of
Go module versions as get.sh did.
2020-02-07 20:33:58 +03:00
V1A0
a704bba062 Update README.md
Wrong link
2020-02-07 15:56:45 +00:00
fox.cpp
a5e4ed8031
Put a number of restrictions on directive names
This is important to keep syntax unambiguous
e.g. '{env:placeholder}' vs '{ env:placeholder }' (see #185).
2020-02-04 20:17:17 +03:00
fox.cpp
47777793ed
pkg/cfgparser: Rework environment expansion syntax
This commit replaces two variants borrowed from caddy with {env:name}
syntax that is consistent with value placeholder syntax used in several
other places in maddy.
2020-02-04 20:03:19 +03:00
fox.cpp
102770d443
config/lexer: Do not panic on I/O errors 2020-02-04 20:00:20 +03:00
fox.cpp
93cd9525f4
Unbreak PAM/shadow authentication support
Implement minimal version of removed auth_perdomain directive
specifically for these modules.

Closes #172.
2020-02-04 19:03:24 +03:00
fox.cpp
01c981a023
Add SMTP ratelimit directives to maddy.conf
Makes it explicit and gives us ability to change default values without
affecting existing deployments.
2020-02-04 18:49:44 +03:00
fox.cpp
8cca657d7b
Reenable STARTTLS endpoints in default config
TLS is enforced anyway for authentication. Enabling "old-style" STARTTLS
endpoint makes sense for interoperability purposes.
2020-01-06 23:31:33 +03:00
Max Mazurov
0899e2b789
Update README.md
Update "Features" section to be more up-to-date with current status and add more fancy words to it.
Add Related projects section.
2020-01-05 12:19:44 +00: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
a0d5605337
dist: Include AppArmor profiles
Not installed by default since they are more or less experimental
and systemd sandboxing provides roughly the same level of isolation.
2020-01-04 18:29:58 +03:00
fox.cpp
1b2b101f8e
dist: Remove DynamicUser from systemd units
It is only a good thing to use for simple stateless daemons.  It is
possible to use StateDirectory to store state, but it is extremely
limited. Notably, only service processes and root can correctly access
the state directory. This makes up for a bad practice to run maddyctl as
root what in turn screws up permissions on files in messages directory
when imap-* subcommands are used.

Migration note: Users of systemd unit with DynamicUser enabled should
move /var/lib/private/maddy to /var/lib/maddy before starting maddy
after update.
2020-01-03 02:08:50 +03:00
fox.cpp
813bbb992e
Update copyright year in LICENSE
It is roaring 20s, people!
2020-01-02 19:12:10 +03:00
fox.cpp
14505f4de1
config: Reload TLS server certificates once in a minute
Use of inotify and possibly other mechanisms poses portability risks.
Notably, "cross-platform" abstractions such as fsnotify library remove
access to certain features that are important to use it correctly in
some cases e.g. it is preferable to listen only for IN_CLOSE_WRITE on
Linux instead of IN_MODIFY to prevent races and unexpected failures.

Pooling approach avoids such problems by either running reload code at a
different time than actual renewal or retrying later if parse fails.
With certificates being renewed before expiry (e.g. 1 week before) delay
is not a signficiant problem.

Closes #160.
2020-01-02 19:12:10 +03:00
fox.cpp
a88a1a96b5
docs: Mention MTA-STS in the Setting up tutorial
DANE is complex and requires its own (potentially lengthy) tutorial on
how to configure it properly. MTA-STS, on the other hand, is designed to
be simple to deploy so recommend to configure it in the Setting up
tutorial.
2020-01-02 19:12:10 +03:00
fox.cpp
ed9e2daed7
dist: Set ExecReload to send SIGUSR1+SIGUSR2 to process
It is not recommended by systemd.service(5) to use signals in
ExecReload, but we do not have a better solution now.
2020-01-02 19:12:10 +03:00
fox.cpp
126eb2e33f
docs: Document handled signals in maddy(1) 2020-01-02 19:12:10 +03:00
fox.cpp
e2cfa47a86
config: Reload TLS certificates on SIGUSR2 2020-01-02 19:12:10 +03:00
fox.cpp
1d06f8ae79
modify/alias_file: Reload aliases on SIGUSR2 2020-01-02 13:22:28 +03:00
fox.cpp
24a580a338
Report "reloading" state to systemd when running reload callbacks 2020-01-02 12:38:02 +03:00
fox.cpp
ea40a8fbc5
Implement global callbacks for "shutdown" and "reload"
This allows modules (and any other code) to implement arbitrary actions
on server shutdown and "reload". Later will be used to address issues
like #160. There are no plans to implement complete configuration
reloading, however, since it adds a lot of problems to the modules
framework and it is believed to be "not worth it" at the moment.

Closes #130.
2020-01-02 12:26:32 +03:00
fox.cpp
1b661f6eab
target/remote: Fix race conditions in tests initialization 2019-12-29 19:27:56 +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
ff982cd1c3
dist: Use Restart=on-failure in systemd units
With RestartPreventExitStatus to prevent restart spam on configuration
errors.
2019-12-28 18:41:56 +03:00
fox.cpp
3593a0b7ae
modify/dkim: Fix the wrong RSA key format being used for .dns file
The DNS record uses X.509 subjectPublicKeyInfo, not bare RFC 8017
RSAPublicKey.
2019-12-28 18:41:55 +03:00
fox.cpp
4ca9cc2d59
storage/sql: Fix the race between Close and EnableUpdatePipe goroutine 2019-12-28 18:41:55 +03:00
fox.cpp
850ef87247
Rename 'state' and 'runtime' directives to 'state_dir' and 'runtime_dir'
maddy(1) was incorrect calling them 'statedir' and 'runtimedir'.
Name with 'dir' is preferred since it is more explicit. Use of
underscores is consistent with other directives.
2019-12-28 18:41:55 +03:00
fox.cpp
c0a73bc3d0
target/remote: Implement STARTTLS Everywhere list support 2019-12-28 18:41:55 +03:00
fox.cpp
21b589b5da
Document Unicode support details 2019-12-28 18:41:55 +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
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
kk-boop
be21756ee1 dist: enable RW access to maddy database location 2019-12-26 07:07:11 +00:00
kk-boop
e8aaee3b7b get.sh: fix go toolchain version mismatch
Fixes go toolchain download version and unpack version mismatch, now both rely on the variable.
2019-12-21 17:27:07 +00:00
letto4135
bca4b7030e config: Changed yes/no to accept different true/false type values (#183).
Added different values to the acceptable yes/no per issue #181. Also handled the case of the input by changing to lowercase.

Closes #181.
2019-12-20 15:00:45 +00:00
fox.cpp
282d8e75a8
testutils: Mark DoTestDelivery as a test helper 2019-12-13 21:37:53 +03:00