Skip to content

Commit dad3315

Browse files
jshabradfitz
authored andcommitted
acme/autocert: include email in example
At Let's Encrypt, we've found that most autocert users do not provide an email address, which makes it hard to get in touch when things go wrong with their client. Demonstrating how to provide an email will probably encourage more people to provide one. Change-Id: I0aa1ecea7cfbe55ae155804194fb57a8e695c658 GitHub-Last-Rev: 902b5fe GitHub-Pull-Request: #186 Reviewed-on: https://go-review.googlesource.com/c/crypto/+/323313 Reviewed-by: Roland Shoemaker <roland@golang.org> Run-TryBot: Roland Shoemaker <roland@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Katie Hockman <katie@golang.org> Trust: Katie Hockman <katie@golang.org>
1 parent 2f5cac0 commit dad3315

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

acme/autocert/example_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ func ExampleManager() {
2424
m := &autocert.Manager{
2525
Cache: autocert.DirCache("secret-dir"),
2626
Prompt: autocert.AcceptTOS,
27+
Email: "example@example.org",
2728
HostPolicy: autocert.HostWhitelist("example.org", "www.example.org"),
2829
}
2930
s := &http.Server{

0 commit comments

Comments
 (0)