├── .gitignore ├── README.md ├── bottle.py ├── messageStore.txt ├── screenshot.png ├── smtp_server.py └── static ├── home.template.html ├── jquery.min.js └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalyan02/Simple-SMTP-Server/HEAD/README.md -------------------------------------------------------------------------------- /bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalyan02/Simple-SMTP-Server/HEAD/bottle.py -------------------------------------------------------------------------------- /messageStore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalyan02/Simple-SMTP-Server/HEAD/messageStore.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalyan02/Simple-SMTP-Server/HEAD/screenshot.png -------------------------------------------------------------------------------- /smtp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalyan02/Simple-SMTP-Server/HEAD/smtp_server.py -------------------------------------------------------------------------------- /static/home.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalyan02/Simple-SMTP-Server/HEAD/static/home.template.html -------------------------------------------------------------------------------- /static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalyan02/Simple-SMTP-Server/HEAD/static/jquery.min.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalyan02/Simple-SMTP-Server/HEAD/static/style.css --------------------------------------------------------------------------------