We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a40d1 commit a628b6bCopy full SHA for a628b6b
ChangeLog
@@ -1,3 +1,6 @@
1
+ * Pebble 2.9+ reports another error when terms of service agreement is not set.
2
+ Treating all "userActionRequired" errors as permanent now.
3
+
4
v2.6.8
5
----------------------------------------------------------------------------------------------------
6
* Fix the ARI related `replaces` property in ACME order creation to only
src/md_acme.c
@@ -49,6 +49,7 @@ struct acme_problem_status_t {
49
};
50
51
static acme_problem_status_t Problems[] = {
52
+ { "acme:error:agreementRequired", APR_EGENERAL, 1 },
53
{ "acme:error:badCSR", APR_EINVAL, 1 },
54
{ "acme:error:badNonce", APR_EAGAIN, 0 },
55
{ "acme:error:badSignatureAlgorithm", APR_EINVAL, 1 },
@@ -61,7 +62,7 @@ static acme_problem_status_t Problems[] = {
61
62
{ "acme:error:serverInternal", APR_EGENERAL, 0 },
63
{ "acme:error:unauthorized", APR_EACCES, 0 },
64
{ "acme:error:unsupportedIdentifier", APR_BADARG, 1 },
- { "acme:error:userActionRequired", APR_EAGAIN, 0 },
65
+ { "acme:error:userActionRequired", APR_EGENERAL, 1 },
66
{ "acme:error:badRevocationReason", APR_EINVAL, 1 },
67
{ "acme:error:caa", APR_EGENERAL, 0 },
68
{ "acme:error:dns", APR_EGENERAL, 0 },
0 commit comments