String explanation = null;
try {
// Setup the data
spfData = new SPF1Data(mailFrom, hostName, ipAddress);
spfData.enableDNSService(dnsProbe);
checkSPF(spfData);
String resultChar = spfData.getCurrentResult() != null ? spfData.getCurrentResult() : "";
result = SPF1Utils.resultToName(resultChar);
explanation = spfData.getExplanation();
} catch (SPFResultException e) {