Commit graph

65 commits

Author SHA1 Message Date
fox.cpp
5f809c3157
docs: Use mkdocs to render documentation 2019-12-06 23:23:02 +03:00
fox.cpp
fbe99652b1
Document DMARC support and it enable it by default
Despite being incomplete, it can be still be useful and provide
protection for users.

The missing part is the report generation, which is defined as a part of
a minimal implementation by RFC 7489, though.
2019-11-18 18:56:21 +03:00
fox.cpp
d553feae15
docs: Update link to the IRC channel in README 2019-11-09 21:09:52 +03:00
fox.cpp
52c040a221
Rename config.d/ to examples/, add README.md to it 2019-11-07 23:34:04 +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
8c178f7d76
docs: Add mailing list link to README
Setting up communication mediums for feedback and other stuff. At this
point I already decided to use GitHub issue tracker as a task
tracker only, not as a generic Q&A board as some projects do.
2019-10-31 01:57:51 +03:00
fox.cpp
cf7e0d0378
docs: Drop ToC from README
README is small enough now to make it unnecesary.
2019-10-30 02:59:11 +03:00
fox.cpp
969425dd6d
docs: Move manual installation instructions from README to Wiki 2019-10-30 02:56:40 +03:00
fox.cpp
9c8ef4a2ae
Add get.sh script for semi-automated installation
Given amount of steps actually needed to install maddy, it makes sense
to automate at least some of them.

Also, since maddy repo is replicated on foxcpp.dev/maddy,
it can be used like this:
curl https://foxcpp.dev/maddy/get.sh | bash

That's, of course, is a partial solution. In future, package
repository least for Debian will be created with properly built
packages.

Response to possible complaints about curl|bash:
There is not that much difference between that and cloning repo
to run 'make install'. People who care can inspect the script
either way and ones who don't care... well, don't care.
2019-10-30 02:43:22 +03:00
fox.cpp
ccb9c9df4c
Change default values for base config macros
Example $(hostname) is now equal to $(primary_domain).

$(local_domains) now contains only $(primary_domain).

tls directive contains values that represent certbot
store structure, allowing easier configuration by symlinking
/etc/maddy/certs to /etc/letscrypt/live.
2019-10-30 01:15:53 +03:00
fox.cpp
512338100d
docs: Slightly clarify Quick start section, add link to detailed tutorial 2019-10-29 23:22:02 +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
48e7f6f08a
docs: Clarify some points in Features section 2019-10-28 22:55:46 +00:00
fox.cpp
62cce22b0e
docs: Clean up README.md
Features section:
- Put stuff into 4 categories
- Extend list of planned features.

maddyctl section is merged into Building section.

Configuration section is merged into Quick start to actually provide 
step-by-step instructions for initial configuration.

System users, PostgreSQL, multi-tenant config sections are 
removed. They are considered "advanced" and so just
add noise to README which is supposed to be an introduction.
They will be extended into complete tutorials and published
on Project Wiki.
2019-10-28 18:55:00 +00: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
Hexawolf
5031797192 Style and grammar update to Markdown files
This commit majorly updates all Markdown documents by attempting to maintain a consistent (80 columns per line) formatting and addresses some display bugs in other Markdown renderers due to improper use of Markdown - GitHub is a little broken. But it also addresses grammar and even makes semantical changes to some paragraphs.

Notably, in README.md, section "System authentication helper binaries" had relatively severe changes.

To future contributors: if trying to maintain any kind of wrapping standard, I suggest using special extensions, like Rewrap for VSCode.
2019-10-21 19:41:13 +00:00
fox.cpp
23e06d3df2
Update README.md
Add link to rendered pages

Closes #92.
2019-10-21 00:57:32 +00:00
fox.cpp
ae6decd876
Redesign imapsql-ctl utility (now named maddyctl)
Now it is not tied go-imap-sql details (with the exception of special
features), allowing it to be used with other storage backends that will
be added in the future.

