✉️ Composable all-in-one mail server. https://maddy.email
Find a file
fox.cpp d1df9f60be
queue: Fix race-conditions in queue tests
Improper queue initialization by filling fields manually instead of
calling NewQueue resulted in Queue objects created in tests having
no workersStop channel (nil), making Queue.Close no-op. This caused
race-conditions because test code assumes that Queue.Close will wait
for queue goroutines to stop before returning.

Queue late-initialization logic is factored out into Queue.start
function. Now newTestQueueDir calls NewQueue, modifies fields of
returned object and calls Queue.start.
2019-08-27 02:06:13 +03:00
.github docs: Fix meta-data in issue templates 2019-08-26 02:12:19 +03:00
buffer buffer: Move to a separate package 2019-08-25 20:23:13 +03:00
cmd all: Rename module and update imports 2019-08-25 20:32:53 +03:00
config config/lexer: Copy from caddy repository 2019-08-26 19:49:45 +03:00
log log: Move \n handling to output callbacks 2019-08-25 20:23:13 +03:00
module all: Rename module and update imports 2019-08-25 20:32:53 +03:00
mtasts all: Rename module and update imports 2019-08-25 20:32:53 +03:00
shadow shadow: remove duplicated filename bits 2019-04-14 01:31:41 +03:00
.build.yml ci: Remove -race flag 2019-08-26 23:19:44 +03:00
.gitignore Initial commit 2016-11-07 17:26:14 +01:00
address.go Fix binding to IPv6 addresses 2019-05-11 15:43:12 +00:00
address_test.go Fix binding to IPv6 addresses 2019-05-11 15:43:12 +00:00
auth.go Make auth_domains checks case-insensitive 2019-06-14 00:58:39 +03:00
auth_test.go Add a few tests for auth_domains/auth_perdomain 2019-06-14 00:59:37 +03:00
check_group.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
check_test.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
config.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
directories.go Fix libexecdir/statedir being empty by default 2019-05-06 02:21:24 +03:00
dispatch_config_test.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
dispatcher.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
dispatcher_config.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
dispatcher_test.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
dummy.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
envelope_checks.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
externalauth.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
go.mod config/lexer: Copy from caddy repository 2019-08-26 19:49:45 +03:00
go.sum config/lexer: Copy from caddy repository 2019-08-26 19:49:45 +03:00
imap.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
LICENSE docs: Update copyright, repo links and IRC channel in README 2019-08-25 20:29:35 +03:00
maddy.1.scd docs: Update copyright, repo links and IRC channel in README 2019-08-25 20:29:35 +03:00
maddy.conf Update default configuration file to use new functionality 2019-08-25 20:23:13 +03:00
maddy.conf.5.scd docs: Update copyright, repo links and IRC channel in README 2019-08-25 20:29:35 +03:00
maddy.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
msgauth.go Update go-msgauth 2019-04-14 23:45:16 +03:00
queue.go queue: Fix race-conditions in queue tests 2019-08-27 02:06:13 +03:00
queue_test.go queue: Fix race-conditions in queue tests 2019-08-27 02:06:13 +03:00
README.md docs: Turn IRC channel mention into a webchat link 2019-08-26 02:16:21 +03:00
remote.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
resolver.go Allow using custom resolver implementation for testing purposes 2019-06-10 19:24:33 +03:00
smtp.go smtp: Bump default recipients count limit to 20000 2019-08-26 16:30:09 +03:00
sql.go sql: Case-fold and deduplicate recipients 2019-08-26 02:30:38 +03:00
sqlite3.go Allow disabling go-sqlmail with SQLite3 support 2019-03-30 17:34:19 +02:00
stateless_check.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
submission.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
target_test.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
timewheel.go Address PR feedback 2019-05-05 19:29:12 +03:00
tls.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
utils_test.go all: Rename module and update imports 2019-08-25 20:32:53 +03:00
validation.go dispatcher: Implement config parser 2019-08-25 20:23:13 +03:00

maddy

builds.sr.ht status

Simple, fast IMAP+SMTP mail server.

Maddy implements Mail Transfer agent (MTA), Mail Submission Agent (MSA), Mail Delivery Agent (MDA) and IMAP server functionality in one application.

⚠️ Warning: maddy is in development, many important features are missing, there are bugs and performance can be bad.

Feel free to join the IRC channel: ##maddy on irc.freenode.net.

Getting started

Installation

You need Go 1.11.4 or newer. A C compiler is required for SQLite3 storage support, you can disable SQLite3 support by passing -tags 'nosqlite3' to go build. Also you need to enable modules support to get the right version. Set GO111MODULE environment variable to on.

export GO111MODULE=on
go get github.com/foxcpp/maddy/cmd/maddy@master

You can also compile and install helper binaries from cmd/maddy-pam-helper and cmd/maddy-shadow-helper. See corresponding README files for details.

Configuration

Start by copying contents of the maddy.conf to /etc/maddy/maddy.conf (default configuration location).

With this configuration, maddy will create an SQLite3 database for messages in /var/lib/maddy and use it to store all messages. You need to ensure that this directory exists and maddy can write to it.

Configuration syntax, high-level structure, and all implemented options are documented in maddy.conf(5) man page.

You can view page source here (it is readable!) or generate man page using scdoc utility:

scdoc < maddy.conf.5.scd > maddy.conf.5

go-imap-sql database management

go-imap-sql is the main storage backend used by maddy. You might want to take a look at https://github.com/foxcpp/go-imap-sql and https://github.com/foxcpp/go-imap-sql/tree/master/cmd/imapsql-ctl for how to configure and use it.

export GO111MODULE=on
go get github.com/foxcpp/go-imap-sql/cmd/imapsql-ctl

You need imapsql-ctl tool to create user accounts. Here is the command to use:

imapsql-ctl --driver DRIVER --dsn DSN users create NAME

License

MIT