Commit graph

99 commits

Author SHA1 Message Date
fox.cpp
5247e50e64
Add missing smtp_upstream import 2019-10-16 23:19:40 +03:00
fox.cpp
f048c96e13
smtp_upstream: Implement support for advanced TLS client configuration
Allows configuring TLS versions, cipher suites, client certificates,
etc.
2019-10-16 00:22:49 +03:00
fox.cpp
7efcd81887
modify: Implement replace_rcpt and replace_sender modules
Based on 'rewrite' directive design discussed in #18, but updated
to use new interfaces.

*Does not* close #18, that issue is for file-based mapping.
2019-09-20 21:13:07 +03:00
fox.cpp
1edd031f6a
module: Revise how inline definition arguments are handled
Stop using weird hacks and just pass them to the module, they are
assumed to be aware of inline definition logic anyway.
2019-09-20 18:52:18 +03:00
fox.cpp
2e9a0ea818
Implement log rotation
Closes #132.
2019-09-19 19:36:53 +03:00
fox.cpp
feb1507c75
log: Rework how outputs are handled
Now they are represented by implementations of the log.Output interface
instead of just callbacks. This allows to add additional methods to it.
Mainly, it was done for purpose of Close method for flushing and closing
log files. This is important to make runtime logger reinitialization
(e.g. log rotation) possible.

Additionally, documentation now explains goroutine-safety of logger
objects.
2019-09-19 19:09:25 +03:00
fox.cpp
a887672239
dkim: Implement minimal DKIM verfication
See https://github.com/emersion/go-msgauth/issues/10
for improvements that *should be* made to this initial implementation.
2019-09-18 22:20:04 +03:00
fox.cpp
4e1425f928
cmd/maddy: Remove debug directive hack for command line argument 2019-09-18 22:59:31 +03:00
fox.cpp
290c6d0d50
Remove statedir, libexecdir from global directives
Forgot to remove them.
2019-09-18 22:59:31 +03:00
fox.cpp
6feb6bd8a5
config/map: Allow to specify default value for Bool matcher
It makes sense to allow having default of bool flag to true and
allow writing 'name no' to disable it. This allows getting rid of
"dont", "no" etc in names or certain directives which are meant to be
enabled by default. IMO 'do_x no' looks better than 'dont_do_x'
2019-09-12 02:19:10 +03:00
fox.cpp
c4b4fc1303
Split extauth/pam/shadow modules
Allows faster and simpler implementation for cases when maddy
is running as a privileged user.

Automatic fallback to helper binary is not implemented since otherwise
config directive 'use_helper no' would make less sense and config.Map
does not support "enums" (true/false/not-specified) yet.

Closes #127.
2019-09-10 22:17:38 +03:00
fox.cpp
35c3b1c792
Restructure code tree
Root package now contains only initialization code and 'dummy' module.

Each module now got its own package. Module packages are grouped by
their main purpose (storage/, target/, auth/, etc). Shared code is
placed in these "group" packages.

Parser for module references in config is moved into config/module.

Code shared by tests (mock modules, etc) is placed in testutils.
2019-09-08 16:06:38 +03:00
fox.cpp
312ec4a855
queue: Use the actual domain in From in DSNs 2019-08-30 00:03:37 +03:00
fox.cpp
efa282456f
Don't use term "module instance" in error messages
This is internal terminology, users are presented with more simple
explanation that calls them "configuration blocks".
2019-08-27 19:44:24 +03:00
fox.cpp
a4b4706dbb
module: Allow config blocks to have more than one name
This allows more readable configuration files without additional
explanations in cases where a single module is used for multiple
purposes.

