The following line in .davmail.properties causes problems:
davmail.trayBackgroundColor=#c49fe2
Whenever Settings.save() is invoked, the value gets duplicated (e.g., davmail.trayBackgroundColor=#c49fe2#c49fe2). This appears to be caused by Settings.convertLine(), which considers hash signs in property values to introduce a comment. However, according to https://docs.oracle.com/cd/E23095_01/Platform.93/ATGProgGuide/html/s0204propertiesfileformat01.html, comments are only introduced by a hash sign in the beginning of a line.
The following line in .davmail.properties causes problems:
Whenever
Settings.save()
is invoked, the value gets duplicated (e.g.,davmail.trayBackgroundColor=#c49fe2#c49fe2
). This appears to be caused bySettings.convertLine()
, which considers hash signs in property values to introduce a comment. However, according to https://docs.oracle.com/cd/E23095_01/Platform.93/ATGProgGuide/html/s0204propertiesfileformat01.html, comments are only introduced by a hash sign in the beginning of a line.