Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
steffenfritz committed Jun 24, 2024
1 parent 73d84f0 commit 8c52875
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))

BINARY=mxcheck

VERSION=v1.6.0-BETA-1
VERSION=v1.6.0


BUILD=`git rev-parse --short HEAD`
Expand Down
1 change: 1 addition & 0 deletions dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ func getDMARC(targetHostName string, dnsServer string) (dmarc, error) {
dmarcdomain := "_dmarc." + targetHostName

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

c := new(dns.Client)
Expand Down
6 changes: 4 additions & 2 deletions versionmsg.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ var Version string
// Build is used by the Makefile to set the build, i.e. short git fingerprint
var Build string

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

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

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

var versionmsg = info + "\n\nVersion: " + Version + "\nBuild: " + Build + "\n\n" + license + "\n\n" + contact + "\n"

0 comments on commit 8c52875

Please sign in to comment.