fox.cpp
db0874c2be
Migrate to latest go-smtp version
...
Fixes #661 among other minor things.
2024-01-21 14:41:57 +03:00
fox.cpp
66185b90bb
storage/imapsql: Add support for transpiled SQLite driver
...
May have slightly worse single-user perfomance than
go-sqlite3 (CGo) but also may scale better due to Go goroutines
being used instead of C threads.
Also improves compatibility, making installation easier
esp. if users do not have working C toolchain installed.
See #666 .
2024-01-20 20:53:05 +03: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
Max Mazurov
7c3aab270d
Merge pull request #545 from pouriya/remove-maddyctl-from-docs
...
doc: replace `maddyctl` with `maddy`
2022-12-02 16:47:24 +03:00
Pouriya Jahanbakhsh
46dcef4110
doc: replace maddyctl
with maddy
2022-11-06 11:32:23 +03:30
Aarush Ahuja
587f380935
feat: add iam, aws config file, minio config file configurable credentials for s3 blob storage
2022-09-14 18:48:20 +05:30
fox.cpp
80328b8dee
Fix a few linter warnings + gofmt + goimports
2022-06-23 14:34:57 +03:00
fox.cpp
d60ce8321f
Merge remote-tracking branch 'angelnu/more-fields' into dev
...
# Conflicts:
# docs/reference/storage/imap-filters.md
2022-02-19 14:27:49 +03:00
fox.cpp
165c6578a4
Fix tests using imapsql
2022-02-13 19:40:33 +03:00
angelnu
d78cf5a746
fix typo
2022-02-03 23:00:28 +00:00
angelnu
a40fcc81d9
review feedback
2022-01-31 22:54:50 +00: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
7377878b9c
Merge branch 'go-imap-v2' into dev
2022-01-06 02:59:54 +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
fox.cpp
a1fc99d08c
Fix a few minor warnings
2021-09-22 23:33:40 +03:00
fox.cpp
fc00133ee3
storage/blob/s3: Force a smaller PartSize when blob size is unknown
...
Blob size would be unknown ahead of time if message store compression is used (e.g. in imapsql).
Part of #395 fix
2021-08-28 15:43:19 +03:00
fox.cpp
14a441f595
storage/blob: Pass blobSize to go-imap-sql
...
Part of #395 fix
2021-08-28 15:43:19 +03:00
fox.cpp
1d3e055068
storage/blob: Extend BlobStore interface to use context and specify blob size at Create
...
See #395 .
2021-08-28 15:27:54 +03:00
fox.cpp
07c8495ee4
storage/blob/s3: Fix PutObject goroutines leaking if message write is aborted
...
See #395 .
2021-08-27 11:54:58 +03:00
fox.cpp
34094c17e6
storage/blob/s3: Correctly handle PutObject errors
...
Closes #387 .
2021-08-21 22:17:06 +03:00
Gusted
8f30f559a1
refactor(errors): return errors 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
ff584bb5a3
storage/blob/s3: Add missing didSync check
2021-08-09 13:02:21 +03:00
fox.cpp
ce896c7036
storage/imapsql: Implement delivery_map in addition to auth_map
2021-08-09 11:43:17 +03:00
fox.cpp
461cf0b90f
storage/imapsql: Add support for using PostgreSQL broker for updates
2021-07-18 21:12:24 +03:00
fox.cpp
2e81d5a976
Port existing functionality to go-imap v2
2021-07-18 11:20:13 +03:00
fox.cpp
ef63383248
storage/blob: Implement S3-compatible storage support
...
Closes #304 .
2021-07-15 20:34:15 +03:00
fox.cpp
02924d8d4b
storage/blob: Implement usability test using go-imap-backend-tests and go-imap-sql
...
Blob storage would also benefit from stress
testing and concurrency consistency tests.
But these are things that are probably also
worth adding to go-imap-backend-tests instead.
2021-07-15 20:34:07 +03:00
fox.cpp
956e9ed65f
Remove deprecated 0.3 module name aliases
2021-07-15 16:27:15 +03:00
fox.cpp
09393aed8f
Refactor imapsql ExternalStore to use modules
...
Closes #303
2021-07-11 21:42:38 +03:00
fox.cpp
6d44617840
Use context.Context in module.Table
...
Closes #366 .
2021-07-10 14:56:43 +03:00
fox.cpp
a774674650
storage/imapsql: Use same normalization functions as authorize_sender
2021-07-09 22:49:38 +03:00
fox.cpp
7c2afde847
check/authorize_sender: Implement MAIL FROM, From header authorization for local senders
...
Closes #268 .
2021-07-09 22:49:21 +03:00
fox.cpp
a2e781ab3a
storage/imapsql: Implement auth_map
2020-09-19 18:05:01 +03:00
fox.cpp
a99e6f7c5b
storage/imapsql: Move delivery logic to a separate file
2020-09-19 18:05:00 +03:00
fox.cpp
ec02cca6f8
Add more recover() at goroutine start points
...
This is a double-edged sword though as blind panic recovery
can lead to consistency issues in program state.
In particular, halting imapsql update push due to panic can lead
to a deadlock in IMAP code.
Panic in MTA-STS cache maintenance routine can lead to degraded
security.
2020-09-10 20:45:57 +03:00
fox.cpp
1da80d9ac5
storage/imapsql: Fix nil pointer reference when no IMAP filters are set
2020-08-21 23:07:04 +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
f8caf1d188
storage/imapsql: Fix incorrect module name in log messages related to delivery errors
2020-07-24 18:21:52 +03:00
fox.cpp
2d18ff5a30
MIT => GPLv3; Add license/copyright notices everywhere
2020-07-22 16:12:26 +03:00
fox.cpp
e27574a9e5
storage/imapsql: Register module in delivery target namespace
...
Allows it to be used as "deliver_to imapsql".
2020-07-17 23:36:11 +03:00
fox.cpp
18bc68a7ac
Implement "IMAP filters"
...
Closes #202 .
2020-07-17 23:33:59 +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
7645daa886
Update dependencies, tidy go.mod, format files, fix minor linter warnings
2020-05-31 19:18:48 +03:00
fox.cpp
bf612cb865
storage/imapsql: Implement module.Table interface
2020-05-23 02:55:45 +03:00
fox.cpp
50bf3e6b33
storage/imapsql: Fix SPECIAL-USE support being accidentally disabled
2020-05-18 23:16:48 +03:00
fox.cpp
f395db25a6
storage/imapsql: Fix Close deadlock in case of EnableUpdatePipe fail
2020-04-26 21:31:12 +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