Skip to content

Commit 8c52875

Browse files
committed
v1.6.0
1 parent 73d84f0 commit 8c52875

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
22

33
BINARY=mxcheck
44

5-
VERSION=v1.6.0-BETA-1
5+
VERSION=v1.6.0
66

77

88
BUILD=`git rev-parse --short HEAD`

dns.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ func getDMARC(targetHostName string, dnsServer string) (dmarc, error) {
231231
dmarcdomain := "_dmarc." + targetHostName
232232

233233
m := new(dns.Msg)
234+
// ToDo: Implement check if type is not TXT but CNAME
234235
m.SetQuestion(dns.Fqdn(dmarcdomain), dns.TypeTXT)
235236

236237
c := new(dns.Client)

versionmsg.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ var Version string
66
// Build is used by the Makefile to set the build, i.e. short git fingerprint
77
var Build string
88

9-
var info = "mxcheck -- Copyright (C) 2019-2024 Steffen Fritz -- "
9+
var info = "mxcheck -- Copyright (C) 2019-2024 Steffen Fritz"
1010

1111
var license = `This program comes with ABSOLUTELY NO WARRANTY.
1212
This is free software under GPL-3.0, and you are welcome to
1313
redistribute it under certain conditions. See license file.`
1414

15-
var versionmsg = info + " version: " + Version + " build: " + Build + "\n\n" + license + "\n"
15+
var contact = `For bugs and feature requests use the tracker at github.com/steffenfritz/mxcheck`
16+
17+
var versionmsg = info + "\n\nVersion: " + Version + "\nBuild: " + Build + "\n\n" + license + "\n\n" + contact + "\n"

0 commit comments

Comments
 (0)