Launcher, app/base, sentry, update service

This commit is contained in:
James Houlahan
2020-11-23 11:56:57 +01:00
parent 6fffb460b8
commit dc3f61acee
164 changed files with 5368 additions and 4039 deletions

View File

@ -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))
}