Commit graph

912 commits

Author SHA1 Message Date
fox.cpp
a45c7090c4
Improve auth. provider interface
The authentication provider can now provide multiple authorization
identities associated with credentials. Protocols that support that
(e.g. JMAP, SASL) can let the client select the wanted identity.
2020-02-27 01:22:47 +03:00
fox.cpp
8f1d57293c
docs: Several minor edits
Remove examples/ dir reference from REDME. It no longer exists.
Mention scdoc in installation tutorial.
Fix vim joke formatting.
Mention systemctl daemon-reload in intallation tutorial.
2020-02-23 17:42:45 +03:00
fox.cpp
494fd2ac72
build.sh: Remove wget dependency
It is rather silly to use curl to fetch the script itself (in tutorial)
and use wget internally.
2020-02-23 17:33:51 +03:00
fox.cpp
fdb6d0493d
Remove "in early development" disclaimers 2020-02-23 04:29:45 +03:00
fox.cpp
d2a68adf74
docs: Be more specific about build.sh dependencies
It uses Git to clone the repo and wget to download toolchain if it is
missing.
2020-02-23 04:27:57 +03:00
fox.cpp
36578663e2
build.sh: Check GOMOD value correctly
It can be empty if modules mode is disabled.

While at it, increase the Go version to download if it is missing.
2020-02-23 04:27:03 +03:00
fox.cpp
a288d2e144
docs: Mention prebuilt binaries in the setup tutorial 2020-02-23 02:15:31 +03:00
fox.cpp
0b7d8fc369
build.sh: Use absolute path to the Go toolchain in PATH
It was relative to the build directory which might not be the actual
current directory when calling go elsewhere.
2020-02-23 02:13:17 +03:00
fox.cpp
126dbdd307
docs: Add release checklist 2020-02-22 23:16:58 +03:00
fox.cpp
bd9122d92c
storage/sql: Fix BodyParsed error being ignored. 2020-02-22 23:06:37 +03:00
fox.cpp
65240ebc91
Add integration tests suite for some code paths 2020-02-22 23:06:20 +03:00
fox.cpp
353c1edd5e
Move Received header field generation into pipeline code 2020-02-22 23:02:00 +03:00
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
d28b4a5dfa
endpoint/smtp: Protect command handlers with a mutex
Makes sure delivery is in consistent state when it is closed due to
shutdown.
2020-02-22 04:32:46 +03:00
fox.cpp
394668e7d1
dns: Fix DNS override not being used in some cases
PreferGo is necessary to force Go resolver to be used. Otherwise it
might use the CGo resolver and never call DefaultResolver.Dial.
2020-02-18 20:55:44 +03:00
fox.cpp
e890b96e81
check/dnsbl: Fix typo in *_threshold directive names 2020-02-18 20:53:04 +03:00
fox.cpp
8249d9a22a
check/spf: Fix the wrong enhanced code used for "permanent error" case 2020-02-18 20:52:26 +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
e98dc8ce4d
ci: Run integration tests 2020-02-18 18:10:14 +03:00
fox.cpp
7b5111f514
Implement the integration testing library 2020-02-18 17:38:15 +03:00
fox.cpp
f097d64293
build.sh: Improve script portability
It should work fine with BusyBox basename and grep now.
2020-02-17 19:35:14 +03:00
fox.cpp
c495ade723
build.sh: Quote LDFLAGS 2020-02-17 18:47:30 +03:00
fox.cpp
44ba1f13c3
docs: Fix-up f55914372: Add missing escape for * 2020-02-17 17:42:32 +03:00
fox.cpp
a8a046617a
build.sh: Fix a few subtle errors in --version flag handling
--longoptions is replaced with -l to stay compatible with busybox
getopt.

Options switch block was checking --buildversion by accident.

.git/ check was not running popd in case of failure.
2020-02-17 17:40:50 +03:00
fox.cpp
da9bf22441
address: Implement validMailboxName
Closes #113.
2020-02-16 21:29:36 +03:00
fox.cpp
ff81f74b5b
smtpconn: Rewrite 552 code into 452
Closes #149.
2020-02-16 20:03:56 +03:00
fox.cpp
f559143728
target/queue: Increase the amount of tries, decrease delay scale factor
This makes server more aggressive in retrying delivery. The total
attempts time is approximately the same (around 5 days).

Notably, the increased amount of attempts is needed to handle large
recipient lists where the remote server sometimes rejects subset of them
with "Too Many Recipients" code.

See #149.
2020-02-16 19:56:57 +03:00
fox.cpp
8635a11293
target/queue: Rework error handling to track retries per-recipient
While was not strictly needed before, it is necessary in the presence of
limits and other internal target errors that should cause the delivery
to get rescheduled without increasing retries counter.
2020-02-16 16:28:39 +03:00
fox.cpp
497384efd2
Remove examples/ directory
All necessary example configuration should be explained in the
documentation in the form of tutorials.
2020-02-16 02:42:37 +03:00
fox.cpp
fee43f7971
docs: Explain how to configure maddy with multiple domains
Closes #198.
2020-02-16 02:31:03 +03:00
fox.cpp
5bf8cb9f03
endpoint/smtp: Limit amount of Received header fields
Closes #79.
2020-02-16 01:31:47 +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
3c536dd026
internal/remote: Fix-up tests 2020-02-15 23:49:01 +03:00
fox.cpp
3b8c02b998
endpoint/smtp: Add option to use FS as a temporary body store
Closes #76.
2020-02-15 23:49:01 +03:00
fox.cpp
98cdd2704d
Restructure default configuration to use module groups 2020-02-15 17:08:35 +03:00
fox.cpp
aa2600aa50
msgpipeline: Run per-recipient body modifiers and checks 2020-02-15 17:08:35 +03:00
fox.cpp
4a875e69dc
endpoint/smtp: Move limit enforcement before "incoming message" log record
Avoid the possibility of logs flooding before limits can be applied.
2020-02-15 17:02:48 +03:00
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