forked from smiley22/S22.Imap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MessageFlags.cs
34 lines (33 loc) · 895 Bytes
/
MessageFlags.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
namespace S22.Imap {
/// <summary>
/// Defines possible attributes for mail messages on an IMAP server.
/// </summary>
public enum MessageFlag {
/// <summary>
/// Indicates that the message has been read.
/// </summary>
Seen,
/// <summary>
/// Indicates that the message has been answered.
/// </summary>
Answered,
/// <summary>
/// Indicates that the message is "flagged" for urgent/special attention.
/// </summary>
Flagged,
/// <summary>
/// Indicates that the message has been marked as "deleted" and will be removed upon the next
/// call to the Expunge method.
/// </summary>
Deleted,
/// <summary>
/// Indicates that the message has not completed composition and is marked as a draft.
/// </summary>
Draft,
/// <summary>
/// Indicates that the message has recently arrived in the mailbox.
/// </summary>
Recent
}
}