This Go program is a simple tool to provide folder-based smart actions for IMAP servers.
Special thanks to @emersion for creating and providing the following Go libraries that are the main building blocks of this program:
- https://github.com/emersion/go-imap
- https://github.com/emersion/go-imap-idle
- https://github.com/emersion/go-imap-move
Additional dependencies are the following awesome Go libraries:
You basically have two options to install this Go program package:
- If you have Go installed and configured on your PATH, just do the following go get inside your GOPATH to get the latest version:
go get -u github.com/mback2k/go-smartmail
- If you do not have Go installed and just want to use a released binary, then you can just go ahead and download a pre-compiled Linux amd64 binary from the Github releases.
Finally put the go-smartmail binary onto your PATH and make sure it is executable.
The following YAML file is an example configuration with one transfer to be handled:
Accounts:
- Name: Archive per year
IMAP:
Server: imap-source.example.com:993
Username: your-imap-source-username
Password: your-imap-source-username
Mailbox: INBOX.Archive
Actions:
Move: INBOX.Archive.%YYYY%
MoveJodaTime: true
You can have multiple accounts handled by repeating the - Name: ...
section.
Save this file in one of the following locations and run ./go-smartmail
:
- /etc/go-smartmail/go-smartmail.yaml
- $HOME/.go-smartmail.yaml
- $PWD/go-smartmail.yaml
Copyright (C) 2019 Marc Hoersken info@marc-hoersken.de
This software is licensed as described in the file LICENSE, which you should have received as part of this software distribution.
All trademarks are the property of their respective owners.