mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-17 23:56:56 +00:00
Launcher, app/base, sentry, update service
This commit is contained in:
@ -231,7 +231,8 @@ func (c *IMAPClient) Expunge() *IMAPResponse {
|
||||
return c.SendCommand("EXPUNGE")
|
||||
}
|
||||
|
||||
// IDLE
|
||||
// Extennsions
|
||||
// Extennsions: IDLE
|
||||
|
||||
func (c *IMAPClient) StartIDLE() *IMAPResponse {
|
||||
c.idling = true
|
||||
@ -242,3 +243,9 @@ func (c *IMAPClient) StopIDLE() {
|
||||
c.idling = false
|
||||
fmt.Fprintf(c.conn, "%s\r\n", "DONE")
|
||||
}
|
||||
|
||||
// Extennsions: ID
|
||||
|
||||
func (c *IMAPClient) ID(request string) *IMAPResponse {
|
||||
return c.SendCommand(fmt.Sprintf("ID (%v)", request))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user