Also cleans up certain problems with modules that rely on block
names having certain semantics (e.g. endpoint modules).
2019-08-27 19:39:49 +03:00
fox.cpp
bd918fb4d9
all: Rename module and update imports 2019-08-25 20:32:53 +03:00
fox.cpp
043c157765 Split pipeline functionality from the smtp module 2019-06-10 16:44:13 +00:00
fox.cpp
94202a22a6
More pedantic error handling in some places 2019-06-04 16:56:21 +03:00
fox.cpp
b61d94f100
Fix global TLS directive being required
Closes #85.
2019-05-28 18:56:17 +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
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
3c40e21817 module: drop GetUninitedInstance, unexport Instances
There is no reason to be able to interact with uninitialized module instances.
2019-04-08 19:34:09 +03:00
fox.cpp
0ddf540d35 Implement lazy initialization of module instances
It is correct fix for initialization order issue introduced in
https://github.com/emersion/maddy/pull/24.
2019-04-08 19:34:09 +03:00
fox.cpp
89ac5d6c67 log: Implement basic redirection support 2019-04-07 00:31:56 +03:00
fox.cpp
18f71d8fc8 Use config.Map for global config directives 2019-04-06 23:52:36 +03:00
fox.cpp
a72eb5d968 Pass config.Map to modules for initialization 2019-04-06 23:52:36 +03:00
fox.cpp
6c22a22e79 Few small fixes
Fix typo in README.
Rename module.GetMod to module.Get.
Use pointer receiver in SMTPUser.Send.
2019-03-30 17:34:19 +02:00
fox.cpp
0d5bd96a5b Make module initialization two-phase
This allows modules to reference each other during initialization
independently of configuration blocks order.

Also this allows us to initialize default modules in a more clean way.
2019-03-30 17:34:19 +02:00
fox.cpp
ee553a4cc4 Rework logging
Implement debug log (can be enabled using `debug` config directive)
Remove errors directive for IMAP endpoint module.
2019-03-30 17:34:19 +02:00
fox.cpp
84d150a00f Rework config directives iteration
Create more high-level wrapper (config.Map) instead of walking syntax
tree directly.
2019-03-30 17:34:19 +02:00
fox.cpp
7f6810f6dc Move default storage initialization from init()
So it will be able to access globalCfg.
2019-03-30 17:34:19 +02:00
fox.cpp
09acaeff39 Allow to define tls and hostname outside of module configuration
This allows to set hostname or tls for all modules, making it possible
slightly cleaner configuration.
2019-03-30 17:34:19 +02:00
fox.cpp
530c077beb Address feedback from inital review & fix few problems
All configuration directives now use underscores instead of dashes for
consistency with Caddy conventions.

Disallow defining multiple module instances with implicit name.

Remove global module.WaitGroup and add as field where it is necessary
(endpoint modules).

buf.Reset() and use rewind Reader in SMTP pipeline.

Rename several entities in code (NewModule => FuncNewModule, CfgTreeNode
=> Node, etc).

Also fix several warnings from linters.
2019-03-30 17:34:19 +02:00
fox.cpp
af62042aec Allow omitting instance_name in config
One will be assigned automatically.
2019-03-30 17:34:19 +02:00
fox.cpp
16b6f8d526 Allow replacing delivery targets for SMTP in default pipeline
Currently default pipeline contains only two delivery steps, but in
future it will include more complex dispatching logic for spam filters,
DKIM and features.
2019-03-30 17:34:19 +02:00
fox.cpp
471821e58b Allow to override default* module instances
Necessary to allow customization of storage backends while using
default configuration for IMAP/SMTP endpoint modules.
2019-03-30 17:34:19 +02:00
fox.cpp
06a84609bc Provide default SMTP pipeline
default-remote-delivery is no-op for now because we don't have
message queue (https://github.com/emersion/maddy/issues/11).
2019-03-30 17:34:19 +02:00
fox.cpp
4ab794f3bb Add version constants 2019-03-30 17:34:19 +02:00
fox.cpp
1a738d1111 Replace caddyfile parser with custom one
Reasons are explained here:
https://github.com/emersion/maddy/issues/15#issuecomment-473340377
2019-03-30 17:34:19 +02:00
fox.cpp
ae6572f24a Rewrite initialization code in accordance with modular design 2019-03-30 17:34:19 +02:00
emersion
98d3caa827
Fix LMTP listeners 2019-03-07 22:56:23 +01:00
emersion
5ad6184ba6
Add hostname command 2019-03-07 22:15:24 +01:00
emersion
fe357c3c83
smtp: add debug upstream 2019-01-11 18:48:12 +01:00
emersion
8a9790de48
Complete LMTP support 2019-01-10 18:15:19 +01:00
emersion
d52fedb0b7
Adds support for pgp, compress, errors in imap 2017-01-19 17:36:15 +01:00
emersion
52de637da3
Adds support for proxy and self-signed certs 2016-12-23 16:38:49 +01:00
emersion
d971092b38
Adds partial support for tls directive 2016-12-23 12:59:39 +01:00
emersion
45c128b5b9
Refactoring, refuse to serve both imap and smtp in the same server block 2016-12-23 12:19:03 +01:00
emersion
e1838e1fea
First commit 2016-12-22 18:58:32 +01:00