├── .gitignore ├── Installer ├── Bitmaps │ └── bannrbmp.bmp ├── Installer.wixproj └── Product.wxs ├── LICENSE ├── LICENSE.rtf ├── README.md ├── Rnwood.AutoUpdate ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Release.cs ├── Releases.Designer.cs ├── Releases.xsd ├── Rnwood.AutoUpdate.csproj ├── UpdateAvailableForm.Designer.cs ├── UpdateAvailableForm.cs ├── UpdateAvailableForm.resx └── UpdateChecker.cs ├── Rnwood.Smtp4dev ├── AppContext.cs ├── MIMEDatabase.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MessageInspector │ ├── HeaderViewModel.cs │ ├── InspectorWindow.xaml │ ├── InspectorWindow.xaml.cs │ ├── MessageViewModel.cs │ └── PartViewModel.cs ├── MessageViewModel.cs ├── OptionsForm.Designer.cs ├── OptionsForm.cs ├── OptionsForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── Rnwood.SmtpServer.Session.datasource │ │ ├── SMTPSession.datasource │ │ └── anmar.SharpMimeTools.SharpMimeMessage.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RegistrySettings.cs ├── Resources │ ├── Icon1.ico │ ├── Icon2.ico │ └── localhost.pfx ├── Rnwood.Smtp4dev.csproj ├── ServerBehaviour.cs ├── ServerController.cs ├── SessionViewModel.cs ├── SingleInstanceManager.cs ├── app.config └── packages.config ├── Rnwood.SmtpServer.Tests ├── ClientTests.cs ├── Mocks.cs ├── Properties │ └── AssemblyInfo.cs ├── Rnwood.SmtpServer.Tests.csproj ├── ServerTests.cs ├── SmtpCommandTests.cs └── Verbs │ ├── DataVerbTests.cs │ ├── HeloVerbTests.cs │ ├── NoopVerbTests.cs │ └── RcptToVerbTests.cs ├── Rnwood.SmtpServer ├── ASCIISevenBitTruncatingEncoding.cs ├── Connection.cs ├── DefaultServer.cs ├── DefaultServerBehaviour.cs ├── Examples │ ├── SimpleServer │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SimpleServer.csproj │ └── WindowsService │ │ ├── Program.cs │ │ ├── ProjectInstaller.Designer.cs │ │ ├── ProjectInstaller.cs │ │ ├── ProjectInstaller.resx │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SmtpService.Designer.cs │ │ ├── SmtpService.cs │ │ └── WindowsService.csproj ├── Extensions │ ├── Auth │ │ ├── AnonymousAuthenticationRequest.cs │ │ ├── AnonymousMechanism.cs │ │ ├── AuthExtension.cs │ │ ├── AuthMechanismMap.cs │ │ ├── AuthMechanismProcessorStatus.cs │ │ ├── AuthenticationRequest.cs │ │ ├── AuthenticationResult.cs │ │ ├── CramMd5AuthenticationRequest.cs │ │ ├── CramMd5Mechanism.cs │ │ ├── IAuthMechanism.cs │ │ ├── IAuthMechanismProcessor.cs │ │ ├── LoginMechanism.cs │ │ ├── PlainMechanism.cs │ │ └── UsernameAndPasswordAuthenticationRequest.cs │ ├── EightBitMimeExtension.cs │ ├── Extension.cs │ ├── SizeExtension.cs │ └── StartTlsExtension.cs ├── ICompletedSession.cs ├── IConnection.cs ├── IMessage.cs ├── IParameterProcessor.cs ├── IServer.cs ├── IServerBehaviour.cs ├── Message.cs ├── ParameterParser.cs ├── ParameterProcessorMap.cs ├── Properties │ └── AssemblyInfo.cs ├── Rnwood.SmtpServer.csproj ├── Server.cs ├── Session.cs ├── SmtpCommand.cs ├── SmtpResponse.cs ├── SmtpServerException.cs └── Verbs │ ├── DataVerb.cs │ ├── EhloVerb.cs │ ├── HeloVerb.cs │ ├── IVerb.cs │ ├── MailFromVerb.cs │ ├── MailVerb.cs │ ├── NoopVerb.cs │ ├── QuitVerb.cs │ ├── RcptToVerb.cs │ ├── RcptVerb.cs │ ├── RsetVerb.cs │ └── VerbMap.cs ├── SolutionInfo.cs ├── lib ├── MSBuildCommunityTasks │ ├── ICSharpCode.SharpZipLib.dll │ ├── MSBuild.Community.Tasks.Targets │ ├── MSBuild.Community.Tasks.chm │ ├── MSBuild.Community.Tasks.dll │ ├── MSBuild.Community.Tasks.xml │ └── Sample.proj ├── Moq │ ├── Moq.chm │ ├── Moq.dll │ └── Moq.xml ├── log4net.dll └── wpftoolkit │ ├── System.Windows.Controls.DataVisualization.Toolkit.Design.dll │ ├── System.Windows.Controls.DataVisualization.Toolkit.Expression.Design.dll │ ├── System.Windows.Controls.DataVisualization.Toolkit.VisualStudio.Design.dll │ ├── System.Windows.Controls.DataVisualization.Toolkit.dll │ ├── WPFToolkit.Design.dll │ ├── WPFToolkit.VisualStudio.Design.dll │ └── WPFToolkit.dll ├── packages └── repositories.config ├── publish.proj ├── releases.xml └── smtp4dev.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/.gitignore -------------------------------------------------------------------------------- /Installer/Bitmaps/bannrbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Installer/Bitmaps/bannrbmp.bmp -------------------------------------------------------------------------------- /Installer/Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Installer/Installer.wixproj -------------------------------------------------------------------------------- /Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Installer/Product.wxs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/LICENSE.rtf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/README.md -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/Properties/Resources.resx -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/Release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/Release.cs -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/Releases.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/Releases.Designer.cs -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/Releases.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/Releases.xsd -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/Rnwood.AutoUpdate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/Rnwood.AutoUpdate.csproj -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/UpdateAvailableForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/UpdateAvailableForm.Designer.cs -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/UpdateAvailableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/UpdateAvailableForm.cs -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/UpdateAvailableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/UpdateAvailableForm.resx -------------------------------------------------------------------------------- /Rnwood.AutoUpdate/UpdateChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.AutoUpdate/UpdateChecker.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/AppContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/AppContext.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MIMEDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MIMEDatabase.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MainForm.Designer.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MainForm.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MainForm.resx -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MessageInspector/HeaderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MessageInspector/HeaderViewModel.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MessageInspector/InspectorWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MessageInspector/InspectorWindow.xaml -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MessageInspector/InspectorWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MessageInspector/InspectorWindow.xaml.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MessageInspector/MessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MessageInspector/MessageViewModel.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MessageInspector/PartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MessageInspector/PartViewModel.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/MessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/MessageViewModel.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/OptionsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/OptionsForm.Designer.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/OptionsForm.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/OptionsForm.resx -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Program.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Properties/DataSources/Rnwood.SmtpServer.Session.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Properties/DataSources/Rnwood.SmtpServer.Session.datasource -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Properties/DataSources/SMTPSession.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Properties/DataSources/SMTPSession.datasource -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Properties/DataSources/anmar.SharpMimeTools.SharpMimeMessage.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Properties/DataSources/anmar.SharpMimeTools.SharpMimeMessage.datasource -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Properties/Resources.resx -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Properties/Settings.settings -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/RegistrySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/RegistrySettings.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Resources/Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Resources/Icon1.ico -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Resources/Icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Resources/Icon2.ico -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Resources/localhost.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Resources/localhost.pfx -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/Rnwood.Smtp4dev.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/Rnwood.Smtp4dev.csproj -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/ServerBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/ServerBehaviour.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/ServerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/ServerController.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/SessionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/SessionViewModel.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/SingleInstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/SingleInstanceManager.cs -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/app.config -------------------------------------------------------------------------------- /Rnwood.Smtp4dev/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.Smtp4dev/packages.config -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/ClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/ClientTests.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/Mocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/Mocks.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/Rnwood.SmtpServer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/Rnwood.SmtpServer.Tests.csproj -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/ServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/ServerTests.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/SmtpCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/SmtpCommandTests.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/Verbs/DataVerbTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/Verbs/DataVerbTests.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/Verbs/HeloVerbTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/Verbs/HeloVerbTests.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/Verbs/NoopVerbTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/Verbs/NoopVerbTests.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer.Tests/Verbs/RcptToVerbTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer.Tests/Verbs/RcptToVerbTests.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/ASCIISevenBitTruncatingEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/ASCIISevenBitTruncatingEncoding.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Connection.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/DefaultServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/DefaultServer.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/DefaultServerBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/DefaultServerBehaviour.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/SimpleServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/SimpleServer/Program.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/SimpleServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/SimpleServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/SimpleServer/SimpleServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/SimpleServer/SimpleServer.csproj -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/WindowsService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/WindowsService/Program.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/WindowsService/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/WindowsService/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/WindowsService/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/WindowsService/ProjectInstaller.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/WindowsService/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/WindowsService/ProjectInstaller.resx -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/WindowsService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/WindowsService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/WindowsService/SmtpService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/WindowsService/SmtpService.Designer.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/WindowsService/SmtpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/WindowsService/SmtpService.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Examples/WindowsService/WindowsService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Examples/WindowsService/WindowsService.csproj -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/AnonymousAuthenticationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/AnonymousAuthenticationRequest.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/AnonymousMechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/AnonymousMechanism.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/AuthExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/AuthExtension.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/AuthMechanismMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/AuthMechanismMap.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/AuthMechanismProcessorStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/AuthMechanismProcessorStatus.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/AuthenticationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/AuthenticationRequest.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/AuthenticationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/AuthenticationResult.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/CramMd5AuthenticationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/CramMd5AuthenticationRequest.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/CramMd5Mechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/CramMd5Mechanism.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/IAuthMechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/IAuthMechanism.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/IAuthMechanismProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/IAuthMechanismProcessor.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/LoginMechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/LoginMechanism.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/PlainMechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/PlainMechanism.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Auth/UsernameAndPasswordAuthenticationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Auth/UsernameAndPasswordAuthenticationRequest.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/EightBitMimeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/EightBitMimeExtension.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/Extension.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/SizeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/SizeExtension.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Extensions/StartTlsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Extensions/StartTlsExtension.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/ICompletedSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/ICompletedSession.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/IConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/IConnection.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/IMessage.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/IParameterProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/IParameterProcessor.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/IServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/IServer.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/IServerBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/IServerBehaviour.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Message.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/ParameterParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/ParameterParser.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/ParameterProcessorMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/ParameterProcessorMap.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Rnwood.SmtpServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Rnwood.SmtpServer.csproj -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Server.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Session.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/SmtpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/SmtpCommand.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/SmtpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/SmtpResponse.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/SmtpServerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/SmtpServerException.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/DataVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/DataVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/EhloVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/EhloVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/HeloVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/HeloVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/IVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/IVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/MailFromVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/MailFromVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/MailVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/MailVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/NoopVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/NoopVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/QuitVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/QuitVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/RcptToVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/RcptToVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/RcptVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/RcptVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/RsetVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/RsetVerb.cs -------------------------------------------------------------------------------- /Rnwood.SmtpServer/Verbs/VerbMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/Rnwood.SmtpServer/Verbs/VerbMap.cs -------------------------------------------------------------------------------- /SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/SolutionInfo.cs -------------------------------------------------------------------------------- /lib/MSBuildCommunityTasks/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/MSBuildCommunityTasks/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /lib/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets -------------------------------------------------------------------------------- /lib/MSBuildCommunityTasks/MSBuild.Community.Tasks.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/MSBuildCommunityTasks/MSBuild.Community.Tasks.chm -------------------------------------------------------------------------------- /lib/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll -------------------------------------------------------------------------------- /lib/MSBuildCommunityTasks/MSBuild.Community.Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/MSBuildCommunityTasks/MSBuild.Community.Tasks.xml -------------------------------------------------------------------------------- /lib/MSBuildCommunityTasks/Sample.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/MSBuildCommunityTasks/Sample.proj -------------------------------------------------------------------------------- /lib/Moq/Moq.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/Moq/Moq.chm -------------------------------------------------------------------------------- /lib/Moq/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/Moq/Moq.dll -------------------------------------------------------------------------------- /lib/Moq/Moq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/Moq/Moq.xml -------------------------------------------------------------------------------- /lib/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/log4net.dll -------------------------------------------------------------------------------- /lib/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.Design.dll -------------------------------------------------------------------------------- /lib/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.Expression.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.Expression.Design.dll -------------------------------------------------------------------------------- /lib/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.VisualStudio.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.VisualStudio.Design.dll -------------------------------------------------------------------------------- /lib/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/wpftoolkit/System.Windows.Controls.DataVisualization.Toolkit.dll -------------------------------------------------------------------------------- /lib/wpftoolkit/WPFToolkit.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/wpftoolkit/WPFToolkit.Design.dll -------------------------------------------------------------------------------- /lib/wpftoolkit/WPFToolkit.VisualStudio.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/wpftoolkit/WPFToolkit.VisualStudio.Design.dll -------------------------------------------------------------------------------- /lib/wpftoolkit/WPFToolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/lib/wpftoolkit/WPFToolkit.dll -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/packages/repositories.config -------------------------------------------------------------------------------- /publish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/publish.proj -------------------------------------------------------------------------------- /releases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/releases.xml -------------------------------------------------------------------------------- /smtp4dev.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smorks/smtp4dev/HEAD/smtp4dev.sln --------------------------------------------------------------------------------