Home > Blockchain >  Can i add multiple certbot emails for notification?
Can i add multiple certbot emails for notification?

Time:10-22

I have searched the official documentation and I have not obtained a response, it is possible to have, for example, two email addresses for CERTBOT notifications, to know when a certificate is about to expire?

I have only been able to configure one at a time

Thanks!

CodePudding user response:

Yes, you can add multiple email addresses


From certbot --help all:

-m EMAIL / --email EMAIL

Email used for registration and recovery contact.

Use comma to register multiple emails, ex:
[email protected],[email protected]. (default: Ask).


This feature has been added in pull request #5994 after being brought to attention by issue #4242

  • Related