summaryrefslogtreecommitdiff
path: root/tools/libskrewt.c
diff options
context:
space:
mode:
authorJohn Denker <jsd@av8n.com>2012-11-24 20:44:01 -0800
committerJohn Denker <jsd@av8n.com>2012-11-24 20:44:01 -0800
commit9a783cb0791327367d85b63bf3e0e4e1aa215163 (patch)
treea1b769a8e2009e322a17c64cc79fc7663080cb4b /tools/libskrewt.c
parentf7de8573f5521263449fd80a2d5cdf3901b96087 (diff)
reduce "junk" and other noise in log file
Diffstat (limited to 'tools/libskrewt.c')
-rw-r--r--tools/libskrewt.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/libskrewt.c b/tools/libskrewt.c
index d93a9e1..f51a8bc 100644
--- a/tools/libskrewt.c
+++ b/tools/libskrewt.c
@@ -217,10 +217,12 @@ int skrewt::dump_bigbuf(std::ostream& xout){
void check_spf(name_tester& fqdn, const string ip) {
sepofra my_spf;
try {
- my_spf.check(ip,
- fqdn.name,
- "junk",
- "morejunk", 0/* verbosity */);
+ my_spf.check(ip, /* IP */
+ fqdn.name, /* HELO */
+ "", /* mail_from */
+ "", /* rcpt_to */
+ 0 /* verbosity */
+ );
cerr << progid << " " << my_spf.explain() << endl;
// keep a copy of the result:
fqdn.spf = neutral;