├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MailHandler.py ├── README.md ├── config.py ├── handlers ├── FixAddress.py ├── SaveNewPhoneMessage.py └── __init__.py ├── mlogging.py ├── smtpproxy.ini.example ├── smtpproxy.init.d ├── smtpproxy.py ├── smtpproxy.service.example └── smtps.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /MailHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/MailHandler.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/config.py -------------------------------------------------------------------------------- /handlers/FixAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/handlers/FixAddress.py -------------------------------------------------------------------------------- /handlers/SaveNewPhoneMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/handlers/SaveNewPhoneMessage.py -------------------------------------------------------------------------------- /handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mlogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/mlogging.py -------------------------------------------------------------------------------- /smtpproxy.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/smtpproxy.ini.example -------------------------------------------------------------------------------- /smtpproxy.init.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/smtpproxy.init.d -------------------------------------------------------------------------------- /smtpproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/smtpproxy.py -------------------------------------------------------------------------------- /smtpproxy.service.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/smtpproxy.service.example -------------------------------------------------------------------------------- /smtps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankraft/smtpproxy/HEAD/smtps.py --------------------------------------------------------------------------------