As with many Go utilities, a simple
go get github.com/kenmoini/dmarc-rest-api
is enough to fetch, build and install.
Aside from the standard library, this uses the following:
go get -u github.com/intel/tfortools
go get -u github.com/keltia/archive
SYNOPSIS
dmarc-rest-api [-hvD] [--rest-server] <zipfile|xmlfile>
Example:
$ dmarc-rest-api /tmp/yahoo.com\!keltia.net\!1518912000\!1518998399.xml
Reporting by: Yahoo! Inc. — postmaster@dmarc.yahoo.com
From 2018-02-18 01:00:00 +0100 CET to 2018-02-19 00:59:59 +0100 CET
Domain: keltia.net
Policy: p=none; dkim=r; spf=r
Reports(1):
IP Count From RFrom RDKIM RSPF
88.191.250.24 1 keltia.net keltia.net neutral pass
SYNOPSIS
$ ./dmarc-rest-api --rest-server
This simple command will start the REST API Server listening on port 8080. These are the following exposed endpoints:
- /api/v1/upload_bundle - The API endpoint accepting bundleFile input
- /healthz - A simple 200 OK Health Check for Kubernetes/OpenShift
From there, simply make a REST API call with the POST verb, as a form-data type submission, and with the DMARC bundle file passed via the body in a bundleFile input.
Getting close to 80% coverage. Need to add tests for REST API
This is released under the BSD 2-Clause license. See LICENSE.md
.
I use Git Flow for this package so please use something similar or the usual github workflow.
- Fork it ( https://github.com/kenmoini/dmarc-rest-api/fork )
- Checkout the develop branch (
git checkout develop
) - Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request