├── .env.dist ├── .github └── workflows │ ├── build-documentation.yml │ └── build.yml ├── .gitignore ├── .htaccess ├── CHANGELOG.txt ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION ├── apidoc-overview.md ├── apidoc.json ├── apigen-overview.md ├── apigen.neon ├── composer.json ├── composer.lock ├── composer.phar ├── dav.php ├── favicon.ico ├── index.php ├── package.json ├── php-cs-fixer.phar ├── phpstan.neon ├── pre-config.json ├── robots.txt └── vue.config.js /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/workflows/build-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/.github/workflows/build-documentation.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/.htaccess -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | support@afterlogic.com 2 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 9.8.3.build9 2 | -------------------------------------------------------------------------------- /apidoc-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/apidoc-overview.md -------------------------------------------------------------------------------- /apidoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/apidoc.json -------------------------------------------------------------------------------- /apigen-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/apigen-overview.md -------------------------------------------------------------------------------- /apigen.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/apigen.neon -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/composer.lock -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/composer.phar -------------------------------------------------------------------------------- /dav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/dav.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/package.json -------------------------------------------------------------------------------- /php-cs-fixer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/php-cs-fixer.phar -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/phpstan.neon -------------------------------------------------------------------------------- /pre-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/pre-config.json -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | 4 | -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-pro-8/HEAD/vue.config.js --------------------------------------------------------------------------------