github.com/letsencrypt/boulder@v0.20251208.0/sfe/pages/unpause-status.html (about) 1 {{ template "header" }} 2 3 <div class="section"> 4 5 {{ if and .Successful (gt .Count 0) (lt .Count .Limit) }} 6 <h1>Successfully unpaused all {{ .Count }} identifier(s)</h1> 7 <p> 8 To obtain a new certificate, re-attempt issuance with your ACME client. 9 Future repeated validation failures with no successes will result in 10 identifiers being paused again. 11 </p> 12 13 {{ else if and .Successful (eq .Count .Limit)}} 14 <h1>Some identifiers were unpaused</h1> 15 <p> 16 We can only unpause a limited number of identifiers for each request ({{ 17 .Limit }}). There are potentially more identifiers paused for your 18 account. 19 </p> 20 <p> 21 To attempt to unpause more identifiers, visit the unpause URL from 22 your logs again and click the "Please Unpause My Account" button. 23 </p> 24 25 {{ else if and .Successful (eq .Count 0) }} 26 <h1>Account already unpaused</h1> 27 <p> 28 There were no identifiers to unpause for your account. If you face 29 continued difficulties, please visit our <a 30 href="https://community.letsencrypt.org">community support forum</a> 31 for troubleshooting and advice. 32 </p> 33 34 {{ else }} 35 <h1>An error occurred while unpausing your account</h1> 36 <p> 37 Please try again later. If you face continued difficulties, please visit 38 our <a href="https://community.letsencrypt.org">community support 39 forum</a> 40 for troubleshooting and advice. 41 </p> 42 43 {{ end }} 44 45 </div> 46 47 {{ template "footer" }}