🟢 Stable | Every morning, get your task lists by email, WhatsApp or SMS.
.github/workflows | ||
cmd/musala-mail | ||
doc | ||
docker | ||
templates | ||
tmp | ||
.dockerignore | ||
.gitignore | ||
contrib-trello | ||
docker-compose.example.yml | ||
go.mod | ||
go.sum | ||
Jenkinsfile | ||
LICENSE.txt | ||
Makefile | ||
README.md |
Every morning, get your task lists by email, WhatsApp or SMS.
Note: musala means work, occupation in Lingala
Roadmap
Task sources:
- ✔️ Trello
- ❌ Nextcloud Deck (not yet) - API Reference
- ❌ Wekan (not yet) - API Reference
- ❌ Libreboard (not yet)
- ❌ Github Projects (not yet)
Delivery via:
- ❌ Telegram
- ❌ IRC
- ❌ SMS
Installation
From sources
Make sure you have Go installed, then type:
$ go install github.com/glenux/musala-push/...
It will install Musala Mail binary in $GOPATH/bin
With docker
Make sure you have Docker installed, then type:
$ docker build -t musala-push -f docker/Dockerfile .
Usage
Creating a developper account
- Create a Trello account on https://trello.com
- Check your mailbox and confirm your email
- Enable developper account on https://trello.com/app-key
- Get an developer API KEY
Getting a Trello TOKEN
Open the following URL in your web browser and authenticate yourself. That will give you the TRELLO_TOKEN that will be needed in the next step.
Using the binary
Prepare your environment with the following variables
EMAIL_FROM: no-reply@example.com
EMAIL_TO: me@example.com
EMAIL_SUBJECT: "Daily mail for YYYYYY"
TRELLO_URL: https://trello.com/b/xxxxx/yyyy
TRELLO_TOKEN: xxxxxxxxxxxxxx
SMTP_HOSTNAME: smtp.example.com
SMTP_USERNAME: foobar@example.com
SMTP_PASSWORD: securefoobar
SMTP_PORT: 587
# SMTP_AUTH_TYPE accepts either "none", "plain" or "login"
SMTP_AUTH_TYPE: plain
# SMTP_SECURITY_TYPE accepts either "none", "tls" or "starttls"
SMTP_SECURITY_TYPE: tls
Then run the program:
$ $GOPATH/bin/musala-push
Using with docker
$ docker build -f docker/Dockerfile -t musala-push .
$ docker run \
-e EMAIL_FROM=
-e EMAIL_TO=
-e EMAIL_SUBJECT=
-e EMAIL_FROM=
-e EMAIL_TO=
-e EMAIL_SUBJECT=
-v /var/lib/musala-push/musala-push.cron:/app/musala-push.cron \
-it musala-push:latest
Contributing
- Fork it ( http://github.com/glenux/musala-push/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Credits
- Glenn Y. ROLLAND - author & maintainer:
- You? Fork the project and become a contributor!
Got questions? Need help? Tweet at @glenux
License
Musala Push is Copyright © 2018-2020 Glenn ROLLAND. It is free software, and may be redistributed under the terms specified in the LICENSE.txt file.