Commit graph

19 commits

Author SHA1 Message Date
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
9d3b7f15a4
Update go-imap-sql
* f93c4bc Reduce amount of allocations in message processing code
2019-10-13 16:56:24 +03:00
fox.cpp
ad2b510e7a
storage/sql: Allow to enable compression support 2019-10-12 03:14:12 +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
d460d697f6
testutils: Don't benchmark functions separately in BenchDelivery
While providing per-function information, it creates misleading profiler
output.
2019-10-09 11:50:18 +03:00
fox.cpp
8fe5377836
sql: Add benchmark for message delivery code 2019-10-09 01:08:33 +03:00
fox.cpp
ff41747b51
sql: Fix wrong error messaqge
MaxUint32 bytes is 4 GiB, not 2 GiB.
2019-10-08 17:24:46 +03:00
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