[bug] System properties are only read if configuration file exists in class path
mriegler opened this issue · 3 comments
Actual behaviour
Configuration via system properties is ignored as long as there is no "simplejavamail.properties" file in the class path.
Expected behaviour
Configuration via system properties is possible, even without a properties file.
Why it happens
This is because the ConfigLoader loadProperties that gets called in the static init block does NOT call readProperties. readProperties is where the system properties are used if set.
The loadProperties variant for InputStream does call readProperties, but is itself only called if the loadProperties for String finds a file on the class path.
Ergo to enable system properties you need to add a file to the class path.
How to reproduce
- Use a basic builder, with no explicit optional settings, letting defaults happen
- set a system property (for example simplejavamail.defaults.verifyserveridentity) to any valid, non-default value (e.g. false)
- Check the setting in the Config of the Mailer the Builder built. In this example,
OperationConfig isVerifyingIdentityshould be false, but is true - add an empty "simplejavamail.properties" file to the classpath
- Check the setting again. This time, it will have the correct value
Thank you for your thorough report. I'm am currently out of the country for vacation and will look into this once I come back. Stay tuned!
I made a simple repro. Just run the test.sh (or read it)
simple-mail-repro.zip
Output is:
!!!!! Running without empty properties file !!!!
SLF4J(W): No SLF4J providers were found.
SLF4J(W): Defaulting to no-operation (NOP) logger implementation
SLF4J(W): See https://www.slf4j.org/codes.html#noProviders for further details.
Verifying server identity from operational config: true
Verifying server identity from system prop: false
!!!!! Running with empty properties file !!!!!
SLF4J(W): No SLF4J providers were found.
SLF4J(W): Defaulting to no-operation (NOP) logger implementation
SLF4J(W): See https://www.slf4j.org/codes.html#noProviders for further details.
Verifying server identity from operational config: false
Verifying server identity from system prop: false
Fix released in v8.12.0.