diff --git a/certbot/CHANGELOG.md b/certbot/CHANGELOG.md index 9a0c82baf..41e6d621a 100644 --- a/certbot/CHANGELOG.md +++ b/certbot/CHANGELOG.md @@ -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. diff --git a/certbot/certbot/_internal/main.py b/certbot/certbot/_internal/main.py index cd00297a9..30f4dd0a2 100644 --- a/certbot/certbot/_internal/main.py +++ b/certbot/certbot/_internal/main.py @@ -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,