Skip to content

Commit

Permalink
fix handling of greenmail.sieve.ignore.detail prop
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomi-lr committed Nov 26, 2024
1 parent cf514ee commit 2ba8856
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public GreenMailConfiguration build(Properties properties) {
}

String sieveIgnoreDetail = properties.getProperty(GREENMAIL_SIEVE_IGNORE_DETAIL, "false");
if (null != sieveIgnoreDetail) {
if (Boolean.TRUE.toString().equalsIgnoreCase(sieveIgnoreDetail)) {
configuration.withSieveIgnoreDetail();
}

Expand Down

0 comments on commit 2ba8856

Please sign in to comment.