fox.cpp
01c65cfb0e
Finally fix tests
...
Took way too long.
2025-02-02 13:14:11 +03:00
fox.cpp
ef7fa210dc
Slightly improve debug logging for complex authentication pipelines
2025-02-01 19:25:16 +03:00
fox.cpp
1d044249c2
endpoint/smtp: Fix auth_map ignored
2025-02-01 19:25:16 +03:00
fox.cpp
b3ebe4b81e
endpoint/smtp: Drop duplicate RunEarlyChecks call
2025-01-28 23:35:08 +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
Martin Matous
c67955ef0d
fix(session): detect canceled lookup correctly
...
cancelation is not DNSError, so UnwrapDNSErr() returns "" as reason
Signed-off-by: Martin Matous <m@matous.dev>
2024-01-22 00:40:38 +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
1db37f91b1
Merge branch 'dev'
2023-02-05 16:32:55 +03:00
Carl-Friedrich Braun
7c9138decf
fix: allow empty From address to match with TakeMsg
2023-01-02 12:11:15 +01:00
fox.cpp
ab4aefa955
Merge branch 'master' into dev
2022-09-13 12:42:47 +03:00
Alexandre Biancalana
226ea827d8
fix goroutine "leak" making graceful shutdown when openmetrics endpoint is enable
2022-07-26 22:23:50 -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
2677e190dc
Merge branch 'master' into dev
2022-02-19 14:08:50 +03:00
fox.cpp
3412e59a2c
endpoint/smtp: Fix incoming message log record having no msg_id
2022-02-19 13:31:44 +03:00
fox.cpp
f533b8e48f
Bump go-imap version
...
See #446 .
2022-01-19 16:59:19 +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
85d3648754
smtp/session: move conditional to outer loop
...
- Only loop trough the `from` email address if UTF8 options is not enabled. This should avoid unnecessary loops for servers which has the UTF8 option enabled.
2021-10-15 00:37:14 +03:00
fox.cpp
e16bbfb9fa
Update dependencies
...
Migrate to latest go-smtp.
2021-10-11 21:20:49 +03:00
fox.cpp
820d9183aa
endpoint/smtp: Fix limitedReader causing message body read to loop forever
...
Closes #389 .
2021-08-22 12:23:01 +03:00
Gusted
2e0162d7d2
refactor(log): use provided modName
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
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
fox.cpp
2e81d5a976
Port existing functionality to go-imap v2
2021-07-18 11:20:13 +03:00
fox.cpp
5c143530ff
Merge branch 'master' into dev
...
# Conflicts:
# framework/address/norm.go
# go.mod
# go.sum
# internal/target/remote/security.go
2021-07-10 00:23:28 +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
5e57cfb5fc
endpoint/smtp: Release Msg limiter correctly if pipeline.Start fails
...
Possible fix for #348 .
2021-04-11 19:00:48 +03:00
fox.cpp
ba53e85b72
endpoint/smtp: Unbreak MAIL FROM:<> handling
...
While at it, move "incoming message" log message slightly earlier
so if MAIL FROM fails then full message info is visible in the log.
Closes #337 .
2021-03-07 16:54:36 +03:00
fox.cpp
cf72b11c76
Fix/silence a couple of linter warnings
2020-12-06 14:51:03 +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
5d46949b25
gofmt -s everything
2020-10-03 18:42:17 +03:00
fox.cpp
f58da8a5a5
Remake Prometheus endpoint into a proper endpoint module
2020-08-23 15:41:52 +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
4ea9f1eef7
endpoint/smtp: Hide "operation was canceled" errors for async rDNS lookup
2020-07-07 21:02:54 +03:00
fox.cpp
5f76f6c335
endpoint/smtp: Add missing msg_id for 'RCPT error' message
2020-06-24 23:52:56 +03:00
fox.cpp
bdce3e4c14
endpoint/smtp: Fix typo in Prometheus metric extension
2020-06-10 19:54:01 +03:00