spfquery - checks if an IP address is an SPF-authorized SMTP sender for a domain
2.3
spfquery --mail-from|-m|--sender|-s email-address|domain --helo|-h hostname --ip|-i ip-address [OPTIONS]
spfquery --helo|-h hostname --ip|-i ip-address [OPTIONS]
spfquery --file|-f filename|- [OPTIONS]
spfquery --version|-V
spfquery --help
spfquery performs Sender Policy Framework (SPF) authorization checks based on the command-line arguments or data given in a file or on standard input. For information on SPF see http://www.openspf.org.
The --mail-from form checks if the given ip-address is an authorized SMTP
sender for the given envelope sender domain or email-address and HELO
hostname (so-called MAIL FROM
check). If a domain is given,
postmaster
will be substituted for the localpart.
The --helo form checks if the given ip-address is an authorized SMTP
sender for the given HELO
hostname (so-called HELO
check).
The --file form reads "ip-address sender-address helo-hostname" tuples from the file with the specified filename, or from standard input if filename is -.
The --version form prints version information of spfquery. The --help form prints usage information for spfquery.
The --mail-from, --helo, and --file forms optionally take any of the following additional OPTIONS:
all
mechanism at the end of the domain's SPF
record). For example, this could be used for white-listing one's secondary
MXes: mx:mydomain.example.org
.
--override example.org='v=spf1 -all' --override
'*.example.net'='v=spf1 a mx -all' --fallback example.com='v=spf1 -all'
.
This is a non-standard feature.
trusted-forwarder.org
accreditation checking. Disabled by
default. This is a non-standard feature.
spfquery -i 11.22.33.44 -m user@example.com -h spammer.example.net spfquery -f test_data echo "127.0.0.1 user@example.com helohost.example.com" | spfquery -f -
This version of spfquery was written by Wayne Schlitt <wayne@midwestcs.com>.
This man-page was written by Julian Mehnle <julian@mehnle.net>, based on a man-page written by S. Zachariah Sprackett for an older version of spfquery.