Commit graph

27 commits

Author SHA1 Message Date
fox.cpp
ef7fa210dc
Slightly improve debug logging for complex authentication pipelines 2025-02-01 19:25:16 +03:00
fox.cpp
dbc030c267
Clean-up lint warnings 2025-01-24 23:34:09 +03:00
fox.cpp
120c5c9ea2
endpoint: Clean-up dead auth_map code 2025-01-24 23:12:45 +03:00
fox.cpp
78e4600a17
Upgrade all dependencies
1. go-smtp is replaced by a fork that reverts StartTLS removal.
2. SASL LOGIN is no longer supported by upstream go-sasl, readded disabled by default.
3. Updated endpoint code to match new go-smtp authentication interfaces.
4. certmagic repo had some renames
5. Minimum Go version increased to 1.23 to match dependencies.
2025-01-24 21:29:48 +03:00
Aleksei Zhukov
3c4fe105cd
Proxy protocol support for SMTP and IMAP 2023-04-16 14:40:57 -05:00
fox.cpp
a7001ab730
Implement auth_map and storage_map at endpoint level
This makes auth_map do what its name implies. Old auth_map in storage
module is deprecated and will be removed in the next release.
2023-03-12 13:52:04 +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
fox.cpp
59564cbd37
Upgrade to latest go-imap v2 revision
Based on latest v1, therefore having a number of extensions
merged in now.
2022-01-06 02:59:15 +03:00
Gusted
2e0162d7d2 refactor(log): use provided modName 2021-08-10 19:33:54 +03:00
Gusted
32b75262ad refactor(ifelse): shorten logic where possible 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
665c443de6
Enable THREAD=ORDEREDSUBJECT and SORT extensions for go-imap-sql
Closes #252.
2020-07-27 16:46:50 +03:00
fox.cpp
2d18ff5a30
MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
fox.cpp
04d39f2163
endpoint/imap: Add NAMESPACE extension 2020-07-22 16:06:49 +03:00
fox.cpp
cee8bbdce7
Migrate TLS certificate loading to use modules for sources 2020-07-15 17:58:47 +03:00
fox.cpp
bcceec4fe4
Extract several packages to form a public API 2020-07-15 01:31:06 +03:00
fox.cpp
79e3e3385d
Fix inconsistency in SASLAuth logger name for endpoints
See #221.
2020-05-08 12:30:11 +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
20233fa4c4
Fix scopelint warning in SASL callbacks 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
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
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
56ffdff07f
storage/sql: Enable I18NLEVEL=1 IMAP extension
go-imap-sql is already Unicode-aware so no other changes are needed.
I18NLEVEL=2 is not generally worth the effort so it is ignored.
2020-02-08 03:23:00 +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