mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-19 08:37:06 +00:00
chore: fix for SMTP connection mode toggle in bridge-gui-tester.
This commit is contained in:
@ -623,7 +623,7 @@ Status GRPCService::MailServerSettings(ServerContext *, Empty const *, ImapSmtpS
|
|||||||
outSettings->set_imapport(tab.imapPort());
|
outSettings->set_imapport(tab.imapPort());
|
||||||
outSettings->set_smtpport(tab.smtpPort());
|
outSettings->set_smtpport(tab.smtpPort());
|
||||||
outSettings->set_usesslforimap(tab.useSSLForIMAP());
|
outSettings->set_usesslforimap(tab.useSSLForIMAP());
|
||||||
outSettings->set_usesslforimap(tab.useSSLForSMTP());
|
outSettings->set_usesslforsmtp(tab.useSSLForSMTP());
|
||||||
return Status::OK;
|
return Status::OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -217,7 +217,7 @@
|
|||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<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>
|
<item>
|
||||||
<widget class="QLabel" name="labelMAP">
|
<widget class="QLabel" name="labelMAP">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -259,16 +259,16 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="checkUseSSLForSMTP">
|
<widget class="QCheckBox" name="checkUseSSLForIMAP">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Use SSL For SMTP</string>
|
<string>Use SSL For IMAP</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="checkUseSSLForIMAP">
|
<widget class="QCheckBox" name="checkUseSSLForSMTP">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Use SSL For IMAP</string>
|
<string>Use SSL For SMTP</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
Reference in New Issue
Block a user