Commit graph

41 commits

Author SHA1 Message Date
Nick Cao
15163e7520
pass_table: fix user hash creation 2022-06-24 17:09:14 +08: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
2677e190dc
Merge branch 'master' into dev 2022-02-19 14:08:50 +03:00
fox.cpp
7f4438a8a3
auth/dovecot_sasl: Remove e.Path check altogether
Unix sockets have e.Path, TCP sockets don't.
2022-02-16 20:33:25 +03:00
Jon Lundy
d2f9c5834e invert path check 2022-02-13 19:05:10 +03:00
fox.cpp
c0eacfa0f3
Merge maddyctl and maddy executabes
Closes #432.
2022-01-07 00:37:49 +03:00
fox.cpp
dcec70ec5c
auth/shadow: Remove support for MD5-based hashes
Reported privately by Devendra Bhatla.
Security advisory GHSA-qh54-9vc5-m9fg.
2021-10-11 19:39:00 +03:00
Gusted
8f30f559a1 refactor(errors): return errors where possible 2021-08-10 19:33:54 +03:00
Gusted
b8d8ca6301 refactor(gofumpt): run gofumpt over the code 2021-08-10 19:33:54 +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
a1777db310
auth/ldap: Correctly fallback to other URLs 2021-07-15 16:27:22 +03:00
fox.cpp
956e9ed65f
Remove deprecated 0.3 module name aliases 2021-07-15 16:27:15 +03:00
fox.cpp
e0792c2dbb
auth: Implement LDAP BindDN lookups
Currently connection management code is rather native, there is definitely a room for improvements (e.g. pooling?)

Closes #273
2021-07-14 22:08:42 +03:00
fox.cpp
6d44617840
Use context.Context in module.Table
Closes #366.
2021-07-10 14:56:43 +03:00
Akhil Thayyil
53ed899cbc
refactoring error handling in sasl auth 2020-11-22 13:10:38 +03:00
fox.cpp
e00350a117
auth/plain_separate: Make configuration directives actually work
Woops....
2020-09-19 18:05:01 +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
03d9e52627
Rename modules and introduce namespace-aware module name lookups
See #248.
2020-07-15 01:31:05 +03:00
fox.cpp
0f1b6039f9
auth/dovecot_sasl: Assume TLS is used during authentication
Close #225.
2020-05-24 00:35:54 +03:00
fox.cpp
d954353375
auth/dovecot_sasl: Add missing returnConn calls 2020-05-05 02:00:32 +03:00
fox.cpp
958fbd1ef7
auth/dovecot_sasl: Do not offer 'private' mechanisms to clients 2020-05-05 01:20:52 +03:00
fox.cpp
f6738f1897
Fix-up e06f2e201: Add missing module.Register, bump go-dovecot-sasl version 2020-05-05 00:56:16 +03:00
fox.cpp
e06f2e201c
Implement Dovecot authentication client support 2020-05-04 22:06:38 +03:00
fox.cpp
43e980c80f
Implement module.Table for most authentication modules
This allows modules to be used as a table to check account existence.

auth/pass_table: Implement module.Table interface
auth/shadow: Implement module.Table interface
auth/plain_separate: Implement module.Table interface
2020-05-04 12:41:25 +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
46502217ed
Remove config.Map.MatchErr()
Obscure and often misused.
2020-03-05 02:26:29 +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
e0c11040e2
auth/pass_table: Fix-up tests 2020-03-03 20:47:32 +03:00
fox.cpp
cdd01c8e37
Implement table-based authentication provider 2020-03-01 02:36:54 +03:00
fox.cpp
55a91a37b7
Revert authorization/authentication split
Authentication provider module is responsible only for authentication.
Nothing more. Access control (authorization) should be kept separate.
2020-02-28 01:38:40 +03:00
fox.cpp
3092ca0ca5
Lift restrictions on authentication credentials in shadow/pam modules
With new authorization/authentication identities split, it is possible
to have non-email authentication identity while using email authorization
identity.
2020-02-28 00:31:34 +03:00
fox.cpp
744dd3e10d
Implement separate lookups for username and password in authentication
Closes #56.
2020-02-28 00:29:41 +03:00
fox.cpp
eaaadfa6df
Implement & integrate generic SASL authentication support
This should make it possible to implement OAuth and TLS client
certificates authentication.
2020-02-27 21:40:04 +03:00
fox.cpp
a45c7090c4
Improve auth. provider interface
The authentication provider can now provide multiple authorization
identities associated with credentials. Protocols that support that
(e.g. JMAP, SASL) can let the client select the wanted identity.
2020-02-27 01:22:47 +03:00
fox.cpp
93cd9525f4
Unbreak PAM/shadow authentication support
Implement minimal version of removed auth_perdomain directive
specifically for these modules.

Closes #172.
2020-02-04 19:03:24 +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