-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(mailer): document ssl enablement in native image #3224
Conversation
@@ -75,7 +75,7 @@ The following table lists the properties that can be configured: | |||
| port | Integer | the SMTP server port | `25` | |||
| username | String | the username | | |||
| password | String | the password | | |||
| ssl | Boolean | Enables or disables SSL | `false` | |||
| ssl | Boolean | Enables or disables SSL. When enabled, you must add `quarkus.ssl.native=true` config option in `application.properties` when building a native image. | `false` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would just say: "If enabled, you must also set quarkus.ssl.native
to true when building a native image.".
You are already in the config context so I don't think we need more precision. I think I would also add a link to the SSL + native image guide (More information
).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A link is definitely needed. I’ll add it and push. Thanks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe you can just add the link on set quarkus.ssl.native to true
. It will be shorter.
@@ -75,7 +75,7 @@ The following table lists the properties that can be configured: | |||
| port | Integer | the SMTP server port | `25` | |||
| username | String | the username | | |||
| password | String | the password | | |||
| ssl | Boolean | Enables or disables SSL | `false` | |||
| ssl | Boolean | Enables or disables SSL. If enabled, you must also link:native-and-ssl-guide.html[set quarkus.ssl.native to true] when building a native image. | `false` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's minor but having backticks around quarkus.ssl.native
would be nice
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch. Should be good. :-)
Fixes #3221