├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── critical_report.md │ ├── enhancement_request.md │ └── question.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── config.php.pub ├── docs ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── SECURITY.md ├── SUPPORT.md ├── VERSIONING.md └── images │ └── oda-screenshot.jpg ├── includes.php ├── includes ├── db.php ├── functions.php ├── template-loader.php └── template.php ├── index.php ├── install.php ├── mysql.sql ├── pgsql.sql └── templates ├── openda ├── codebase_logo.png ├── footer.php ├── header.php ├── index.php └── style.css └── openda_light ├── codebase_logo.png ├── footer.php ├── header.php ├── index.php └── style.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/critical_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/.github/ISSUE_TEMPLATE/critical_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/.github/ISSUE_TEMPLATE/enhancement_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/README.md -------------------------------------------------------------------------------- /config.php.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/config.php.pub -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/docs/SUPPORT.md -------------------------------------------------------------------------------- /docs/VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/docs/VERSIONING.md -------------------------------------------------------------------------------- /docs/images/oda-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/docs/images/oda-screenshot.jpg -------------------------------------------------------------------------------- /includes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/includes.php -------------------------------------------------------------------------------- /includes/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/includes/db.php -------------------------------------------------------------------------------- /includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/includes/functions.php -------------------------------------------------------------------------------- /includes/template-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/includes/template-loader.php -------------------------------------------------------------------------------- /includes/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/includes/template.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/index.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/install.php -------------------------------------------------------------------------------- /mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/mysql.sql -------------------------------------------------------------------------------- /pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/pgsql.sql -------------------------------------------------------------------------------- /templates/openda/codebase_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda/codebase_logo.png -------------------------------------------------------------------------------- /templates/openda/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda/footer.php -------------------------------------------------------------------------------- /templates/openda/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda/header.php -------------------------------------------------------------------------------- /templates/openda/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda/index.php -------------------------------------------------------------------------------- /templates/openda/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda/style.css -------------------------------------------------------------------------------- /templates/openda_light/codebase_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda_light/codebase_logo.png -------------------------------------------------------------------------------- /templates/openda_light/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda_light/footer.php -------------------------------------------------------------------------------- /templates/openda_light/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda_light/header.php -------------------------------------------------------------------------------- /templates/openda_light/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda_light/index.php -------------------------------------------------------------------------------- /templates/openda_light/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userjack6880/Open-DMARC-Analyzer/HEAD/templates/openda_light/style.css --------------------------------------------------------------------------------