diff --git a/README.md b/README.md index f9d8ca6..0712d82 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,8 @@ var options = new SmtpServerOptionsBuilder() .Endpoint(builder => builder .Port(9025, true) - .AllowUnsecureAuthentication(false) + .AllowUnsecureAuthentication(false) // this is to disallow sending PLAIN credentials without an SSL/TLS tunnel + .AuthenticationRequired(true) // if this isn't explicitely set to true, the UserAuthenticator provider has no effect .Certificate(CreateCertificate())) .Build();