File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
88- Disable Apache2 Server Status Module by default.
99- Do not allow to change the password of a non-hestia user. Thanks to Alexandre Zanni!
1010- Remove duplicated set-cookie line in default fpm config.
11+ - Adjust let's encrypt validation check for idn domains, thanks to @zanami !
1112
1213## [ 1.1.1] - 2020-03-24 - Hotfix
1314### Features
Original file line number Diff line number Diff line change 134134# Check if dns records exist for requested domain/aliases
135135if [ " $proto " = " http-01" ]; then
136136 for identifier in $( echo $domain ,$aliases | tr ' ,' ' \n' | sort -u) ; do
137+ if [[ " $identifier " = * [! [:ascii:]]* ]]; then
138+ identifier= $( idn -t --quiet -a $identifier )
139+ fi
137140 if ! nslookup " ${identifier} " > /dev/null 2>&1 ; then
138141 check_result $E_NOTEXIST " DNS record for $identifier doesn't exist"
139142 fi
You can’t perform that action at this time.
0 commit comments