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.Text;
namespace MailServer.IMAP
namespace LumiSoft.IMAP
{
/// <summary>
/// IMAP ACL(access control list) rights.

View File

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

View File

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

View File

@ -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);
}
}

View File

@ -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.

View File

@ -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.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

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

View File

@ -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.

View File

@ -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.

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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).

View File

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

View File

@ -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.

View File

@ -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).

View File

@ -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

View File

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

View File

@ -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.

View File

@ -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

View File

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

View File

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

View File

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

View File

@ -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.

View File

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

View File

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

View File

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

View File

@ -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.

View File

@ -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.

View File

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

View File

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

View File

@ -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.

View File

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

View File

@ -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.

View File

@ -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

View File

@ -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.

View File

@ -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.

View File

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

View File

@ -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.

View File

@ -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.

View File

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

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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