From 0f4c31c9c74cc390912700c6bcd2099b5e62d1b7 Mon Sep 17 00:00:00 2001 From: dmmortimer Date: Thu, 25 Jun 2020 14:43:08 -0400 Subject: [PATCH] Generalize renewal rate limit UI warning message (#3456) (#8061) - 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 --- certbot/CHANGELOG.md | 1 + certbot/certbot/_internal/main.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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,