├── .gitignore ├── LICENSE.txt ├── README.md ├── config.json.example ├── log └── run ├── otm.py ├── requirements.txt ├── run ├── screenshot-login.png ├── screenshot-mailbox.png └── templates └── otm.jinja /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | config.json 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dividuum/one-time-mail/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dividuum/one-time-mail/HEAD/README.md -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dividuum/one-time-mail/HEAD/config.json.example -------------------------------------------------------------------------------- /log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec logger -t otm 3 | -------------------------------------------------------------------------------- /otm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dividuum/one-time-mail/HEAD/otm.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dividuum/one-time-mail/HEAD/requirements.txt -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dividuum/one-time-mail/HEAD/run -------------------------------------------------------------------------------- /screenshot-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dividuum/one-time-mail/HEAD/screenshot-login.png -------------------------------------------------------------------------------- /screenshot-mailbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dividuum/one-time-mail/HEAD/screenshot-mailbox.png -------------------------------------------------------------------------------- /templates/otm.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dividuum/one-time-mail/HEAD/templates/otm.jinja --------------------------------------------------------------------------------