From: Ansgar Burchardt Date: Tue, 3 Apr 2018 16:31:08 +0000 (+0200) Subject: ud-mailgate: include name of unknown host in error message X-Git-Tag: userdir-ldap-0.3.93~17 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=4716709b593f2da1696744281610309faadc81d6 ud-mailgate: include name of unknown host in error message --- diff --git a/ud-mailgate b/ud-mailgate index e6b54a9..fd70c37 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -297,7 +297,7 @@ def DoSSH(Str, Attrs, badkeys, uid): if not machine_regex.match(m): return "machine specification for ssh key contains invalid characters" if m not in ValidHostNames: - return "unknown machine used in allowed_hosts stanza for ssh keys" + return "unknown machine {} used in allowed_hosts stanza for ssh keys".format(m) (fd, path) = tempfile.mkstemp(".pub", "sshkeytry", "/tmp") f = open(path, "w")