mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
- Old text hard codes the rate limit - Let's Encrypt CA might change its rate limit - Other CAs might have different rate limits Update CHANGELOG.md
This commit is contained in:
parent
b9a8248541
commit
0f4c31c9c7
2 changed files with 2 additions and 1 deletions
|
|
@ -15,6 +15,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
|
|||
### Changed
|
||||
|
||||
* Allow session tickets to be disabled in Apache when mod_ssl is statically linked.
|
||||
* Generalize UI warning message on renewal rate limits
|
||||
* Certbot behaves similarly on Windows to on UNIX systems regarding umask, and
|
||||
the umask `022` is applied by default: all files/directories are not writable by anyone
|
||||
other than the user running Certbot and the system/admin users.
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ def _handle_identical_cert_request(config, lineage):
|
|||
elif config.verb == "certonly":
|
||||
keep_opt = "Keep the existing certificate for now"
|
||||
choices = [keep_opt,
|
||||
"Renew & replace the cert (limit ~5 per 7 days)"]
|
||||
"Renew & replace the cert (may be subject to CA rate limits)"]
|
||||
|
||||
display = zope.component.getUtility(interfaces.IDisplay)
|
||||
response = display.menu(question, choices,
|
||||
|
|
|
|||
Loading…
Reference in a new issue