1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
.TH opendmarc-import 8 "The Trusted Domain Project"
.SH NAME
.B opendmarc-import
\- OpenDMARC aggregate report data import tool
.SH SYNOPSIS
.B opendmarc-import
[options]
.SH DESCRIPTION
.B opendmarc-import
reads per-message data recorded by an instance of
.B opendmarc(8)
and inserts it into an SQL database, for later use by
.B opendmarc-reports(8)
to generate aggregate reports.
Records are read from standard input.
.SH OPTIONS
.TP
.I --dbhost=hostname
Specifies the hostname on which the SQL server is running. Defaults to
the value of the environment variable OPENDMARC_DBHOST, or "localhost" if
the environment variable is not set.
.TP
.I --dbname=name
Specifies the SQL database name to be accessed. Defaults to
the value of the environment variable OPENDMARC_DB, or "opendmarc" if
the environment variable is not set.
.TP
.I --dbpasswd=password
Specifies the password for the SQL database to be accessed. Defaults to
the value of the environment variable OPENDMARC_PASSWORD, or "opendmarc" if
the environment variable is not set.
.TP
.I --dbport=port
Specifies the TCP port on which the SQL server is expected to be listening.
Defaults to the value of the environment variable OPENDMARC_PORT, or 3306
if the environment variable is not set.
.TP
.I --dbuser=user
Specifies the SQL user to be used to access the database. Defaults to
the value of the environment variable OPENDMARC_USER, or "opendmarc" if
the environment variable is not set.
.TP
.I --help
Prints a help message and terminates.
.TP
.I --verbose
Increase the amount of verbosity written to standard output.
.TP
.I --version
Print version number and exit.
.SH VERSION
This man page covers the version of
.I opendmarc-import
that shipped with version 1.3.0 of
.I OpenDMARC.
.SH COPYRIGHT
Copyright (c) 2012, The Trusted Domain Project. All rights reserved.
.SH SEE ALSO
.I opendmarc(8),
.I opendmarc.conf(5)
.I opendmarc-reports(8)
|