├── .gitignore
├── .gitattributes
├── foot.php
├── .htaccess
├── index.php
├── status.php
├── send.php
├── functions.php
├── insert.php
├── README.md
├── head.php
├── config.dist.php
├── login.php
├── outbox.php
├── inbox.php
└── stylesheet.css
/.gitignore:
--------------------------------------------------------------------------------
1 | # Ignore config file
2 | /config.php
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/foot.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |