Commit graph

46 commits

Author SHA1 Message Date
fox.cpp
01c65cfb0e
Finally fix tests
Took way too long.
2025-02-02 13:14:11 +03:00
fox.cpp
1d044249c2
endpoint/smtp: Fix auth_map ignored 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
fox.cpp
798c411824
Merge branch 'master' into dev 2024-01-22 00:43:53 +03:00
fox.cpp
db0874c2be
Migrate to latest go-smtp version
Fixes #661 among other minor things.
2024-01-21 14:41:57 +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
1d0d9915a0
Update to latest go-smtp
smtp.ConnectionState is no longer a thing and sessions are initialized
early so we can move more processing early. One such change is
in DNSBL - run the check before EHLO completes. Some further optimizations
are possible there - e.g. start DNSBL check once we get EHLO and have
the result ready once we receive MAIL FROM and act accordingly.
2022-07-09 17:00:23 +03:00
fox.cpp
e16bbfb9fa
Update dependencies
Migrate to latest go-smtp.
2021-10-11 21:20:49 +03:00
Gusted
b8d8ca6301 refactor(gofumpt): run gofumpt over the code 2021-08-10 19:33:54 +03:00
Gusted
d0928d2743 refactor: remove/_-ify unused params
Hi!

I've removed some unused params. But if they where needed for e.g. interface type I've simply `_` them. Also I have to instances to fix tests params, whereby they were passed but not initialized at all, they are in`internal/target/remote/remote_test.go` and `internal/modify/dkim/dkim_test.go`. All test are still passing so it seems like I didn't break anything.

I might've refactored some code away that actually is used but wasn't implemented correctly, but as far as I see their is nothing wrong or erroring going on.
2021-07-31 22:43:27 +03:00
Armin Preiml
426c61880f add max_header_size, check header size in smtp session 2021-06-27 15:26:04 +00:00
fox.cpp
66cb7170ab
endpoint/smtp: Allow to change the line length limit enforced by go-smtp
See #352.
2021-05-07 11:28:41 +03:00
fox.cpp
925b758e09
endpoint/smtp: Actually fix autobuffer function
Regressed in 1c42a70533.
It truncates messages to I/O buffer size (4096 bytes).
If first 4096 bytes cover head then it causes "unexpected EOF" (see
 #300), otherwise it silently breaks the message.
2020-11-27 21:04:17 +03:00
fox.cpp
1c42a70533
endpoint/smtp: Fix handling of empty messages in auto-buffer code
Add the missing os.MkdirAll for "fs" buffer mode along the way.
And add integration tests for all that.
2020-10-24 21:23:12 +03:00
fox.cpp
2d18ff5a30
MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +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
30c50b6a91
Implement SMTP REQUIRETLS support
Closes #123.
2020-06-10 19:51:08 +03:00
fox.cpp
e258555592
Implement Prometheus metrics for SMTP pipeline
Closes #236.
2020-06-10 00:23:12 +03:00
fox.cpp
009468ba57
endpoint/smtp: Make 'tls' directive optional for LMTP endpoint 2020-05-31 18:43:02 +03:00
fox.cpp
d9f1b94e07
endpoint/smtp: Fix missing server hostname in Received header 2020-05-24 20:01:14 +03:00
fox.cpp
ae6dac4c98
endpoint/smtp: Send 535 on permanent authentication failure 2020-05-23 02:55:44 +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
9b279735e8
Address several TODO comments
Several comments were removed since they are not worth the trouble.
A few minor issues were addressed.
Most of remaining comments got corresponding GitHub issues assigned.
2020-03-05 02:26:30 +03:00
fox.cpp
46502217ed
Remove config.Map.MatchErr()
Obscure and often misused.
2020-03-05 02:26:29 +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
353c1edd5e
Move Received header field generation into pipeline code 2020-02-22 23:02:00 +03:00
fox.cpp
d28b4a5dfa
endpoint/smtp: Protect command handlers with a mutex
Makes sure delivery is in consistent state when it is closed due to
shutdown.
2020-02-22 04:32:46 +03:00
fox.cpp
5bf8cb9f03
endpoint/smtp: Limit amount of Received header fields
Closes #79.
2020-02-16 01:31:47 +03:00
fox.cpp
3b8c02b998
endpoint/smtp: Add option to use FS as a temporary body store
Closes #76.
2020-02-15 23:49:01 +03:00
fox.cpp
4a875e69dc
endpoint/smtp: Move limit enforcement before "incoming message" log record
Avoid the possibility of logs flooding before limits can be applied.
2020-02-15 17:02:48 +03:00
fox.cpp
c3ebbb05a0
Generalize message flow restrictions
Set of flow restrictions is represented as a "limits" module instance
that can be either created inline via "limits" directive in some modules
(including "remote" target and "smtp" endpoint) or defined globally and
referenced in configuration of modules mentioned above.

This permits a variety of use cases, including shared and separate
counters for various endpoints and also "modules group" style sharing
described in #195.
2020-02-15 17:02:48 +03:00
fox.cpp
122168bef1
future: Allow to pass an error value alongside result 2019-12-13 17:31:35 +03:00
fox.cpp
c4ea9a730f
Instrument the SMTP code using runtime/trace
runtime/trace together with 'go tool trace' provides extremely powerful
tooling for performance (latency) analysis. Since maddy prides itself on
being "optimized for concurrency", it is a good idea to actually live up
to this promise.

Closes #144. No need to reinvent the wheel. The original issue
proposed a solution to use in production to detect "performance
anomalies", it is possible to use runtime/trace in production too, but
the corresponding flag to enable profiler endpoint is hidden behind the
'debugflags' build tag at the moment.

For SMTP code, the basic latency information can be obtained from
regular logs since they include timestamps with millisecond granularity.
After the issue is apparent, it is possible to deploy the server
executable compiled with tracing support and obtain more information

... Also add missing context.Context arguments to smtpconn.C.
2019-12-13 17:31:35 +03:00
fox.cpp
305fdddf24
Use context.Context all over the place
It is useful to define background tasks lifetimes more precisely,
especially involving timeouts and other cancellation methods.

On top of that, several tracing facilities are context-based (e.g.
runtime/trace), so it is possible to use them now.
2019-12-13 17:31:35 +03:00
fox.cpp
48e21f566e
Extend .debug.* flags and hide them by default
Allow to override DNS resolver address via the -debug.dnsoverride flag
and SMTP port via -debug.smtpport.

All flags are not available unless maddy is built using the 'debugflags'
tag.
2019-12-13 17:31:35 +03:00
fox.cpp
9e5bb288b3
Fix a bunch of grammar errors in messages around the code base 2019-12-13 17:31:35 +03:00
fox.cpp
dae3d5bd09
endpoint/smtp: Finalize the LMTP support
Closes #137.
2019-12-07 05:42:11 +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
Renamed from endpoint/smtp/smtp.go (Browse further)