- 26 Jul, 2020 1 commit
-
-
Vinton Huang authored
- Message of failed test [1]: /root/.acme.sh/acme.sh --deactivate -d testdocker.acme.sh [FAIL] - Reason of failure: left brace was not escaped. According to the standard [2], if special chars appear first in an ERE, it will produce undefined results. - egrep from busybox (and thus alpine) take it as an error, but egrep from GNU grep (included in most distros) and *BSD are more tolerant, just ignore it. - Fix: consider the right brace at the right-hand side of the ERE, the result string will not contain right brace. So the left-hand side should not contain left brace, too. [1] https://github.com/acmesh-official/acmetest/blob/446939706e07c26267d83f71e4d0b8b152b0d3de/logs/alpine-latest.out#L119 [2] 9.4.3 ERE Special Characters, The Open Group Base Specifications. https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap09.html
-
- 14 Jul, 2020 1 commit
-
-
neil authored
-
- 13 Jul, 2020 2 commits
- 08 Jul, 2020 1 commit
-
-
grindsa authored
leftpadding "0" if _ec_s and _ec_r are to short
-
- 07 Jul, 2020 1 commit
-
-
Licaon_Kter authored
-
- 29 Jun, 2020 2 commits
-
-
Tony Gravagno authored
-
Tony Gravagno authored
-
- 25 May, 2020 1 commit
-
-
grindsa authored
-
- 24 May, 2020 1 commit
-
- 22 May, 2020 1 commit
-
-
Dan Dascalescu authored
-
- 21 May, 2020 1 commit
-
-
- 19 May, 2020 4 commits
-
-
Maarten den Braber authored
-
-
Maarten den Braber authored
-
Maarten den Braber authored
-
- 13 May, 2020 1 commit
-
-
Maarten den Braber authored
-
- 04 May, 2020 1 commit
-
-
neil authored
-
- 25 Apr, 2020 1 commit
-
- 18 Apr, 2020 2 commits
-
-
neil authored
-
-
- 17 Apr, 2020 1 commit
-
-
Simon Wydooghe authored
It seems the current code doesn't allow for removing the email address from the contact field. This fixes that. This only removes the email address if an explicit empty email address is specified on the command line or in the account.conf file. If it is left unspecified on the command line it still just uses whatever was configured in the account.conf.
-
- 12 Apr, 2020 1 commit
-
-
- 01 Apr, 2020 3 commits
-
-
Oliver Burgmaier authored
This fix removes the space between "mailto:" and the email address to make the contact attribute compliant to RFC6068.
-
Oliver Burgmaier authored
This fixes the parsing of the authorization segment in the response of an order. Without this fix the start of the array is not found correctly and therefore the finalize URL is part of the authorization segment. Changing the regex to *\[[^\[]*\] fix this. Seems to be a typo which has not been recognized so far. This can be only recognized if the response is in a single line.
-
Oliver Burgmaier authored
This fixes the parsing of the authorization segment in the response of an order. Without this fix the start of the array is not found correctly and therefore the finalize URL is part of the authorization segment. Changing the regex to *\[[^\[]*\] fix this. Seems to be a typo which has not been recognized so far. This can be only recognized if the response is in a single line.
-
- 30 Mar, 2020 1 commit
-
-
Xiaohui Lam authored
-
- 24 Mar, 2020 1 commit
-
-
Oliver Blaha authored
-
- 09 Mar, 2020 1 commit
-
-
neil authored
-
- 07 Mar, 2020 2 commits
-
-
ThiloGa authored
-
-
- 04 Mar, 2020 1 commit
-
-
Ian Wienand authored
When running --updateaccount, the ca/<ca>/account.json file isn't updated with the new response showing the updated account details. This can be a bit confusing if you add an email to the account but then you're not sure if it actually applied looking at this file. Write out the new response on successful account updates.
-
- 25 Feb, 2020 1 commit
-
-
alex authored
This adds quotes to the last eval in _getdeployconf which is reponsible for loading and exporting saved environment variables back into the acme.sh process. This caused some errors if used with the docker deploy-hook and the example nginx "service nginx force-reload" command as it contains spaces.
-
- 18 Feb, 2020 1 commit
-
-
xpac1985 authored
-
- 30 Jan, 2020 1 commit
-
-
neilpang authored
-
- 27 Jan, 2020 5 commits
-
-
neilpang authored
-
neilpang authored
-
https://github.com/Neilpang/acme.sh/issues/2695neilpang authored
If a domain was already verified by http-01 method, when we try to issue a cert for them same domain with dns-01 method, we just get only one challenge object of type http-01 with "valid" status, from the authz-v3 url. So, we report error that we are not able the validate the domain, because of that we don't find dns-01 challenge. This behavior is not the same as before. I believe it was changed by the letsencrypt CA.
-
neilpang authored
-
neilpang authored
-