diff --git a/main.go b/main.go index 3aebb38..bdabe29 100644 --- a/main.go +++ b/main.go @@ -334,6 +334,7 @@ func main() { } // Recipient accepted + singlemx.fakercpt = orresult.rcptboolresult if orresult.rcptboolresult { InfoLogger.Println("Recipient accepted.") } else { diff --git a/output.go b/output.go index e2c846e..f53f58e 100644 --- a/output.go +++ b/output.go @@ -72,16 +72,16 @@ func writeTSV(targetHostName string, runresult runresult, blacklist bool) error if blacklist { for bldns, blacklistresult := range runresult.bldnsnamelisted { - err = tsv.Write([]string{bldns + " lists ", blacklistresult}) + err = tsv.Write([]string{"Blacklist " + bldns + " lists ", blacklistresult}) } for bldns, blacklistresult := range runresult.bldnsnamenotlisted { - err = tsv.Write([]string{bldns + " does not list ", blacklistresult}) + err = tsv.Write([]string{"Blacklist " + bldns + " does not list ", blacklistresult}) } for bldns, blacklistresult := range runresult.bldnsiplisted { - err = tsv.Write([]string{bldns + " lists ", blacklistresult}) + err = tsv.Write([]string{"Blacklist " + bldns + " lists ", blacklistresult}) } for bldns, blacklistresult := range runresult.bldnsipnotlisted { - err = tsv.Write([]string{bldns + " does not list ", blacklistresult}) + err = tsv.Write([]string{"Blacklist " + bldns + " does not list ", blacklistresult}) } }