using System;
namespace Ant.Service.Utilities
{
[Flags()]
public enum Pop3State
{
///
/// Undefined.
///
Unknown = 0,
///
/// Connected to Pop3 server, but not authorized.
/// May issue any of the following commands QUIT, USER, PASS
///
Authorization = 1,
///
/// Authorized to Pop3 server, can issue any of the following commands;
/// STAT, LIST, RETR, DELE, RSET
///
Transaction = 2,
///
/// Quit command was sent to server indicating deleted
/// messages should be removed.
///
Update = 4
}
}