forked from smiley22/S22.Imap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MessageFlags.cs
36 lines (35 loc) · 928 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
35
36
using System;
namespace S22.Imap {
/// <summary>
/// Flag message attributes that can be associated with a mail message 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 this mailbox.
/// </summary>
Recent
}
}