Sort out your email clutter by seeing who is creating it and then deleting it.
All data is fetched live and kept in memory - no persistence, no caching, no external services.
This is a TUI built with Bubble Tea.
Create a config file ~/.config/maileryze/maileryze.toml. Edit it to add your email providers:
[[providers]]
alias = 'personal' # how you refer to this account
provider = 'gmail'
address = 'you@gmail.com'Multiple providers are supported (untested):
[[providers]]
alias = 'personal'
provider = 'gmail'
address = 'you@gmail.com'
[[providers]]
alias = 'work'
provider = 'gmail'
address = 'you@work.com'- Go to Google Cloud Console and create a project
- Enable the Gmail API
- Create OAuth 2.0 credentials — type: Desktop app
- Download
credentials.jsonand place it at~/.config/maileryze/credentials.json
Install the binary and run it. You can get the latest release from the releases page and download the binary directly, or you can build it yourself.
Pre-built binaries are available for Linux and macOS on the releases page.
Build from source:
go install github.com/samsonvd/maileryze@latestFor detailed instructions on how to use maileryze, see the USAGE.md file.
- mise — manages Go and other tool versions
mise install
mise run setupmise run build
mise run test
mise run lint