Lin Gao

Results 30 comments of Lin Gao

@smwg @hectorqin a simple reproducer will help us understanding your problem. The image in above comment is not clear, like why the `localFile` does not start with `school` since you...

it looks like the issue https://github.com/eclipse-vertx/vert.x/issues/1623 which was fixed in https://github.com/eclipse-vertx/vert.x/pull/1624, but got cleaned out in the [code clean](https://github.com/eclipse-vertx/vert.x/commit/a35fd56cd8c60b2581894fba57390d09496d03a4#diff-d3da8bc47a0d926267709f575833a98bf484bba956b5139ad04cd93dcb72b212L257-L270), @vietj

@smwg not yet, please take a look at the PR: https://github.com/eclipse-vertx/vert.x/pull/4454, maybe you can try with that [branch](https://github.com/gaol/vert.x/tree/nested_resolver)?

I consent https://accounts.eclipse.org/users/lgaosmt

It relates to https://github.com/vert-x3/vertx-mail-client/issues/185

@cescoffier these cases are inevitable IMO, when the connections are idle for a while, the SMTP server will close the connection, which will lead to this logging. It does not...

Should the `MailVerticle` be un-deployed before deploying them again on config changes? On the mail client closing, the internal pool with the shared clients gets closed when there is no...

Once one SMTP connection is retrieved from the connection pool, it is supposed explicitly to be used for sending one email message. The connection will be either closed or return...

According to https://vertx.io/docs/vertx-config/java/#_spring_config_server_store, you need to configure SSL/TLS set up in `httpClientConfiguration` of your configuration. And I don't see any `trustOptions` set up in your code? do you have the...