diff options
author | Ruben Pollan <meskio@sindominio.net> | 2016-09-27 15:48:29 -0500 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2016-09-27 21:40:28 -0500 |
commit | 0a0bdc9abbca1d07c1af781567e3a51c529c0447 (patch) | |
tree | 883b70f8ebc5825fe1cad7a865d5ab0f0845149d /src/leap/bitmask/cli | |
parent | 125c711cd5b6faa4e6d62d18dde61dac90471f39 (diff) |
[feat] Fetch smtp cert automatically if missing
It's missing dealing with expired certs.
I remove get_smtp_certificate core command.
- Closes: #8486
Diffstat (limited to 'src/leap/bitmask/cli')
-rw-r--r-- | src/leap/bitmask/cli/mail.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/leap/bitmask/cli/mail.py b/src/leap/bitmask/cli/mail.py index f0fa972..4625131 100644 --- a/src/leap/bitmask/cli/mail.py +++ b/src/leap/bitmask/cli/mail.py @@ -32,9 +32,7 @@ SUBCOMMANDS: disable Stop service status Display status about service get_token Returns token for the mail service - get_smtp_certificate Downloads a new smtp certificate '''.format(name=command.appname) - commands = ['enable', 'disable', 'status', 'get_token', - 'get_smtp_certificate'] + commands = ['enable', 'disable', 'status', 'get_token'] |