diff --git a/certbot/account.py b/certbot/account.py index 389f96791..bf14e0ac4 100644 --- a/certbot/account.py +++ b/certbot/account.py @@ -82,22 +82,6 @@ class Account(object): # pylint: disable=too-few-public-methods self.key == other.key and self.regr == other.regr and self.meta == other.meta) - -def report_new_account(config): - """Informs the user about their new ACME account.""" - reporter = zope.component.queryUtility(interfaces.IReporter) - if reporter is None: - return - reporter.add_message( - "Your account credentials have been saved in your Certbot " - "configuration directory at {0}. You should make a secure backup " - "of this folder now. This configuration directory will also " - "contain certificates and private keys obtained by Certbot " - "so making regular backups of this folder is ideal.".format( - config.config_dir), - reporter.MEDIUM_PRIORITY) - - class AccountMemoryStorage(interfaces.AccountStorage): """In-memory account storage.""" diff --git a/certbot/client.py b/certbot/client.py index 7896ab7dc..84ea4a954 100644 --- a/certbot/client.py +++ b/certbot/client.py @@ -170,7 +170,6 @@ def register(config, account_storage, tos_cb=None): regr = acme.agree_to_tos(regr) acc = account.Account(regr, key) - account.report_new_account(config) account_storage.save(acc, acme) eff.handle_subscription(config) diff --git a/certbot/tests/account_test.py b/certbot/tests/account_test.py index 5950dcda9..a3e35c979 100644 --- a/certbot/tests/account_test.py +++ b/certbot/tests/account_test.py @@ -58,28 +58,6 @@ class AccountTest(unittest.TestCase): self.assertTrue(repr(self.acc).startswith( "