mirror of
https://github.com/emersion/go-imap
synced 2026-07-01 13:31:07 +00:00
21 lines
366 B
Go
21 lines
366 B
Go
package imap
|
|
|
|
// StoreOptions contains options for the STORE command.
|
|
type StoreOptions struct{}
|
|
|
|
// StoreFlagsOp is a flag operation: set, add or delete.
|
|
type StoreFlagsOp int
|
|
|
|
const (
|
|
StoreFlagsSet StoreFlagsOp = iota
|
|
StoreFlagsAdd
|
|
StoreFlagsDel
|
|
)
|
|
|
|
// StoreFlags alters message flags.
|
|
type StoreFlags struct {
|
|
Op StoreFlagsOp
|
|
Silent bool
|
|
Flags []Flag
|
|
}
|