├── AUTHORS ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.rst ├── dmarc ├── __init__.py ├── admin.py ├── apps.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── importdmarcfeedback.py │ │ └── importdmarcreport.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150303_1606.py │ ├── 0003_auto_20150307_1531.py │ ├── 0004_auto_20150310_1725.py │ ├── 0005_report_report_xml.py │ ├── 0006_auto_20160408_1427.py │ ├── 0007_auto_20161121_1318.py │ ├── 0008_auto_20170108_1428.py │ ├── 0009_auto_20170109_1738.py │ └── __init__.py ├── models.py ├── templates │ ├── admin │ │ └── dmarc │ │ │ └── app_index.html │ └── dmarc │ │ └── report.html ├── test_import.py ├── tests │ └── dmarcreport.xml ├── urls.py └── views.py ├── docs ├── Makefile ├── README.rst ├── changelog.rst ├── conf.py ├── images │ ├── dmarc-dashboard.png │ ├── dmarc-index.png │ ├── dmarc-report.png │ └── dmarc-reportfilter.png └── index.rst └── setup.py /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | docs/README.rst -------------------------------------------------------------------------------- /dmarc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/__init__.py -------------------------------------------------------------------------------- /dmarc/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/admin.py -------------------------------------------------------------------------------- /dmarc/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/apps.py -------------------------------------------------------------------------------- /dmarc/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dmarc/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dmarc/management/commands/importdmarcfeedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/management/commands/importdmarcfeedback.py -------------------------------------------------------------------------------- /dmarc/management/commands/importdmarcreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/management/commands/importdmarcreport.py -------------------------------------------------------------------------------- /dmarc/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/migrations/0001_initial.py -------------------------------------------------------------------------------- /dmarc/migrations/0002_auto_20150303_1606.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/migrations/0002_auto_20150303_1606.py -------------------------------------------------------------------------------- /dmarc/migrations/0003_auto_20150307_1531.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/migrations/0003_auto_20150307_1531.py -------------------------------------------------------------------------------- /dmarc/migrations/0004_auto_20150310_1725.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/migrations/0004_auto_20150310_1725.py -------------------------------------------------------------------------------- /dmarc/migrations/0005_report_report_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/migrations/0005_report_report_xml.py -------------------------------------------------------------------------------- /dmarc/migrations/0006_auto_20160408_1427.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/migrations/0006_auto_20160408_1427.py -------------------------------------------------------------------------------- /dmarc/migrations/0007_auto_20161121_1318.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/migrations/0007_auto_20161121_1318.py -------------------------------------------------------------------------------- /dmarc/migrations/0008_auto_20170108_1428.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/migrations/0008_auto_20170108_1428.py -------------------------------------------------------------------------------- /dmarc/migrations/0009_auto_20170109_1738.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/migrations/0009_auto_20170109_1738.py -------------------------------------------------------------------------------- /dmarc/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dmarc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/models.py -------------------------------------------------------------------------------- /dmarc/templates/admin/dmarc/app_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/templates/admin/dmarc/app_index.html -------------------------------------------------------------------------------- /dmarc/templates/dmarc/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/templates/dmarc/report.html -------------------------------------------------------------------------------- /dmarc/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/test_import.py -------------------------------------------------------------------------------- /dmarc/tests/dmarcreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/tests/dmarcreport.xml -------------------------------------------------------------------------------- /dmarc/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/urls.py -------------------------------------------------------------------------------- /dmarc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/dmarc/views.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/dmarc-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/docs/images/dmarc-dashboard.png -------------------------------------------------------------------------------- /docs/images/dmarc-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/docs/images/dmarc-index.png -------------------------------------------------------------------------------- /docs/images/dmarc-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/docs/images/dmarc-report.png -------------------------------------------------------------------------------- /docs/images/dmarc-reportfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/docs/images/dmarc-reportfilter.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/docs/index.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-hicks/django-dmarc/HEAD/setup.py --------------------------------------------------------------------------------