Skip to content

Commit

Permalink
Adding email recipient to challenge message for multiple requests.
Browse files Browse the repository at this point in the history
Signed-off-by: Pol Henarejos <[email protected]>
  • Loading branch information
polhenarejos committed Nov 2, 2021
1 parent 5d86ff7 commit eb67cd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion certbot_castle/plugins/imap.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def _perform_emailreply00(self, achall):

notify = zope.component.getUtility(interfaces.IDisplay).notification

text = 'A challenge request for S/MIME certificate has been sent. In few minutes, ACME server will send a challenge e-mail to requested recipient. You do not need to take ANY action, as it will be replied automatically.'
text = 'A challenge request for S/MIME certificate has been sent. In few minutes, ACME server will send a challenge e-mail to requested recipient {}. You do not need to take ANY action, as it will be replied automatically.'.format(achall.domain)
notify(text,pause=False)
stop = False
dkim_h = ['from','auto-submitted','date','message-id','subject','to']
Expand Down
2 changes: 1 addition & 1 deletion certbot_castle/plugins/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _perform_emailreply00(self, achall):

notify = zope.component.getUtility(interfaces.IDisplay).notification

text = 'A challenge request for S/MIME certificate has been sent. In few minutes, ACME server will send a challenge e-mail to requested recipient. Please, copy the ENTIRE subject and paste it below. The subject starts with the label ACME: '
text = 'A challenge request for S/MIME certificate has been sent. In few minutes, ACME server will send a challenge e-mail to requested recipient {}. Please, copy the ENTIRE subject and paste it below. The subject starts with the label ACME: '.format(achall.domain)
notify(text,pause=False)
input = zope.component.getUtility(interfaces.IDisplay).input

Expand Down

0 comments on commit eb67cd7

Please sign in to comment.