chore: fix for SMTP connection mode toggle in bridge-gui-tester.

This commit is contained in:
Xavier Michelon 2024-01-04 09:27:27 +01:00
parent fb32d652bc
commit 31670ad9eb
2 changed files with 6 additions and 6 deletions

View File

@ -623,7 +623,7 @@ Status GRPCService::MailServerSettings(ServerContext *, Empty const *, ImapSmtpS
outSettings->set_imapport(tab.imapPort());
outSettings->set_smtpport(tab.smtpPort());
outSettings->set_usesslforimap(tab.useSSLForIMAP());
outSettings->set_usesslforimap(tab.useSSLForSMTP());
outSettings->set_usesslforsmtp(tab.useSSLForSMTP());
return Status::OK;
}

View File

@ -217,7 +217,7 @@
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_7" stretch="0,0,0,0,1,0">
<layout class="QHBoxLayout" name="horizontalLayout_7" stretch="0,0,0,0,0,1">
<item>
<widget class="QLabel" name="labelMAP">
<property name="text">
@ -259,16 +259,16 @@
</widget>
</item>
<item>
<widget class="QCheckBox" name="checkUseSSLForSMTP">
<widget class="QCheckBox" name="checkUseSSLForIMAP">
<property name="text">
<string>Use SSL For SMTP</string>
<string>Use SSL For IMAP</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="checkUseSSLForIMAP">
<widget class="QCheckBox" name="checkUseSSLForSMTP">
<property name="text">
<string>Use SSL For IMAP</string>
<string>Use SSL For SMTP</string>
</property>
</widget>
</item>