You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment APPEND only supports setting the body of the message. However, RFC3501 allows users to specify the flag set to be applied to a message, as well as the date the message was received. Quoting the specification:
6.3.11. APPEND Command
Arguments: mailbox name
OPTIONAL flag parenthesized list
OPTIONAL date/time string
message literal
We could change the append method to:
use chrono::DateTime;use chrono::offset::Utc;fnappend(&mutself,folder:&str,flags:Vec<String>,datetime:DateTime<Utc>,message:&[u8]){/* ... */}
The text was updated successfully, but these errors were encountered:
At the moment
APPEND
only supports setting the body of the message. However, RFC3501 allows users to specify the flag set to be applied to a message, as well as the date the message was received. Quoting the specification:We could change the
append
method to:The text was updated successfully, but these errors were encountered: