diff options
author | Kim Alvefur <zash@zash.se> | 2013-04-29 14:01:19 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-04-29 14:01:19 +0200 |
commit | efd4295e210729ea19c93001d8b45c19279998a6 (patch) | |
tree | 42d11080b7f3bc1cb02622189b19a148a481081e /prosodyctl | |
parent | 3cc07212ee6810907d39e29b4cff3f7383de8ac1 (diff) | |
download | prosody-efd4295e210729ea19c93001d8b45c19279998a6.tar.gz prosody-efd4295e210729ea19c93001d8b45c19279998a6.zip |
prosodyctl: Guess the country from the TLD for the cert config
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -670,6 +670,11 @@ function cert_commands.config(arg) v = arg[1] elseif k == "emailAddress" then v = "xmpp@" .. arg[1]; + elseif k == "countryName" then + local tld = arg[1]:match"%.([a-z]+)$"; + if tld and #tld == 2 and tld ~= "uk" then + v = tld:upper(); + end end nv = show_prompt(("%s (%s):"):format(k, nv or v)); nv = (not nv or nv == "") and v or nv; |