├── .gitattributes
├── www
├── .htaccess
├── foot.php
├── config.php
├── head.php
├── functions.php
├── login.php
├── stylesheet.css
├── search.php
├── index.php
└── account.php
├── RunOnReceive
├── RunOnReceive.bat
├── kill-LimitOutgoing.ps1
├── hMSAccountUnlock.ps1
├── RunOnReceive.ps1
├── hmsLimitOutgoing-DB-Setup.ps1
├── hmsLimitOutgoing.ps1
├── pwCommon.ps1
└── pwChange.ps1
├── README.md
└── EventHandlers.vbs
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/www/.htaccess:
--------------------------------------------------------------------------------
1 | # CHANGE LAN SUBNET TO YOUR OWN
2 | order deny,allow
3 | deny from all
4 | allow from 127.0.0.1
5 | allow from 192.168.1
--------------------------------------------------------------------------------
/www/foot.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |