Commit graph

43 commits

Author SHA1 Message Date
fox.cpp
8bdf039d80
Fix linter warnings
cmd/maddyctl: Silence errcheck warning for TcSetAttr.
check/command: Log Process.Interrupt errors.
check/dnsbl: Remove unused listedAction field.
config/lexer: Fix typo in comment.
2020-02-08 03:32:28 +03:00
fox.cpp
850ef87247
Rename 'state' and 'runtime' directives to 'state_dir' and 'runtime_dir'
maddy(1) was incorrect calling them 'statedir' and 'runtimedir'.
Name with 'dir' is preferred since it is more explicit. Use of
underscores is consistent with other directives.
2019-12-28 18:41:55 +03:00
fox.cpp
a574b9fbb2
Use Unix socket to pass IMAP updates from maddyctl to daemon
There is abstraction 'updates pipe' defined for future use with
configuration involving IMAP data replication (e.g. multiple nodes with
maddy instances + PostgreSQL replicas + S3 bucket for messages).

However, for the case of local SQLite3 DB, limited UDS-based
implementation is provided. It solves the problem of maddyctl not being
able to tell the server about modifications it makes. Alternative to
this approach would be to have server actually perform operations and
maddyctl being a dumb API client, but this requires a lot more complex
IPC interface and will not work when the server is down.
2019-12-13 17:31:35 +03:00
fox.cpp
bf188e454f
Move most code from the repo root into subdirectories
The intention is to keep to repo root clean while the list of packages
is slowly growing.

Additionally, a bunch of small (~30 LoC) files in the repo root is
merged into a single maddy.go file, for the same reason.

Most of the internal code is moved into the internal/ directory. Go
toolchain will make it impossible to import these packages from external
applications.

Some packages are renamed and moved into the pkg/ directory in the root.
According to https://github.com/golang-standards/project-layout this is
the de-facto standard to place "library code that's ok to use by
external applications" in.

To clearly define the purpose of top-level directories, README.md files
are added to each.
2019-12-06 01:35:12 +03:00
fox.cpp
196755bc11
storage/sql: Remove support for the _perdomain directives
Domain is now always required. See #172.
2019-12-02 21:05:38 +03:00
fox.cpp
a167c8ba45
Move -state, -runtime flags into configuration
While using maddyctl with non-standard directories, users always have to
specify them using command-line arguments, which is inconvenient. This
commit allows maddyctl to read these values from the configuration,
requiring only the path to the configuration file to be specified.

To ensure consistency and avoid confusion, paths specified in
the configuration are required to be absolute.

Due to inability to set MADDYSTATE, MADDYRUNTIME, etc before reading the
configuration, these environment variables were removed.
2019-11-15 20:51:44 +03:00
fox.cpp
b3a09835de
Move all code from cmd/maddy into root package
Build info helpers can be reused by maddyctl.
Same goes for directory configuration.
2019-11-15 19:34:20 +03:00
fox.cpp
fb3d86aaf9
cmd/maddyctl: Fix users create -p argument being ignored 2019-11-12 20:36:28 +03:00
fox.cpp
77ac88bb6f
cmd/maddyctl: Remove left over checks for --unsafe 2019-10-25 00:09:57 +03:00
fox.cpp
ced3b2ea24
cmd/maddy: Put configured directories into environment variables
Makes them usable in config through env. expansion.
2019-10-23 23:48:15 +03:00
fox.cpp
ba0a2e221c
Fix bunch of linter warnings
Some fixed warnings are not actual problems. I just want output
golangci-run to be smaller. Otherwise it is problematic to see
actual problems found by linters due to amount of noise.

testutils, ctl/maddyctl: Remove quite a lot of unused entities.
msgpipeline: Fix typo in log message.
msgpipeline: Add missing 'case 0' for 'reject' directive parsing
msgpipeline: Preallocate slice in parseChecksGroup
Check errors in some places in tests.
smtp_upstream: Move DATA command use into Commit
target/queue: Avoid copying sync.Mutex
    Not a problem since it is not used after copying, but I just want
    govet to shut up.
2019-10-22 04:06:59 +03:00
fox.cpp
f9cd1e1c9a
cmd/maddy, cmd/maddyctl: Make Version a variable
Constants can't be modified by linker flags.
2019-10-20 16:56:01 +03:00
fox.cpp
0fd89a376a
cmd/maddyctl: Make version constants handling consistent with main executable
In particular, allow to set Version constant for use when module build
info is not available (executable is built using 'go build' instead
of 'go get').
2019-10-20 13:46:52 +03: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
5f8f447a36
config: Move parser code into config/parser
To keep it separate from other code in 'config' package that now
contains many shared configuration matchers.
2019-10-16 02:05:06 +03:00
fox.cpp
52a8a1e032
cmd/maddy: Remove fallbacks for printBuildInfo on Go 1.11
We require Go 1.13 now.
2019-09-28 13:35:14 +03:00
fox.cpp
b83edbad88
cmd/maddy: Prefer Go 1.12 embedded build info over version constant 2019-09-19 01:48:54 +03:00
fox.cpp
a39bce8d26
cmd/maddy: Add version (-v) flag
Closes #136.
2019-09-19 01:48:48 +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
3d60bfa2db
cmd/maddy-pam-helper: Copy pam.c from auth/pam
It needs to be slightly alerted (no build constraint).
2019-09-15 04:13:38 +03:00
fox.cpp
5b1622ad48
cmd/maddy: Allow to set logging target from command line
Useful to redirect log messages generated before config is parsed.
2019-09-15 04:03:24 +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
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
38465f7308
cmd/maddy: Allow to enable pprof HTTP endpoint
This is a very useful tool for performance analysis, having it as hand
without the need to always modify the source code to enable it is simply
convenient.

Also now we can ask users to use it when reporting performance bugs.
2019-09-01 14:14:03 +03:00
fox.cpp
bd918fb4d9
all: Rename module and update imports 2019-08-25 20:32:53 +03:00
fox.cpp
8747c8dd42 Allow to enable debug log before configuration is loaded 2019-05-05 19:24:09 +03:00
fox.cpp
84db7d4fc8
cmd/maddy-shadow-helper: Fix README.md
In the first section, we compare maddy-shadow-helper to maddy-pam-helper, but maddy-shadow-helper was mentioned.
2019-04-16 18:22:02 +00: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
d1b688669e config: do not capitalize config-related error messages 2019-04-06 23:50:06 +03:00
fox.cpp
a199a6c8bc Move example PAM configuration to separate file
To make it easier for maintainers to install it.
2019-03-30 22:59:35 +02:00
fox.cpp
c9b0e10983 Drop session component from example PAM configuration
Irrelevent to mail server authentication.
2019-03-30 22:59:35 +02:00
fox.cpp
18f25160df Address feedback
Unexport shadow.SecsInDay
Add -Wall -Werror -Wpedantic to CFLAGS in main.go.
run() => run(void).
Check for getline's buffer length.
Check for NULL returned from malloc.
2019-03-30 22:59:35 +02:00
fox.cpp
c2519ccdeb Implement support for PAM-less local authentication
Using /etc/shadow directly. Allows to get rid of C dependency (libpam).
2019-03-30 22:59:35 +02:00
fox.cpp
7684377a2d Implement PAM authentication helper binary 2019-03-30 22:59:35 +02:00
emersion
dd2d74b982
cmd/maddy: fix Printf calls 2019-03-30 17:44:22 +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
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
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
e9b413b58c
Move maddy/ to cmd/ 2019-01-10 16:21:16 +01:00