Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsydneyli <sydli@stanford.edu>2018-06-22 02:11:02 +0300
committerBrad Warren <bmw@users.noreply.github.com>2018-06-22 02:11:02 +0300
commit7890de62ecfd0a3de60b81fabba4659cf80605d1 (patch)
treedeb04cb6a9dc1dd899e665f0a161c2123afa34a6
parent1e1e7d8e973be0b7376d96fb07c59816f694a83a (diff)
doc(postfix): install instructions (#6136)
fixes #6131 * doc(postfix): install instructions * address brad's comments
-rw-r--r--certbot-postfix/README.rst19
1 files changed, 16 insertions, 3 deletions
diff --git a/certbot-postfix/README.rst b/certbot-postfix/README.rst
index 78fd9a421..e6367e365 100644
--- a/certbot-postfix/README.rst
+++ b/certbot-postfix/README.rst
@@ -2,9 +2,22 @@
Postfix plugin for Certbot
==========================
-To install your certs with this plugin, run:
+Note: this MTA installer is in **developer beta**-- we appreciate any testing, feedback, or
+feature requests for this plugin.
-``certbot install --installer postfix --cert-path <path to cert> --key-path <path to key> -d <MX hostname>``
+To install this plugin, in the root of this repo, run::
-And there you go! If you'd like to obtain these certificates via certbot, there's more documentation on how to do this `here <https://certbot.eff.org/docs/using.html#getting-certificates-and-choosing-plugins>`_.
+ ./tools/venv.sh
+ source venv/bin/activate
+You can use this installer with any `authenticator plugin
+<https://certbot.eff.org/docs/using.html#getting-certificates-and-choosing-plugins>`_.
+For instance, with the `standalone authenticator
+<https://certbot.eff.org/docs/using.html#standalone>`_, which requires no extra server
+software, you might run::
+
+ sudo ./venv/bin/certbot run --standalone -i postfix -d <domain name>
+
+To just install existing certs with this plugin, run::
+
+ sudo ./venv/bin/certbot install -i postfix --cert-path <path to cert> --key-path <path to key> -d <domain name>