*/
protected SPF1Record getSPFRecordPostFilter(String currentDomain, SPF1Record spfRecord) throws PermErrorException, TempErrorException, NoneException, NeutralException {
// Set the result to NEUTRAL if at least a directive is present and it didn't match
// Maybe we should simply append a "?all" at the end, as modifier
if (spfRecord.getDirectives().size() > 0) {
spfRecord.getModifiers().add(new SPFChecker() {
public void checkSPF(SPF1Data spfData) throws PermErrorException, NoneException, TempErrorException, NeutralException {
// If no match was found set the result to neutral
if (spfData.getCurrentResult() == null) {
spfData.setCurrentResult(SPF1Constants.NEUTRAL);
}