neu sortiert
This commit is contained in:
parent
2ac0a71a44
commit
efe0ca9dd3
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP
|
||||
namespace LumiSoft.IMAP
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP ACL(access control list) rights.
|
@ -1,4 +1,4 @@
|
||||
namespace MailServer.IMAP
|
||||
namespace LumiSoft.IMAP
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP flags store type.
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MailServer.IMAP
|
||||
namespace LumiSoft.IMAP
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP sequence-set. RFC 3501.
|
@ -1,10 +1,10 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using MailServer.IMAP.Server;
|
||||
using MailServer.Misc;
|
||||
using LumiSoft.IMAP.Server;
|
||||
using LumiSoft.Misc;
|
||||
|
||||
namespace MailServer.IMAP
|
||||
namespace LumiSoft.IMAP
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides utility methods for IMAP.
|
||||
@ -225,7 +225,7 @@ namespace MailServer.IMAP
|
||||
}
|
||||
else
|
||||
{
|
||||
return MailServer.Misc.MIME.MIME_Utils.ParseRfc2822DateTime(date);
|
||||
return LumiSoft.Misc.MIME.MIME_Utils.ParseRfc2822DateTime(date);
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
using System;
|
||||
|
||||
using MailServer.Misc;
|
||||
using LumiSoft.Misc;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for the AuthUser event for IMAP_Server.
|
@ -3,10 +3,10 @@ using System.IO;
|
||||
using System.Collections;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.MIME;
|
||||
using MailServer.Misc.Mail;
|
||||
using LumiSoft.Misc.MIME;
|
||||
using LumiSoft.Misc.Mail;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// FETCH command helper methods.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for DeleteFolderACL event.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP folder.
|
@ -2,7 +2,7 @@
|
||||
using System.Collections;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP folders collection.
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for GetFolderACL event.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for GetUserACL event.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP message info.
|
@ -3,7 +3,7 @@ using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP messages info collection.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP message flags.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Specifies message itmes.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for SetFolderACL event.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Holds IMAP selected folder info.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents the method that will handle the AuthUser event for SMTP_Server.
|
@ -4,9 +4,9 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Net;
|
||||
|
||||
using MailServer.Misc;
|
||||
using LumiSoft.Misc;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
public partial class IMAP_Server
|
||||
{
|
@ -3,9 +3,9 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc;
|
||||
using LumiSoft.Misc;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
public partial class IMAP_Server
|
||||
{
|
@ -3,10 +3,10 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.Auth;
|
||||
using MailServer.Misc.SocketServer;
|
||||
using LumiSoft.Misc.Auth;
|
||||
using LumiSoft.Misc.SocketServer;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
public partial class IMAP_Server
|
||||
{
|
@ -1,10 +1,10 @@
|
||||
using System;
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
using MailServer.Misc;
|
||||
using MailServer.Misc.SocketServer;
|
||||
using LumiSoft.Misc;
|
||||
using LumiSoft.Misc.SocketServer;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
public partial class IMAP_Server
|
||||
{
|
@ -1,9 +1,9 @@
|
||||
using MailServer.Misc.SocketServer;
|
||||
using MailServer.Misc.Auth;
|
||||
using MailServer.Misc;
|
||||
using LumiSoft.Misc.SocketServer;
|
||||
using LumiSoft.Misc.Auth;
|
||||
using LumiSoft.Misc;
|
||||
using System.Net;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP server componet.
|
@ -6,14 +6,14 @@ using System.Threading;
|
||||
using System.Collections;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.SocketServer;
|
||||
using MailServer.Misc;
|
||||
using MailServer.Misc.Auth;
|
||||
using MailServer.Misc.Mail;
|
||||
using MailServer.Misc.MIME;
|
||||
using LumiSoft.Misc.SocketServer;
|
||||
using LumiSoft.Misc;
|
||||
using LumiSoft.Misc.Auth;
|
||||
using LumiSoft.Misc.Mail;
|
||||
using LumiSoft.Misc.MIME;
|
||||
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP session.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data to event GetMessagesInfo.
|
@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for GetUserQuota event.
|
@ -3,7 +3,7 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data to event GetMessageItems.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for IMAP events.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for message related events.
|
@ -1,10 +1,10 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using MailServer.Misc;
|
||||
using MailServer.Misc.Mail;
|
||||
using LumiSoft.Misc;
|
||||
using LumiSoft.Misc.Mail;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP search command grouped(parenthesized) search-key collection.
|
@ -1,10 +1,10 @@
|
||||
using System;
|
||||
|
||||
using MailServer.Misc;
|
||||
using MailServer.Misc.Mail;
|
||||
using MailServer.Misc.MIME;
|
||||
using LumiSoft.Misc;
|
||||
using LumiSoft.Misc.Mail;
|
||||
using LumiSoft.Misc.MIME;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IMAP search key (RFC 3501 6.4.4 SEARCH Command).
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.IMAP.Server
|
||||
namespace LumiSoft.IMAP.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for SharedRootFolders_EventArgs.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc
|
||||
namespace LumiSoft.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// This is base class for asynchronous operation.
|
@ -2,7 +2,7 @@
|
||||
using System.Text;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
namespace MailServer.Misc.Auth
|
||||
namespace LumiSoft.Misc.Auth
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides helper methods for authentications(APOP,CRAM-MD5,DIGEST-MD5).
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.Auth
|
||||
namespace LumiSoft.Misc.Auth
|
||||
{
|
||||
/// <summary>
|
||||
/// SASL authentications
|
@ -1,4 +1,4 @@
|
||||
namespace MailServer.Misc
|
||||
namespace LumiSoft.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// Specifies BindInfo protocol.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc
|
||||
namespace LumiSoft.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// Circle collection. Elements will be circled clockwise.
|
@ -5,9 +5,9 @@ using System.Net.Sockets;
|
||||
using System.Collections;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using MailServer.Misc.DNS;
|
||||
using LumiSoft.Misc.DNS;
|
||||
|
||||
namespace MailServer.Misc
|
||||
namespace LumiSoft.Misc
|
||||
{
|
||||
#region enum AuthType
|
||||
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Net;
|
||||
|
||||
namespace MailServer.Misc
|
||||
namespace LumiSoft.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for the ValidateIPAddress event for servers.
|
@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// DNS client exception.
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Net;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// A record class.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Net;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// DNS AAAA resource record.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// CNAME record class.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// HINFO record.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// MX record class.
|
@ -2,7 +2,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// NAPRT(Naming Authority Pointer) resource record. Defined in RFC 3403.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// NS record class.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// PTR record class.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// SOA record class.
|
@ -2,7 +2,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// DNS SRV record. SRV record specifies the location of services. Defined in RFC 2782.
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// TXT record class.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// Base class for DNS records.
|
@ -4,7 +4,7 @@ using System.Collections;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Runtime.Serialization.Formatters.Binary;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
#region struct CacheEntry
|
||||
|
@ -2,7 +2,7 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents dns server response.
|
@ -8,7 +8,7 @@ using System.Text;
|
||||
using System.Net.NetworkInformation;
|
||||
using System.Threading;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// Dns client.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
///
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// Query type.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.DNS
|
||||
namespace LumiSoft.Misc.DNS
|
||||
{
|
||||
/// <summary>
|
||||
/// Dns server reply codes.
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace MailServer.Misc
|
||||
namespace LumiSoft.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides data for the SysError event for servers.
|
@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc
|
||||
namespace LumiSoft.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// This class universal event arguments for transporting single value.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.IO
|
||||
namespace LumiSoft.Misc.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// This class implements base64 encoder/decoder. Defined in RFC 4648.
|
@ -3,7 +3,7 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.IO
|
||||
namespace LumiSoft.Misc.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// This class implements base64 encoder/decoder. Defined in RFC 4648.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.IO
|
||||
namespace LumiSoft.Misc.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// The exception that is thrown when maximum allowed data size has exceeded.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.IO
|
||||
namespace LumiSoft.Misc.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// The exception that is thrown when incomplete data received.
|
@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.IO
|
||||
namespace LumiSoft.Misc.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// The exception that is thrown when maximum allowed line size has exceeded.
|
@ -3,7 +3,7 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.IO
|
||||
namespace LumiSoft.Misc.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// Implements RFC 2045 6.7. Quoted-Printable stream.
|
@ -3,7 +3,7 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.IO
|
||||
namespace LumiSoft.Misc.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// This class implements read,write or read-write access stream.
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.IO
|
||||
namespace LumiSoft.Misc.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// Specifies action what is done if requested action exceeds maximum allowed size.
|
@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
|
||||
namespace MailServer.Misc.IO
|
||||
namespace LumiSoft.Misc.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// This class is wrapper to normal stream, provides most needed stream methods which are missing from normal stream.
|
@ -4,7 +4,7 @@ using System.Text;
|
||||
using System.Net;
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
|
||||
namespace MailServer.Misc
|
||||
namespace LumiSoft.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// Holds IP bind info.
|
@ -2,7 +2,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class holds MIME content disposition types. Defined in RFC 2183.
|
@ -2,7 +2,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This enum specifies MIME RFC 2047 'encoded-word' encoding method.
|
@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// Implements 'encoded-word' encoding. Defined in RFC 2047.
|
@ -3,9 +3,9 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a MIME entity. Defined in RFC 2045 2.4.
|
@ -3,7 +3,7 @@ using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents MIME child entity collection in multipart/xxx entity.
|
@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class holds well known Content-Type header field media types. For example: text/plain, application/octet-stream.
|
@ -3,9 +3,9 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a MIME message. Defined in RFC 2045 2.3.
|
@ -3,7 +3,7 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// MIME lexical tokens parser.
|
@ -2,7 +2,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class holds MIME content transfer encodings. Defined in RFC 2045 6.
|
@ -3,7 +3,7 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides MIME related utility methods.
|
@ -3,9 +3,9 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class is base class for MIME entity bodies.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME application/xxx bodies. Defined in RFC 2046 4.2.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME audio/xxx bodies. Defined in RFC 2046 4.3.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME image/xxx bodies. Defined in RFC 2046 4.2.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME message/xxx bodies. Defined in RFC 2046 5.2.
|
@ -3,10 +3,10 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.Mail;
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.Mail;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME <b>message/delivery-status</b> body. Defined in RFC 3464.
|
@ -3,10 +3,10 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.Mail;
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.Mail;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME message/rfc822 body. Defined in RFC 2046 5.2.1.
|
@ -3,9 +3,9 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME application/xxx bodies. Defined in RFC 2046 5.1.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME multipart/alternative body. Defined in RFC 2046 5.1.4.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME multipart/digest body. Defined in RFC 2046 5.1.5.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME multipart/encrypted body. Defined in rfc 1847.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME multipart/from-data body. Defined in RFC 2046.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME multipart/mixed body. Defined in RFC 2046 5.1.3.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME message/parallel bodies. Defined in RFC 2046 5.1.6.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME multipart/related body. Defined in RFC 2387.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME multipart/report body. Defined in RFC 3462.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME multipart/signed body. Defined in rfc 1847.
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represent MIME entity body provider.
|
@ -3,9 +3,9 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class is base class for singlepart media bodies like: text,video,audio,image.
|
@ -3,9 +3,9 @@ using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using MailServer.Misc.IO;
|
||||
using LumiSoft.Misc.IO;
|
||||
|
||||
namespace MailServer.Misc.MIME
|
||||
namespace LumiSoft.Misc.MIME
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents MIME text/xxx bodies. Defined in RFC 2045.
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user