--unsafe flag is removed and now maddyctl explicitly asks for
confirmation in cases where transaction may be unsafe for connected
clients. --yes flag disables that. In the future, maddy can be
extended with IPC interface to push updates so it this restriction
can be lifted altogether.
2019-10-20 01:50:07 +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
d227fe269e
Update README.md
Update Documentation section to point to new manual pages directory.
2019-10-16 17:06:56 +00:00
fox.cpp
a0cd7c4e73
docs: Split and slightly extend man pages
Now modules are documented in separate man pages depending on their
main purpose. This generally keeps things more organised than with
one huge maddy.conf(5) page to document everything.
2019-10-16 02:05:08 +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
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
2d0740d82b
Update README.md
Fix the typo in path mentioned in System authentication section. It is /usr/lib/maddy, not /var/lib/maddy.
2019-09-22 11:56:10 +03:00
fox.cpp
665b025cc4
Use replace_rcpt module to implement plus-addressing in default config
Closes #77.
2019-09-20 21:20:34 +03:00
fox.cpp
fd269ff955
docs: Add section about mailbox namespaces to README 2019-09-19 22:26:24 +03:00
fox.cpp
f3b8ffad73
Use config macros in default configuration
We don't want users to go though configuration replacing all
placeholders, are we?
Closes #120.
2019-09-19 22:23:36 +03:00
fox.cpp
d7ce796893
docs: Fix broken link in README 2019-09-19 20:37:59 +03:00
fox.cpp
179e1ea76a
docs: Update Features section in README
We have DKIM verification implemented now, also add JMAP as a planned
feature.
2019-09-19 01:52:20 +03:00
fox.cpp
35c87a2a63
docs: Update README to use 'go get' for building from sources
Binaries built on Go 1.12 using go get include main module version
which we use for 'maddy -v'.
2019-09-19 01:48:54 +03:00
fox.cpp
80766d308a
Update README.md
Clarify a bit use of 'go get golang.org/dl/goX.Y'.
Fix Note about runtime dependencies.
2019-09-17 01:37:29 +03:00
fox.cpp
365a24b5fe
Update README.md
A lot of stuff ranging from 'building from source' to configuration
is explained in much more detail.

Table of Contents is added to make navigation easier.
2019-09-15 04:03:24 +03:00
fox.cpp
6ef5b93424
docs: Turn IRC channel mention into a webchat link
Makes it easier for people who are not familiar with IRC.
2019-08-26 02:16:21 +03:00
fox.cpp
ba0a7c243a
docs: Update copyright, repo links and IRC channel in README 2019-08-25 20:29:35 +03:00
Avamander
8a34a2193c Made the README.md more verbose about the build conf
Made the README.md more verbose about the build configuration to make it easier to build without SQLite3
2019-07-28 00:36:46 +03:00
Avamander
1ec6a49400 Fixed misspells in README.md 2019-07-02 09:34:01 +03:00
fox.cpp
05cc70f9ef
Update README.md
maddy is MDA too
2019-06-05 15:44:41 +00:00
fox.cpp
9c4981508e
Don't tell users to compile imapsql-ctl with build tags
Not required since 0.3.
2019-05-29 14:31:35 +03:00
fox.cpp
c2a66b0deb
Add section about imapsql-ctl to README 2019-05-19 17:37:59 +03:00
fox.cpp
bbb2da395c
Change minimal Go version in README
Go 1.11.X before 1.11.4 incorrectly handles checksums generated by Go
1.12. We should tell users to use Go 1.11.4 to avoid checksum
verification errors.
2019-05-19 17:37:59 +03:00
fox.cpp
6d121bd33c
Force command from README to use latest commit from master
Currently we have only 0.0.1 which is basically useless. We don't want
to get users confused because the command without version specification
will download latest release.
2019-05-13 00:59:18 +03:00
Simon Ser
7ae0268cec
readme: add IRC channel 2019-05-12 11:20:39 +03:00
fox.cpp
6944fa3657 Rework documentation
CONFIG_REFERENCE.md is now maddy.conf(5) man page.
README.md is cleaned up.
Also add maddy(1) man page.
2019-04-17 20:47:39 +03:00
fox.cpp
7db67acad8 Drop most of the implicit defaults in favor of explicit configuration (#43)
* Drop most of the implicit defaults in favor of explicit configuration

We no longer follow caddy's "zero-configuration" approach. Mail is much
more complex than HTTP and we want to be explicit about things, always.

* Remove commented out directives from maddy.conf
2019-04-13 12:28:45 +03:00
fox.cpp
d10fbd0a9e
Remove "Inspired from Caddy" line from README
We are becoming less and less Caddy-like with each commit.
2019-04-11 18:45:54 +03:00
fox.cpp
6e17ecab31 Change default file locations (#35)
* Change default files location as described in #27

* config: Change default config file name
2019-04-08 19:57:21 +03:00
fox.cpp
741c997fdb log: Correctly handle 'log off' + add missing \n 2019-04-07 00:31:56 +03:00
fox.cpp
2ae192e12d log: Implement local syslog support 2019-04-07 00:31:56 +03:00
fox.cpp
89ac5d6c67 log: Implement basic redirection support 2019-04-07 00:31:56 +03:00
fox.cpp
9f578e78d2 Update README.md
Config parser now supports environmental variables
2019-04-06 23:50:06 +03:00