package imap import ( "time" ) // AppendOptions contains options for the APPEND command. type AppendOptions struct { Flags []Flag Time time.Time } // AppendData is the data returned by an APPEND command. type AppendData struct { UID, UIDValidity uint32 // requires UIDPLUS or IMAP4rev2 }