├── .gitignore ├── LICENSE ├── README.md ├── amavis-templ ├── template-virus-admin.txt ├── template-virus-recipient-2.12.1-extended.txt └── template-virus-recipient.txt ├── contrib └── amavisd-release-web.spec ├── cron ├── README.md └── amavisd-quarantine-notify.pl ├── css ├── bootstrap.min.css └── starter-template.css ├── include ├── config.php.example ├── functions.php ├── lang-de.php ├── lang-en.php ├── lang-it.php └── start.php ├── index.php ├── php ├── error.php └── release.php └── pics ├── captcha.png ├── mail.png ├── main.png └── release_ok.png /.gitignore: -------------------------------------------------------------------------------- 1 | include/config.php 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/README.md -------------------------------------------------------------------------------- /amavis-templ/template-virus-admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/amavis-templ/template-virus-admin.txt -------------------------------------------------------------------------------- /amavis-templ/template-virus-recipient-2.12.1-extended.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/amavis-templ/template-virus-recipient-2.12.1-extended.txt -------------------------------------------------------------------------------- /amavis-templ/template-virus-recipient.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/amavis-templ/template-virus-recipient.txt -------------------------------------------------------------------------------- /contrib/amavisd-release-web.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/contrib/amavisd-release-web.spec -------------------------------------------------------------------------------- /cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/cron/README.md -------------------------------------------------------------------------------- /cron/amavisd-quarantine-notify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/cron/amavisd-quarantine-notify.pl -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/starter-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/css/starter-template.css -------------------------------------------------------------------------------- /include/config.php.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/include/config.php.example -------------------------------------------------------------------------------- /include/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/include/functions.php -------------------------------------------------------------------------------- /include/lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/include/lang-de.php -------------------------------------------------------------------------------- /include/lang-en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/include/lang-en.php -------------------------------------------------------------------------------- /include/lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/include/lang-it.php -------------------------------------------------------------------------------- /include/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/include/start.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/index.php -------------------------------------------------------------------------------- /php/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/php/error.php -------------------------------------------------------------------------------- /php/release.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/php/release.php -------------------------------------------------------------------------------- /pics/captcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/pics/captcha.png -------------------------------------------------------------------------------- /pics/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/pics/mail.png -------------------------------------------------------------------------------- /pics/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/pics/main.png -------------------------------------------------------------------------------- /pics/release_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianNoss/amavisd-release-web/HEAD/pics/release_ok.png --------------------------------------------------------------------------------