forked from Silverfish/proton-bridge
GODT-1846: remove restart cues, implement restart-less behaviour.
Other: fixed case issue in SSL member function names. Other: removed 'restart' mention in SMTP and IMAP SSL settings. GODT-1846: modified gRPC server to introduce ConnectionMode settings. GODT-1846: implemented connection mode handling in bridge-gui. GODT-1846: implemented error reporting in bridge-gui for connection mode. Other: gathered all IMAP/SMTP server settings. GODT-1846: wired IMAP/SMTP port change errors. Other: Renamed some error events and signals. Other: Fixed crash in IMAP restart when not started. Other: dismiss port error notifications before changing ports. Other: misc. fixes.
This commit is contained in:
committed by
James Houlahan
parent
46c0463e43
commit
1f0312573a
@ -145,9 +145,19 @@ func (s *Service) StartEventTest() error { //nolint:funlen
|
||||
NewDiskCachePathChangeFinishedEvent(),
|
||||
|
||||
// mail settings
|
||||
NewMailSettingsErrorEvent(MailSettingsErrorType_IMAP_PORT_ISSUE),
|
||||
NewMailSettingsUseSslForSmtpFinishedEvent(),
|
||||
NewMailSettingsChangePortFinishedEvent(),
|
||||
NewMailServerSettingsErrorEvent(MailServerSettingsErrorType_IMAP_PORT_STARTUP_ERROR),
|
||||
NewMailServerSettingsErrorEvent(MailServerSettingsErrorType_SMTP_PORT_STARTUP_ERROR),
|
||||
NewMailServerSettingsErrorEvent(MailServerSettingsErrorType_IMAP_PORT_CHANGE_ERROR),
|
||||
NewMailServerSettingsErrorEvent(MailServerSettingsErrorType_SMTP_PORT_CHANGE_ERROR),
|
||||
NewMailServerSettingsErrorEvent(MailServerSettingsErrorType_IMAP_CONNECTION_MODE_CHANGE_ERROR),
|
||||
NewMailServerSettingsErrorEvent(MailServerSettingsErrorType_SMTP_CONNECTION_MODE_CHANGE_ERROR),
|
||||
NewMailServerSettingsChangedEvent(&ImapSmtpSettings{
|
||||
ImapPort: 1143,
|
||||
SmtpPort: 1025,
|
||||
UseSSLForImap: false,
|
||||
UseSSLForSmtp: false,
|
||||
}),
|
||||
NewChangeMailServerSettingsFinishedEvent(),
|
||||
|
||||
// keychain
|
||||
NewKeychainChangeKeychainFinishedEvent(),
|
||||
|
||||
Reference in New Issue
Block a user