From 630871214f3024f51a3cc60356b45a3d4629ea1e Mon Sep 17 00:00:00 2001 From: Brian Kendall Date: Mon, 18 Jul 2016 17:23:47 -0400 Subject: [PATCH] Hiding SSL / SMTP option when building without SSL support The SMTP server always uses unencrypted connections in this case so showing the check box is misleading --- src/gui/optionsdlg.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/optionsdlg.cpp b/src/gui/optionsdlg.cpp index 3777ef95e..6d434fb38 100644 --- a/src/gui/optionsdlg.cpp +++ b/src/gui/optionsdlg.cpp @@ -149,6 +149,7 @@ OptionsDialog::OptionsDialog(QWidget *parent) #if defined(QT_NO_OPENSSL) m_ui->checkWebUiHttps->setVisible(false); + m_ui->checkSmtpSSL->setVisible(false); #endif #ifndef Q_OS_WIN