Commit graph

72 commits

Author SHA1 Message Date
fox.cpp
531cf78a26
Bump go-imap-sql verison
Also remove accidentally added test.conf.

See #510.
2022-06-25 18:42:38 +03:00
fox.cpp
80328b8dee
Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
fox.cpp
37bfe3bbd6
Merge branch 'dev' 2022-06-18 18:29:55 +03:00
fox.cpp
cf94882052
auth/pam: Fix double-free crash
conv_func may be called multiple times and should return
a unique pam_response each time.

Closes #272.
2022-03-06 16:07:59 +03:00
fox.cpp
7ee6a39c6a
auth/pam: Check for account/password expiry
See GHSA-6cp7-g972-w9m9. Thanks Youssef Rebahi-Gilbert (ysf) for
reporting the issue.
2022-03-06 15:52:36 +03:00
fox.cpp
c0eacfa0f3
Merge maddyctl and maddy executabes
Closes #432.
2022-01-07 00:37:49 +03:00
fox.cpp
cca7b485f6
cmd/maddyctl: Migrate to urfave/cli/v2 2022-01-06 04:41:29 +03:00
fox.cpp
89d1505478
Remove remaining references to go-imap-specialuse^ 2022-01-06 03:48:38 +03:00
fox.cpp
778de83987
Merge branch 'master' into dev 2022-01-06 03:45:56 +03:00
fox.cpp
b217232c29
Remove references to merged extension packages 2022-01-06 03:43:26 +03:00
Gusted
32b75262ad refactor(ifelse): shorten logic where possible 2021-08-10 19:33:54 +03:00
Gusted
53cb4c06c2 refactor(errors): use errors.is to account wrapped errors 2021-08-10 19:33:54 +03:00
fox.cpp
2e81d5a976
Port existing functionality to go-imap v2 2021-07-18 11:20:13 +03:00
fox.cpp
93cf4f231a Integrate CertMagic ACME client with dns-01 challenge
Support for a subset of libdns providers is added.
Some are enabled by default (assuming they are popular ones). AWS and Google Cloud SDKs take up extra 10 MiB of executable size.

Only filesystem storage is supported as of now.

Closes #3.
2021-07-13 12:38:42 +03:00
fox.cpp
178579d78a
Remove remaining references to 0.3 module names in code and docs 2020-12-13 19:47:27 +03:00
fox.cpp
799ff0ba34
cmd/maddyctl: Fix use of "*" to list all messages
Using "*" comes from times when go-imap-sql mishandled it as 1:*
2020-07-24 12:18:32 +03:00
fox.cpp
2d18ff5a30
MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
fox.cpp
bcceec4fe4
Extract several packages to form a public API 2020-07-15 01:31:06 +03:00
fox.cpp
7d6edaabf6
Remove cmd/migrate-db-0.2 2020-06-01 00:03:19 +03:00
fox.cpp
70c7ec6e95
Move 0.2->0.3 DB migration utility into source tree
Latest version made is somewhat more problematic to build
executables with dependencies without a proper module tree.
2020-05-29 00:50:01 +03:00
fox.cpp
e4cc273520
cmd/maddyctl: Remove dead code 2020-04-26 21:39:55 +03:00
fox.cpp
9ffd87969c
module: Fix ManageableStorage interface to match imapsql methods 2020-04-26 21:32:04 +03:00
fox.cpp
15d7260502
cmd/maddyctl: Create a set of typical mailboxes on IMAP account creation
Closes #219.
2020-04-26 21:30:14 +03:00
fox.cpp
06b1747bb6
cmd/maddyctl: Fix default value for --cfg-block for imap-acct create and remove 2020-04-26 21:21:20 +03:00
fox.cpp
e19d21dfcb
Fully separate authentication from IMAP access
Now imapsql module does not handle authentication. (it was not doing it so well
anyway)

sql_table module was introduced and used in the default configuration as
a replacement for functionality that was implemented by imapsql before.

Parts of maddyctl code were rewritten to make it work transparently with
any IMAP backend or credentials store.

Closes #212.
2020-04-14 00:06:47 +03:00
fox.cpp
134342a366
cmd/maddyctl: Fix imapsql module name mismatch
Forgotten after sql->imapsql rename.
2020-03-22 03:06:09 +03:00
fox.cpp
e7d5418b88
storage/imapsql: Rename and clarify docs
See #212.
2020-03-05 22:04:17 +03:00
fox.cpp
1579ea10b2
Use config.Node instead of *config.Node everywhere
Closes #197.
2020-03-05 02:26:29 +03:00
fox.cpp
cdd01c8e37
Implement table-based authentication provider 2020-03-01 02:36:54 +03:00
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