Skip to content

Commit

Permalink
Fix protocol selection for SSL in IMAP/POP3IMAPHandler (openhab#7437)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan N. Klug <jan.n.klug@rub.de>
Signed-off-by: Daan Meijer <daan@studioseptember.nl>
  • Loading branch information
J-N-K authored and DaanMeijer committed Sep 1, 2020
1 parent 3441b75 commit a91d81b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void initialize() {
protocol = baseProtocol;

if (config.security == ServerSecurity.SSL) {
protocol.concat("s");
protocol = protocol.concat("s");
}

if (config.port == 0) {
Expand Down

0 comments on commit a91d81b

Please sign in to comment.