Commit graph

68 commits

Author SHA1 Message Date
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
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
a0606bd4fc
endpoint/smtp: Fix panic if connection is closed in the middle of receiving body 2020-06-02 22:00:07 +03:00
fox.cpp
6ebb3dae3c
endpoint/smtp: Fix limit leak in case of aborted transaction 2020-06-02 22:00:06 +03:00
fox.cpp
009468ba57
endpoint/smtp: Make 'tls' directive optional for LMTP endpoint 2020-05-31 18:43:02 +03:00
fox.cpp
64c91fcc7c
endpoint/smtp: Unbreak Received test
Ref. d9f1b94e07
2020-05-27 23:08:43 +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
a1f49f3ddc
endpoint/dovecode_sasld: Fill mechInfo table 2020-05-05 01:06:25 +03:00
fox.cpp
6f2fb63c7e
endpoint/dovecot_sasld: Fix logging 2020-05-04 23:57:58 +03:00
fox.cpp
3f1a4e5868
Initial implementation of Dovecot SASL endpoint 2020-05-04 22:58:56 +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
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