neu sortiert

This commit is contained in:
BlubbFish 2010-07-11 21:52:34 +00:00
parent 2ac0a71a44
commit efe0ca9dd3
163 changed files with 713 additions and 412 deletions

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.IMAP namespace LumiSoft.IMAP
{ {
/// <summary> /// <summary>
/// IMAP ACL(access control list) rights. /// IMAP ACL(access control list) rights.

View File

@ -1,4 +1,4 @@
namespace MailServer.IMAP namespace LumiSoft.IMAP
{ {
/// <summary> /// <summary>
/// IMAP flags store type. /// IMAP flags store type.

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace MailServer.IMAP namespace LumiSoft.IMAP
{ {
/// <summary> /// <summary>
/// IMAP sequence-set. RFC 3501. /// IMAP sequence-set. RFC 3501.

View File

@ -1,10 +1,10 @@
using System; using System;
using System.IO; using System.IO;
using System.Text; using System.Text;
using MailServer.IMAP.Server; using LumiSoft.IMAP.Server;
using MailServer.Misc; using LumiSoft.Misc;
namespace MailServer.IMAP namespace LumiSoft.IMAP
{ {
/// <summary> /// <summary>
/// Provides utility methods for IMAP. /// Provides utility methods for IMAP.
@ -225,7 +225,7 @@ namespace MailServer.IMAP
} }
else else
{ {
return MailServer.Misc.MIME.MIME_Utils.ParseRfc2822DateTime(date); return LumiSoft.Misc.MIME.MIME_Utils.ParseRfc2822DateTime(date);
} }
} }

View File

@ -1,8 +1,8 @@
using System; using System;
using MailServer.Misc; using LumiSoft.Misc;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data for the AuthUser event for IMAP_Server. /// Provides data for the AuthUser event for IMAP_Server.

View File

@ -3,10 +3,10 @@ using System.IO;
using System.Collections; using System.Collections;
using System.Text; using System.Text;
using MailServer.Misc.MIME; using LumiSoft.Misc.MIME;
using MailServer.Misc.Mail; using LumiSoft.Misc.Mail;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// FETCH command helper methods. /// FETCH command helper methods.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data for DeleteFolderACL event. /// Provides data for DeleteFolderACL event.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// IMAP folder. /// IMAP folder.

View File

@ -2,7 +2,7 @@
using System.Collections; using System.Collections;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// IMAP folders collection. /// IMAP folders collection.

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Collections; using System.Collections;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data for GetFolderACL event. /// Provides data for GetFolderACL event.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data for GetUserACL event. /// Provides data for GetUserACL event.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// IMAP message info. /// IMAP message info.

View File

@ -3,7 +3,7 @@ using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// IMAP messages info collection. /// IMAP messages info collection.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// IMAP message flags. /// IMAP message flags.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Specifies message itmes. /// Specifies message itmes.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data for SetFolderACL event. /// Provides data for SetFolderACL event.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Holds IMAP selected folder info. /// Holds IMAP selected folder info.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Represents the method that will handle the AuthUser event for SMTP_Server. /// Represents the method that will handle the AuthUser event for SMTP_Server.

View File

@ -4,9 +4,9 @@ using System.Linq;
using System.Text; using System.Text;
using System.Net; using System.Net;
using MailServer.Misc; using LumiSoft.Misc;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
public partial class IMAP_Server public partial class IMAP_Server
{ {

View File

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using MailServer.Misc; using LumiSoft.Misc;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
public partial class IMAP_Server public partial class IMAP_Server
{ {

View File

@ -3,10 +3,10 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using MailServer.Misc.Auth; using LumiSoft.Misc.Auth;
using MailServer.Misc.SocketServer; using LumiSoft.Misc.SocketServer;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
public partial class IMAP_Server public partial class IMAP_Server
{ {

View File

@ -1,10 +1,10 @@
using System; using System;
using System.Net; using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using MailServer.Misc; using LumiSoft.Misc;
using MailServer.Misc.SocketServer; using LumiSoft.Misc.SocketServer;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
public partial class IMAP_Server public partial class IMAP_Server
{ {

View File

@ -1,9 +1,9 @@
using MailServer.Misc.SocketServer; using LumiSoft.Misc.SocketServer;
using MailServer.Misc.Auth; using LumiSoft.Misc.Auth;
using MailServer.Misc; using LumiSoft.Misc;
using System.Net; using System.Net;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// IMAP server componet. /// IMAP server componet.

View File

@ -6,14 +6,14 @@ using System.Threading;
using System.Collections; using System.Collections;
using System.Text; using System.Text;
using MailServer.Misc.SocketServer; using LumiSoft.Misc.SocketServer;
using MailServer.Misc; using LumiSoft.Misc;
using MailServer.Misc.Auth; using LumiSoft.Misc.Auth;
using MailServer.Misc.Mail; using LumiSoft.Misc.Mail;
using MailServer.Misc.MIME; using LumiSoft.Misc.MIME;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// IMAP session. /// IMAP session.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data to event GetMessagesInfo. /// Provides data to event GetMessagesInfo.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data for GetUserQuota event. /// Provides data for GetUserQuota event.

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data to event GetMessageItems. /// Provides data to event GetMessageItems.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data for IMAP events. /// Provides data for IMAP events.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Provides data for message related events. /// Provides data for message related events.

View File

@ -1,10 +1,10 @@
using System; using System;
using System.Collections; using System.Collections;
using MailServer.Misc; using LumiSoft.Misc;
using MailServer.Misc.Mail; using LumiSoft.Misc.Mail;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// IMAP search command grouped(parenthesized) search-key collection. /// IMAP search command grouped(parenthesized) search-key collection.

View File

@ -1,10 +1,10 @@
using System; using System;
using MailServer.Misc; using LumiSoft.Misc;
using MailServer.Misc.Mail; using LumiSoft.Misc.Mail;
using MailServer.Misc.MIME; using LumiSoft.Misc.MIME;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// IMAP search key (RFC 3501 6.4.4 SEARCH Command). /// IMAP search key (RFC 3501 6.4.4 SEARCH Command).

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.IMAP.Server namespace LumiSoft.IMAP.Server
{ {
/// <summary> /// <summary>
/// Summary description for SharedRootFolders_EventArgs. /// Summary description for SharedRootFolders_EventArgs.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc namespace LumiSoft.Misc
{ {
/// <summary> /// <summary>
/// This is base class for asynchronous operation. /// This is base class for asynchronous operation.

View File

@ -2,7 +2,7 @@
using System.Text; using System.Text;
using System.Security.Cryptography; using System.Security.Cryptography;
namespace MailServer.Misc.Auth namespace LumiSoft.Misc.Auth
{ {
/// <summary> /// <summary>
/// Provides helper methods for authentications(APOP,CRAM-MD5,DIGEST-MD5). /// Provides helper methods for authentications(APOP,CRAM-MD5,DIGEST-MD5).

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.Auth namespace LumiSoft.Misc.Auth
{ {
/// <summary> /// <summary>
/// SASL authentications /// SASL authentications

View File

@ -1,4 +1,4 @@
namespace MailServer.Misc namespace LumiSoft.Misc
{ {
/// <summary> /// <summary>
/// Specifies BindInfo protocol. /// Specifies BindInfo protocol.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc namespace LumiSoft.Misc
{ {
/// <summary> /// <summary>
/// Circle collection. Elements will be circled clockwise. /// Circle collection. Elements will be circled clockwise.

View File

@ -5,9 +5,9 @@ using System.Net.Sockets;
using System.Collections; using System.Collections;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using MailServer.Misc.DNS; using LumiSoft.Misc.DNS;
namespace MailServer.Misc namespace LumiSoft.Misc
{ {
#region enum AuthType #region enum AuthType

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Net; using System.Net;
namespace MailServer.Misc namespace LumiSoft.Misc
{ {
/// <summary> /// <summary>
/// Provides data for the ValidateIPAddress event for servers. /// Provides data for the ValidateIPAddress event for servers.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// DNS client exception. /// DNS client exception.

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Net; using System.Net;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// A record class. /// A record class.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Text; using System.Text;
using System.Net; using System.Net;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// DNS AAAA resource record. /// DNS AAAA resource record.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// CNAME record class. /// CNAME record class.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// HINFO record. /// HINFO record.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// MX record class. /// MX record class.

View File

@ -2,7 +2,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// NAPRT(Naming Authority Pointer) resource record. Defined in RFC 3403. /// NAPRT(Naming Authority Pointer) resource record. Defined in RFC 3403.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// NS record class. /// NS record class.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// PTR record class. /// PTR record class.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// SOA record class. /// SOA record class.

View File

@ -2,7 +2,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// DNS SRV record. SRV record specifies the location of services. Defined in RFC 2782. /// DNS SRV record. SRV record specifies the location of services. Defined in RFC 2782.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// TXT record class. /// TXT record class.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// Base class for DNS records. /// Base class for DNS records.

View File

@ -4,7 +4,7 @@ using System.Collections;
using System.Runtime.Serialization; using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary; using System.Runtime.Serialization.Formatters.Binary;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
#region struct CacheEntry #region struct CacheEntry

View File

@ -2,7 +2,7 @@
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// This class represents dns server response. /// This class represents dns server response.

View File

@ -8,7 +8,7 @@ using System.Text;
using System.Net.NetworkInformation; using System.Net.NetworkInformation;
using System.Threading; using System.Threading;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// Dns client. /// Dns client.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// ///

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// Query type. /// Query type.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.DNS namespace LumiSoft.Misc.DNS
{ {
/// <summary> /// <summary>
/// Dns server reply codes. /// Dns server reply codes.

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
namespace MailServer.Misc namespace LumiSoft.Misc
{ {
/// <summary> /// <summary>
/// Provides data for the SysError event for servers. /// Provides data for the SysError event for servers.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc namespace LumiSoft.Misc
{ {
/// <summary> /// <summary>
/// This class universal event arguments for transporting single value. /// This class universal event arguments for transporting single value.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.IO namespace LumiSoft.Misc.IO
{ {
/// <summary> /// <summary>
/// This class implements base64 encoder/decoder. Defined in RFC 4648. /// This class implements base64 encoder/decoder. Defined in RFC 4648.

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.IO namespace LumiSoft.Misc.IO
{ {
/// <summary> /// <summary>
/// This class implements base64 encoder/decoder. Defined in RFC 4648. /// This class implements base64 encoder/decoder. Defined in RFC 4648.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.IO namespace LumiSoft.Misc.IO
{ {
/// <summary> /// <summary>
/// The exception that is thrown when maximum allowed data size has exceeded. /// The exception that is thrown when maximum allowed data size has exceeded.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.IO namespace LumiSoft.Misc.IO
{ {
/// <summary> /// <summary>
/// The exception that is thrown when incomplete data received. /// The exception that is thrown when incomplete data received.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.IO namespace LumiSoft.Misc.IO
{ {
/// <summary> /// <summary>
/// The exception that is thrown when maximum allowed line size has exceeded. /// The exception that is thrown when maximum allowed line size has exceeded.

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.IO namespace LumiSoft.Misc.IO
{ {
/// <summary> /// <summary>
/// Implements RFC 2045 6.7. Quoted-Printable stream. /// Implements RFC 2045 6.7. Quoted-Printable stream.

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.IO namespace LumiSoft.Misc.IO
{ {
/// <summary> /// <summary>
/// This class implements read,write or read-write access stream. /// This class implements read,write or read-write access stream.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace MailServer.Misc.IO namespace LumiSoft.Misc.IO
{ {
/// <summary> /// <summary>
/// Specifies action what is done if requested action exceeds maximum allowed size. /// Specifies action what is done if requested action exceeds maximum allowed size.

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
using System.Text; using System.Text;
using System.Threading; using System.Threading;
namespace MailServer.Misc.IO namespace LumiSoft.Misc.IO
{ {
/// <summary> /// <summary>
/// This class is wrapper to normal stream, provides most needed stream methods which are missing from normal stream. /// This class is wrapper to normal stream, provides most needed stream methods which are missing from normal stream.

View File

@ -4,7 +4,7 @@ using System.Text;
using System.Net; using System.Net;
using System.Security.Cryptography.X509Certificates; using System.Security.Cryptography.X509Certificates;
namespace MailServer.Misc namespace LumiSoft.Misc
{ {
/// <summary> /// <summary>
/// Holds IP bind info. /// Holds IP bind info.

View File

@ -2,7 +2,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class holds MIME content disposition types. Defined in RFC 2183. /// This class holds MIME content disposition types. Defined in RFC 2183.

View File

@ -2,7 +2,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This enum specifies MIME RFC 2047 'encoded-word' encoding method. /// This enum specifies MIME RFC 2047 'encoded-word' encoding method.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// Implements 'encoded-word' encoding. Defined in RFC 2047. /// Implements 'encoded-word' encoding. Defined in RFC 2047.

View File

@ -3,9 +3,9 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// Represents a MIME entity. Defined in RFC 2045 2.4. /// Represents a MIME entity. Defined in RFC 2045 2.4.

View File

@ -3,7 +3,7 @@ using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// Represents MIME child entity collection in multipart/xxx entity. /// Represents MIME child entity collection in multipart/xxx entity.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class holds well known Content-Type header field media types. For example: text/plain, application/octet-stream. /// This class holds well known Content-Type header field media types. For example: text/plain, application/octet-stream.

View File

@ -3,9 +3,9 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// Represents a MIME message. Defined in RFC 2045 2.3. /// Represents a MIME message. Defined in RFC 2045 2.3.

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// MIME lexical tokens parser. /// MIME lexical tokens parser.

View File

@ -2,7 +2,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class holds MIME content transfer encodings. Defined in RFC 2045 6. /// This class holds MIME content transfer encodings. Defined in RFC 2045 6.

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// Provides MIME related utility methods. /// Provides MIME related utility methods.

View File

@ -3,9 +3,9 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class is base class for MIME entity bodies. /// This class is base class for MIME entity bodies.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME application/xxx bodies. Defined in RFC 2046 4.2. /// This class represents MIME application/xxx bodies. Defined in RFC 2046 4.2.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME audio/xxx bodies. Defined in RFC 2046 4.3. /// This class represents MIME audio/xxx bodies. Defined in RFC 2046 4.3.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME image/xxx bodies. Defined in RFC 2046 4.2. /// This class represents MIME image/xxx bodies. Defined in RFC 2046 4.2.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME message/xxx bodies. Defined in RFC 2046 5.2. /// This class represents MIME message/xxx bodies. Defined in RFC 2046 5.2.

View File

@ -3,10 +3,10 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.Mail; using LumiSoft.Misc.Mail;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME <b>message/delivery-status</b> body. Defined in RFC 3464. /// This class represents MIME <b>message/delivery-status</b> body. Defined in RFC 3464.

View File

@ -3,10 +3,10 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.Mail; using LumiSoft.Misc.Mail;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME message/rfc822 body. Defined in RFC 2046 5.2.1. /// This class represents MIME message/rfc822 body. Defined in RFC 2046 5.2.1.

View File

@ -3,9 +3,9 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME application/xxx bodies. Defined in RFC 2046 5.1. /// This class represents MIME application/xxx bodies. Defined in RFC 2046 5.1.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME multipart/alternative body. Defined in RFC 2046 5.1.4. /// This class represents MIME multipart/alternative body. Defined in RFC 2046 5.1.4.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME multipart/digest body. Defined in RFC 2046 5.1.5. /// This class represents MIME multipart/digest body. Defined in RFC 2046 5.1.5.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME multipart/encrypted body. Defined in rfc 1847. /// This class represents MIME multipart/encrypted body. Defined in rfc 1847.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME multipart/from-data body. Defined in RFC 2046. /// This class represents MIME multipart/from-data body. Defined in RFC 2046.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME multipart/mixed body. Defined in RFC 2046 5.1.3. /// This class represents MIME multipart/mixed body. Defined in RFC 2046 5.1.3.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME message/parallel bodies. Defined in RFC 2046 5.1.6. /// This class represents MIME message/parallel bodies. Defined in RFC 2046 5.1.6.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME multipart/related body. Defined in RFC 2387. /// This class represents MIME multipart/related body. Defined in RFC 2387.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME multipart/report body. Defined in RFC 3462. /// This class represents MIME multipart/report body. Defined in RFC 3462.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME multipart/signed body. Defined in rfc 1847. /// This class represents MIME multipart/signed body. Defined in rfc 1847.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represent MIME entity body provider. /// This class represent MIME entity body provider.

View File

@ -3,9 +3,9 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class is base class for singlepart media bodies like: text,video,audio,image. /// This class is base class for singlepart media bodies like: text,video,audio,image.

View File

@ -3,9 +3,9 @@ using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using MailServer.Misc.IO; using LumiSoft.Misc.IO;
namespace MailServer.Misc.MIME namespace LumiSoft.Misc.MIME
{ {
/// <summary> /// <summary>
/// This class represents MIME text/xxx bodies. Defined in RFC 2045. /// 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