forked from Silverfish/proton-bridge
GODT-1901: Allow to set IMAP SSL from UI
This commit is contained in:
committed by
James Houlahan
parent
209c315a76
commit
e10cd2a3ed
@ -80,6 +80,8 @@ service Bridge {
|
||||
rpc IsDoHEnabled(google.protobuf.Empty) returns (google.protobuf.BoolValue);
|
||||
rpc SetUseSslForSmtp(google.protobuf.BoolValue) returns (google.protobuf.Empty);
|
||||
rpc UseSslForSmtp(google.protobuf.Empty) returns (google.protobuf.BoolValue);
|
||||
rpc SetUseSslForImap(google.protobuf.BoolValue) returns (google.protobuf.Empty);
|
||||
rpc UseSslForImap(google.protobuf.Empty) returns (google.protobuf.BoolValue);
|
||||
rpc Hostname(google.protobuf.Empty) returns (google.protobuf.StringValue);
|
||||
rpc ImapPort(google.protobuf.Empty) returns (google.protobuf.Int32Value);
|
||||
rpc SmtpPort(google.protobuf.Empty) returns (google.protobuf.Int32Value);
|
||||
@ -377,6 +379,7 @@ message MailSettingsEvent {
|
||||
MailSettingsErrorEvent error = 1;
|
||||
UseSslForSmtpFinishedEvent useSslForSmtpFinished = 2;
|
||||
ChangePortsFinishedEvent changePortsFinished = 3;
|
||||
UseSslForImapFinishedEvent useSslForImapFinished = 4;
|
||||
}
|
||||
}
|
||||
|
||||
@ -391,6 +394,8 @@ message MailSettingsErrorEvent {
|
||||
|
||||
message UseSslForSmtpFinishedEvent {}
|
||||
|
||||
message UseSslForImapFinishedEvent {}
|
||||
|
||||
message ChangePortsFinishedEvent {}
|
||||
|
||||
//**********************************************************
|
||||
|
||||
Reference in New Issue
Block a user