txacme
txacme copied to clipboard
Allow providing a registration email
Currently all ACME registrations are anonymous. Let's Encrypt doesn't have a problem with this, but some other future ACME CA might not allow this, and providing an email address with your registration enables you to receive certificate expiration warning emails from Let's Encrypt, which are useful if something goes wrong and you're not watching your logs closely to see the issuing failures from txacme
.
#97 provided the low-level support for this, but the endpoint parameters still need to be extended to support passing an email address.
I'd love to transitively put support for this into https://github.com/glyph/lancer.
@glyph Pass the email
parameter to AcmeIssuingService
here: https://github.com/glyph/lancer/blob/8d065def9bfd19b8b10b9e9c1f7236cd6019f0cb/lancer/_impl.py#L76
Rad. Thanks.