Commit graph

25 commits

Author SHA1 Message Date
fox.cpp
03d9e52627
Rename modules and introduce namespace-aware module name lookups
See #248.
2020-07-15 01:31:05 +03:00
fox.cpp
bd9a3026b1
docs: Fix formatting and fix possibly confusing MTA-STS example 2020-06-10 23:11:42 +03:00
fox.cpp
2a19d455f3
docs: Fix wrong name of 'targets' directive for smtp_downstream 2020-06-03 14:02:58 +03:00
bn4t
e24c9ede3c
docs: Change github to github.com in 0.3 migration guide (#237)
Ref. #237
2020-06-01 14:08:53 +00:00
fox.cpp
7d6edaabf6
Remove cmd/migrate-db-0.2 2020-06-01 00:03:19 +03:00
fox.cpp
ab948e1494
Update minimal required Go version to 1.14 2020-05-31 20:48:34 +03:00
fox.cpp
22cc68ff20
docs: Add page about IMAP-only configuration 2020-05-31 18:54:49 +03:00
fox.cpp
70c7ec6e95
Move 0.2->0.3 DB migration utility into source tree
Latest version made is somewhat more problematic to build
executables with dependencies without a proper module tree.
2020-05-29 00:50:01 +03:00
fox.cpp
7ba699e595
docs: Add smtp-only.md page 2020-05-24 00:34:51 +03:00
fox.cpp
5523a84866
docs: Add upgrading instructions
Closes #214.
2020-05-11 16:00:07 +03:00
fox.cpp
e6a5f6daec
docs: Update outdated tutorials
Closes #222
2020-05-11 13:42:47 +03:00
fox.cpp
e19d21dfcb
Fully separate authentication from IMAP access
Now imapsql module does not handle authentication. (it was not doing it so well
anyway)

sql_table module was introduced and used in the default configuration as
a replacement for functionality that was implemented by imapsql before.

Parts of maddyctl code were rewritten to make it work transparently with
any IMAP backend or credentials store.

Closes #212.
2020-04-14 00:06:47 +03:00
bn4t
609a8fd235 Add missing packages for compilation and fail2ban setup 2020-04-13 18:54:29 +00:00
fox.cpp
9915c8a881
modify/dkim: Support mulitple ADMDs per module instance
Allows to use macro expansion like $(local_domains) to configure DKIM
for all domains.

Closes #199.
2020-03-13 03:28:49 +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
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
a288d2e144
docs: Mention prebuilt binaries in the setup tutorial 2020-02-23 02:15:31 +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
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
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
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
1f73c8f955
docs: Add tutorials/alias-to-remote
In some cases, such usage may be desired but it is not supported by the
default maddy configuration for security reasons.

This page replaces examples/remote-aliases.conf example as it provides a
much more detailed explanation.
2019-12-07 03:55:34 +03:00
fox.cpp
d886ddd297
docs: Move the project documentation from GitHub Wiki
Having it in the same directory as the source code makes it simplier to
keep in sync with the source code itself.
2019-12-06 22:56:47 +03:00