aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2012-05-14 18:04:32 +0200
committerKim Alvefur <zash@zash.se>2012-05-14 18:04:32 +0200
commit0e5cf44aad70a894851af63d56d10ce2cc4e29b6 (patch)
treedeb2b837fa2b7313f92175deb122cc28a4d11322
parent1ef9002349617281dd0ea8de565ba07b0d712073 (diff)
downloadprosody-0e5cf44aad70a894851af63d56d10ce2cc4e29b6.tar.gz
prosody-0e5cf44aad70a894851af63d56d10ce2cc4e29b6.zip
prosodyctl: Fix for generating certs with UTF-8
-rwxr-xr-xprosodyctl3
1 files changed, 3 insertions, 0 deletions
diff --git a/prosodyctl b/prosodyctl
index 6e112ccf..1819ddd1 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -640,6 +640,9 @@ function cert_commands.config(arg)
end
nv = show_prompt(("%s (%s):"):format(k, nv or v));
nv = (not nv or nv == "") and v or nv;
+ if nv:find"[\192-\252][\128-\191]+" then
+ conf.req.string_mask = "utf8only"
+ end
conf.distinguished_name[k] = nv ~= "." and nv or nil;
end
local conf_file = io.open(conf_filename, "w");