Fix nullptr exception

Signed-off-by: Bernardus Jansen <bernardus@bajansen.nl>
This commit is contained in:
Bernardus Jansen
2016-05-21 18:57:47 +02:00
parent 8f1f1a133b
commit 0cfd6e8318
@@ -182,7 +182,7 @@ public class MultiController extends MultiActionController {
Transport trans = session.getTransport(prot);
try {
if (props.get("mail." + prot + ".auth").equals("true")) {
if (props.get("mail." + prot + ".auth") != null && props.get("mail." + prot + ".auth").equals("true")) {
trans.connect(settingsService.getSmtpServer(), settingsService.getSmtpUser(), settingsService.getSmtpPassword());
} else {
trans.connect();