- 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
43 lines
1.7 KiB
Modula-2
43 lines
1.7 KiB
Modula-2
module github.com/neilalexander/yggmail
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.1.0
|
|
github.com/emersion/go-imap v1.2.1
|
|
github.com/emersion/go-imap-idle v0.0.0-20210907174914-db2568431445
|
|
github.com/emersion/go-imap-move v0.0.0-20210907172020-fe4558f9c872
|
|
github.com/emersion/go-message v0.17.0
|
|
github.com/emersion/go-sasl v0.0.0-20220912192320-0145f2c60ead
|
|
github.com/emersion/go-smtp v0.15.0
|
|
github.com/fatih/color v1.18.0
|
|
github.com/gologme/log v1.3.0
|
|
github.com/mattn/go-sqlite3 v1.14.32
|
|
github.com/yggdrasil-network/yggdrasil-go v0.5.13-0.20251124092915-ae405adf7c4c
|
|
github.com/yggdrasil-network/yggquic v0.0.0-20251128173046-40cea64eaa96
|
|
go.uber.org/atomic v1.11.0
|
|
golang.org/x/crypto v0.45.0
|
|
golang.org/x/term v0.37.0
|
|
google.golang.org/protobuf v1.36.11
|
|
)
|
|
|
|
require (
|
|
filippo.io/age v1.3.1 // indirect
|
|
filippo.io/hpke v0.4.0 // indirect
|
|
github.com/Arceliar/ironwood v0.0.0-20251124020000-e1358f790504 // indirect
|
|
github.com/Arceliar/phony v0.0.0-20220903101357-530938a4b13d // indirect
|
|
github.com/bits-and-blooms/bitset v1.13.0 // indirect
|
|
github.com/bits-and-blooms/bloom/v3 v3.7.0 // indirect
|
|
github.com/coder/websocket v1.8.14 // indirect
|
|
github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 // indirect
|
|
github.com/hjson/hjson-go/v4 v4.5.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/neilalexander/generique v0.0.0-20251127000013-def6a5bd842a // indirect
|
|
github.com/quic-go/quic-go v0.57.1 // indirect
|
|
github.com/wlynxg/anet v0.0.5 // indirect
|
|
golang.org/x/net v0.47.0 // indirect
|
|
golang.org/x/sys v0.38.0 // indirect
|
|
golang.org/x/text v0.31.0 // indirect
|
|
)
|