Forked the emersion/go-imap v1 project.

This commit is contained in:
2025-05-01 11:58:18 +03:00
commit bcc3f95e8e
107 changed files with 16268 additions and 0 deletions

13
quota.go Normal file
View File

@@ -0,0 +1,13 @@
package imap
// QuotaResourceType is a QUOTA resource type.
//
// See RFC 9208 section 5.
type QuotaResourceType string
const (
QuotaResourceStorage QuotaResourceType = "STORAGE"
QuotaResourceMessage QuotaResourceType = "MESSAGE"
QuotaResourceMailbox QuotaResourceType = "MAILBOX"
QuotaResourceAnnotationStorage QuotaResourceType = "ANNOTATION-STORAGE"
)