forked from Silverfish/proton-bridge
- GODT-1158: simple on-disk cache in store - GODT-1158: better member naming in event loop - GODT-1158: create on-disk cache during bridge setup - GODT-1158: better job options - GODT-1158: rename GetLiteral to GetRFC822 - GODT-1158: rename events -> currentEvents - GODT-1158: unlock cache per-user - GODT-1158: clean up cache after logout - GODT-1158: randomized encrypted cache passphrase - GODT-1158: Opt out of on-disk cache in settings - GODT-1158: free space in cache - GODT-1158: make tests compile - GODT-1158: optional compression - GODT-1158: cache custom location - GODT-1158: basic capacity checker - GODT-1158: cache free space config - GODT-1158: only unlock cache if pmapi client is unlocked as well - GODT-1158: simple background sync worker - GODT-1158: set size/bodystructure when caching message - GODT-1158: limit store db update blocking with semaphore - GODT-1158: dumb 10-semaphore - GODT-1158: properly handle delete; remove bad bodystructure handling - GODT-1158: hacky fix for caching after logout... baaaaad - GODT-1158: cache worker - GODT-1158: compute body structure lazily - GODT-1158: cache size in store - GODT-1158: notify cacher when adding to store - GODT-1158: 15 second store cache watcher - GODT-1158: enable cacher - GODT-1158: better cache worker starting/stopping - GODT-1158: limit cacher to less concurrency than disk cache - GODT-1158: message builder prio + pchan pkg - GODT-1158: fix pchan, use in message builder - GODT-1158: no sem in cacher (rely on message builder prio) - GODT-1158: raise priority of existing jobs when requested - GODT-1158: pending messages in on-disk cache - GODT-1158: WIP just a note about deleting messages from disk cache - GODT-1158: pending wait when trying to write - GODT-1158: pending.add to return bool - GODT-1225: Headers in bodystructure are stored as bytes. - GODT-1158: fixing header caching - GODT-1158: don't cache in background - GODT-1158: all concurrency set in settings - GODT-1158: worker pools inside message builder - GODT-1158: fix linter issues - GODT-1158: remove completed builds from builder - GODT-1158: remove builder pool - GODT-1158: cacher defer job done properly - GODT-1158: fix linter - GODT-1299: Continue with bodystructure build if deserialization failed - GODT-1324: Delete messages from the cache when they are deleted on the server - GODT-1158: refactor cache tests - GODT-1158: move builder to app/bridge - GODT-1306: Migrate cache on disk when location is changed (and delete when disabled)
75 lines
3.5 KiB
Modula-2
75 lines
3.5 KiB
Modula-2
module github.com/ProtonMail/proton-bridge
|
|
|
|
go 1.15
|
|
|
|
// These dependencies are `replace`d below, so the version numbers should be ignored.
|
|
// They are in a separate require block to highlight this.
|
|
require (
|
|
github.com/docker/docker-credential-helpers v0.6.3
|
|
github.com/emersion/go-imap v1.0.6
|
|
github.com/jameskeane/bcrypt v0.0.0-20170924085257-7509ea014998 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/0xAX/notificator v0.0.0-20191016112426-3962a5ea8da1
|
|
github.com/Masterminds/semver/v3 v3.1.0
|
|
github.com/ProtonMail/go-autostart v0.0.0-20181114175602-c5272053443a
|
|
github.com/ProtonMail/go-crypto v0.0.0-20210707164159-52430bf6b52c
|
|
github.com/ProtonMail/go-imap-id v0.0.0-20190926060100-f94a56b9ecde
|
|
github.com/ProtonMail/go-rfc5322 v0.8.0
|
|
github.com/ProtonMail/go-srp v0.0.1
|
|
github.com/ProtonMail/go-vcard v0.0.0-20180326232728-33aaa0a0c8a5
|
|
github.com/ProtonMail/gopenpgp/v2 v2.2.2
|
|
github.com/PuerkitoBio/goquery v1.5.1
|
|
github.com/abiosoft/ishell v2.0.0+incompatible
|
|
github.com/abiosoft/readline v0.0.0-20180607040430-155bce2042db // indirect
|
|
github.com/allan-simon/go-singleinstance v0.0.0-20160830203053-79edcfdc2dfc
|
|
github.com/chzyer/logex v1.1.10 // indirect
|
|
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect
|
|
github.com/cucumber/godog v0.12.1
|
|
github.com/cucumber/messages-go/v16 v16.0.1
|
|
github.com/emersion/go-imap-appendlimit v0.0.0-20190308131241-25671c986a6a
|
|
github.com/emersion/go-imap-move v0.0.0-20190710073258-6e5a51a5b342
|
|
github.com/emersion/go-imap-quota v0.0.0-20210203125329-619074823f3c
|
|
github.com/emersion/go-imap-unselect v0.0.0-20171113212723-b985794e5f26
|
|
github.com/emersion/go-message v0.12.1-0.20201221184100-40c3f864532b
|
|
github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21
|
|
github.com/emersion/go-smtp v0.14.0
|
|
github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594
|
|
github.com/emersion/go-vcard v0.0.0-20190105225839-8856043f13c5 // indirect
|
|
github.com/fatih/color v1.9.0
|
|
github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
|
|
github.com/getsentry/sentry-go v0.8.0
|
|
github.com/go-resty/resty/v2 v2.6.0
|
|
github.com/golang/mock v1.4.4
|
|
github.com/google/go-cmp v0.5.1
|
|
github.com/google/uuid v1.1.1
|
|
github.com/hashicorp/go-multierror v1.1.0
|
|
github.com/jaytaylor/html2text v0.0.0-20200412013138-3577fbdbcff7
|
|
github.com/keybase/go-keychain v0.0.0-20200502122510-cda31fe0c86d
|
|
github.com/logrusorgru/aurora v2.0.3+incompatible
|
|
github.com/mattn/go-runewidth v0.0.9 // indirect
|
|
github.com/miekg/dns v1.1.41
|
|
github.com/nsf/jsondiff v0.0.0-20200515183724-f29ed568f4ce
|
|
github.com/olekukonko/tablewriter v0.0.4 // indirect
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/ricochet2200/go-disk-usage/du v0.0.0-20210707232629-ac9918953285
|
|
github.com/sirupsen/logrus v1.7.0
|
|
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
|
|
github.com/stretchr/objx v0.2.0 // indirect
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/urfave/cli/v2 v2.2.0
|
|
github.com/vmihailenco/msgpack/v5 v5.1.3
|
|
go.etcd.io/bbolt v1.3.6
|
|
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
|
|
golang.org/x/text v0.3.5-0.20201125200606-c27b9fd57aec
|
|
)
|
|
|
|
replace (
|
|
github.com/docker/docker-credential-helpers => github.com/ProtonMail/docker-credential-helpers v1.1.0
|
|
github.com/emersion/go-imap => github.com/ProtonMail/go-imap v0.0.0-20201228133358-4db68cea0cac
|
|
github.com/emersion/go-message => github.com/ProtonMail/go-message v0.0.0-20210611055058-fabeff2ec753
|
|
github.com/jameskeane/bcrypt => github.com/ProtonMail/bcrypt v0.0.0-20210511135022-227b4adcab57
|
|
)
|