├── VERSION ├── README.md ├── .gitattributes ├── .gitignore ├── header.php ├── foot.php ├── charthitsperhour.php ├── chartcountriesperhour.php ├── charthitsperday.php ├── chartcountriesperday.php ├── autocomplete.php ├── functions.php ├── dialtodayhits.php ├── head.php ├── dialtodaycountryhits.php ├── config.php.dist ├── dialtodaybannedhits.php ├── dialtodayallowedhits.php ├── login.php ├── stylesheet.css ├── viewcountry.php ├── countryarray.php ├── index.php └── viewall.php /VERSION: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hMailServer IDS Viewer 2 | 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore config file 2 | /config.php 3 | /test* 4 | 5 | # Ignoring directories 6 | # Both the directory itself and its contents will be ignored. 7 | uploads/ 8 | photos/ 9 | tmp/ 10 | examples/ -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 |
11 | -------------------------------------------------------------------------------- /foot.php: -------------------------------------------------------------------------------- 1 | 2 |