36 Commits

Author SHA1 Message Date
39759db7c2 - Inter-node Protocol: Implemented a custom communication protocol based on Protobuf structures.
- Bridge Node Support: Added functionality to manage mail (send/receive) on remote nodes via a bridge node. Full transparent management requires a private key on the bridge, while the remote node can operate with only a public key.
 - End-to-End Encryption (E2EE): Integrated E2EE using age. Encryption and decryption occur strictly at the bridge level; node administrators cannot access message content.
 - New Addressing Schema: Transitioned from nodepub@yggmail to userpub@nodepub.
 - Key Adaptation: Implemented ed25519 to x25519 coordinate adaptation, allowing signing keys to be used for encryption.

Changed
 - Address Encoding: Switched from hex16 to base32 for the address space.
 - Memory Optimization: Replaced direct memory allocations with streaming for mail processing to reduce RAM overhead.
 - Code Refactoring: Performed decomposition of the original inherited codebase to improve maintainability.

Fixed
 - Mail Updates: Fixed the mail retrieval mechanism to ensure near-instant updates for incoming messages.

Changes to be committed:
	modified:   .gitignore
	modified:   README.md
	modified:   cmd/yggmail/main.go
	modified:   go.mod
	modified:   go.sum
	new file:   internal/account/manager.go
	new file:   internal/account/session.go
	modified:   internal/imapserver/backend.go
	modified:   internal/imapserver/imap.go
	modified:   internal/imapserver/mailbox.go
	modified:   internal/imapserver/notify.go
	modified:   internal/imapserver/user.go
	new file:   internal/notify/notify.go
	new file:   internal/notify/remote/remote.go
	new file:   internal/remote/client.go
	new file:   internal/remote/handlers.go
	new file:   internal/remote/io.go
	new file:   internal/remote/server.go
	new file:   internal/remote/sign.go
	new file:   internal/remote/types/request.pb.go
	new file:   internal/remote/types/request.proto
	new file:   internal/remote/types/response.pb.go
	new file:   internal/remote/types/response.proto
	new file:   internal/shell/shell.go
	modified:   internal/smtpsender/sender.go
	modified:   internal/smtpserver/backend.go
	modified:   internal/smtpserver/session_local.go
	modified:   internal/smtpserver/session_remote.go
	modified:   internal/smtpserver/smtp.go
	new file:   internal/storage/filestore/filestore.go
	new file:   internal/storage/local/storage.go
	new file:   internal/storage/remote/mail.go
	new file:   internal/storage/remote/mailbox.go
	new file:   internal/storage/remote/queue.go
	new file:   internal/storage/remote/storage.go
	new file:   internal/storage/remote/watch.go
	modified:   internal/storage/sqlite3/sqlite3.go
	new file:   internal/storage/sqlite3/table_accounts.go
	modified:   internal/storage/sqlite3/table_mailboxes.go
	modified:   internal/storage/sqlite3/table_mails.go
	modified:   internal/storage/sqlite3/table_queue.go
	modified:   internal/storage/storage.go
	modified:   internal/storage/types/types.go
	modified:   internal/utils/address.go
	new file:   internal/utils/age/age.go
	new file:   internal/utils/age/bech32/bech32.go
	new file:   internal/utils/crypt.go
	new file:   internal/utils/e2ee/crypt.go
	new file:   internal/utils/e2ee/e2ee_test.go
	new file:   internal/utils/e2ee/msg.go
	new file:   internal/utils/x25519.go
	modified:   internal/welcome/welcome.go
2026-02-14 02:34:09 +05:00
Neil Alexander
8385ac78da
Support for IMAP MOVE 2025-12-02 19:23:49 +00:00
Neil Alexander
59426fabf1
Update yggquic, stronger peer verification 2025-11-28 17:32:19 +00:00
Neil Alexander
0d4d68c9cc
Switch to yggquic 2025-11-27 10:30:48 +00:00
Neil Alexander
890ef4ada9
Update to Yggdrasil 0.5.12 2024-12-18 22:37:28 +00:00
Neil Alexander
8a5c2202b4
Update to Yggdrasil 0.5.11 2024-12-12 19:43:39 +00:00
Neil Alexander
cb153d7c4e
Update to Yggdrasil 0.5.10 2024-11-24 13:05:28 +00:00
Neil Alexander
e34df1cb73
Update embedded SQLite dependency 2024-10-20 17:58:51 +01:00
Neil Alexander
3e20a60741
Update to Yggdrasil 0.5.9 2024-10-19 17:23:47 +01:00
Neil Alexander
1d5545a817
Update to Yggdrasil 0.5.8 2024-08-12 19:34:54 +01:00
Neil Alexander
12f454777d
Update to Yggdrasil 0.5.7 2024-08-05 19:36:55 +01:00
Neil Alexander
2a1e0ee063
Update to Yggdrasil 0.5.6, use Alpine 3.20 2024-05-31 18:40:58 +01:00
Neil Alexander
00775389b5
Update to Yggdrasil 0.5.4, use Alpine 3.18 2023-12-10 11:01:12 +00:00
Neil Alexander
767f9b8c5d
Revert all yggquic changes
This reverts commit 4ab9007abee8cf9547c4dd6f3ab1d5eec6ea446c.
2023-12-10 11:00:27 +00:00
Neil Alexander
df696d4bdb
Update go-sqlite3 2023-12-09 22:19:45 +00:00
Neil Alexander
34dbc97d89
Update yggquic 2023-12-09 22:02:02 +00:00
Neil Alexander
e19a0a41d7
Update yggquic 2023-12-08 19:17:22 +00:00
Neil Alexander
01f503c5d2
Update to Yggdrasil 0.5.4 2023-11-28 20:07:58 +00:00
Neil Alexander
412ca75ac0
Update to Yggdrasil 0.5.3 2023-11-26 19:00:33 +00:00
Neil Alexander
4ab9007abe
Use yggquic 2023-11-26 16:08:21 +00:00
Neil Alexander
aa8a71dd1f
Update to Yggdrasil 0.5.2 2023-11-17 10:05:11 +00:00
Neil Alexander
f11efc2c8d
QUIC transport 2023-11-03 14:03:41 +00:00
Neil Alexander
f60fa5ed4f
Update to Yggdrasil 0.5.1 2023-11-02 18:28:50 +00:00
Neil Alexander
3becf5261b
Update dependencies 2023-02-19 16:31:39 +00:00
Neil Alexander
5c15aee3ba Update to Yggdrasil v0.4.6 2022-10-26 19:40:21 +01:00
Neil Alexander
17c48b42c8 Update again 2022-10-22 18:06:17 +01:00
Neil Alexander
9afa2a17bb Update Yggdrasil 2022-10-22 17:46:58 +01:00
Neil Alexander
4cbf7d63de Update to Yggdrasil v0.4.5 2022-10-19 00:02:39 +01:00
Neil Alexander
fd88386978 Merge branch 'main' of github.com:neilalexander/yggmail 2022-09-04 20:48:47 +01:00
Neil Alexander
b7e489055c Yggdrasil 0.4.4 2022-09-04 20:43:51 +01:00
Steffen Müller
0a1151149d go mod tidy 2021-10-21 23:23:45 +02:00
Steffen Müller
8fb519ab37 Update gologme module to 1.3.0 2021-10-21 23:12:39 +02:00
Neil Alexander
b92cbd6265 Hopefully fix terminal colours on Windows 2021-07-10 13:22:59 +01:00
Neil Alexander
6b9755276b Back to hex keys after all 2021-07-09 00:26:43 +01:00
Neil Alexander
ea3a94a1ce Base62 mail domains 2021-07-08 22:25:52 +01:00
Neil Alexander
ceffe7612d Initial commit 2021-07-07 18:15:07 +01:00