112 lines
3.0 KiB
C#
112 lines
3.0 KiB
C#
using System;
|
|
|
|
namespace MailServer.IMAP.Server
|
|
{
|
|
/// <summary>
|
|
/// Provides data for the AuthUser event for IMAP_Server.
|
|
/// </summary>
|
|
public class AuthUser_EventArgs
|
|
{
|
|
private IMAP_Session m_pSession = null;
|
|
private string m_UserName = "";
|
|
private string m_PasswData = "";
|
|
private string m_Data = "";
|
|
private AuthType m_AuthType;
|
|
private bool m_Validated = false;
|
|
private string m_ReturnData = "";
|
|
private string m_ErrorText = null;
|
|
|
|
/// <summary>
|
|
/// Default constructor.
|
|
/// </summary>
|
|
/// <param name="session">Reference to IMAP session.</param>
|
|
/// <param name="userName">Username.</param>
|
|
/// <param name="passwData">Password data.</param>
|
|
/// <param name="data">Authentication specific data(as tag).</param>
|
|
/// <param name="authType">Authentication type.</param>
|
|
public AuthUser_EventArgs(IMAP_Session session, string userName, string passwData, string data, AuthType authType)
|
|
{
|
|
m_pSession = session;
|
|
m_UserName = userName;
|
|
m_PasswData = passwData;
|
|
m_Data = data;
|
|
m_AuthType = authType;
|
|
}
|
|
|
|
#region Properties Implementation
|
|
|
|
/// <summary>
|
|
/// Gets reference to smtp session.
|
|
/// </summary>
|
|
public IMAP_Session Session
|
|
{
|
|
get { return m_pSession; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// User name.
|
|
/// </summary>
|
|
public string UserName
|
|
{
|
|
get { return m_UserName; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Password data. eg. for AUTH=PLAIN it's password and for AUTH=APOP it's md5HexHash.
|
|
/// </summary>
|
|
public string PasswData
|
|
{
|
|
get { return m_PasswData; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Authentication specific data(as tag).
|
|
/// </summary>
|
|
public string AuthData
|
|
{
|
|
get { return m_Data; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Authentication type.
|
|
/// </summary>
|
|
public AuthType AuthType
|
|
{
|
|
get { return m_AuthType; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets if user is valid.
|
|
/// </summary>
|
|
public bool Validated
|
|
{
|
|
get { return m_Validated; }
|
|
|
|
set { m_Validated = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets authentication data what must be returned for connected client.
|
|
/// </summary>
|
|
public string ReturnData
|
|
{
|
|
get { return m_ReturnData; }
|
|
|
|
set { m_ReturnData = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets error text returned to connected client.
|
|
/// </summary>
|
|
public string ErrorText
|
|
{
|
|
get { return m_ErrorText; }
|
|
|
|
set { m_ErrorText = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|