Commit graph

11 commits

Author SHA1 Message Date
fox.cpp
ce3aa8bb68
imap, sql: Enable SPECIAL-USE extension 2019-09-20 21:14:24 +03:00
fox.cpp
c106f30f05
sql: Use inline arguments for driver-dsn tuple 2019-09-20 19:31:10 +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
3270ba57ba
Perform rDNS lookup asynchronously and generate Received early
New implementation newer inserts 'for' field into Received field.
It could reveal details of address aliases and forwarding used by
server, we don't want to make this possible.

Closes #135.
2019-09-18 22:59:31 +03:00
fox.cpp
fa06ede0a4
sql: Join dsn directive arguments into a single string
PostgreSQL driver uses the rather weird DSN format:
"dbname=maddy user=maddy sslmode=disable".

This commit allows using this format without having to wrap it in
quotes.
2019-09-18 22:59:30 +03:00
fox.cpp
6ba26d1e4e
Rework how work directories are handled
Most previously existing ways to specify Config/State/Libexec
directories are removed. Now they can be set only using
command line flags. Generally, having multiple ways to set these
values can be confusing and also believed to be unnecessary.

All relative paths in the configuration are now interpreted
relatively to the State directory.

Additionally, new value is added: Runtime directory. It will used
in the future for temporary files.

All directories that should be writable will be created on startup
if possible and checked for writebility.
2019-09-15 04:03:24 +03:00
fox.cpp
0099a5de6f
config: Add and use Map.Duration and Map.DataSize matchers
Closes #98.
2019-09-13 02:55:04 +03:00
fox.cpp
61b29a6f68
Remove MsgMeta.OurHostname field
Closes #112.
2019-09-13 00:29:52 +03:00
fox.cpp
5bb21461cd
remote: Include Received header in outgoing messages 2019-09-12 03:43:15 +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
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