cses 0.3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Binary file
data/docs/LICENSE.txt ADDED
@@ -0,0 +1,26 @@
1
+ Copyright (c) 2003, Eric Daugherty (http://www.ericdaugherty.com)
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ * Redistributions of source code must retain the above copyright notice,
8
+ this list of conditions and the following disclaimer.
9
+ * Redistributions in binary form must reproduce the above copyright
10
+ notice, this list of conditions and the following disclaimer in the
11
+ documentation and/or other materials provided with the distribution.
12
+ * Neither the name of the Eric Daugherty nor the names of its
13
+ contributors may be used to endorse or promote products derived
14
+ from this software without specific prior written permission.
15
+
16
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
20
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
26
+ THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,38 @@
1
+ C# Email Server - Eric Daugherty
2
+ web@ericdaugherty.com
3
+ http://www.ericdaugherty.com/dev/cses
4
+ --------------------------------------------
5
+ Please refer to:
6
+ http://www.ericdaugherty.com/dev/cses
7
+ for additional documentation.
8
+
9
+
10
+
11
+ Revision History
12
+ ----------------
13
+
14
+ Release 0.3 - 07/13/2004
15
+
16
+ Fixed bug that caused infinite loop. Caused when clients disconnect improperly.
17
+
18
+ Added ability to easily pull Header values from SMTPMessage and SMTPMessagePart
19
+
20
+ Duplicate header keys (ex: Received) are not supported. The last header key wins.
21
+
22
+ Fixed Regex of mail addresses in SMTPProcessor.
23
+
24
+ Fixed text replacement in user overridable SMTP Messages.
25
+
26
+ Added ability to shutdown SimpleServer cleanly.
27
+
28
+ Release 0.2 - 04/16/2004
29
+
30
+ Added .chm API Documentation to binary release.
31
+
32
+ Fixed bug parsing email addresses in SmtpServer.
33
+
34
+ Fixed SimpleServer to listen on all IP addresses instead of just the loopback address.
35
+
36
+ Release 0.1 - 11/12/2003
37
+
38
+ Initial Release of SMTP Server component (cses.smtp.server.dll)
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cses
3
+ version: !ruby/object:Gem::Version
4
+ hash: 87
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 3
9
+ - 0
10
+ - 0
11
+ version: 0.3.0.0
12
+ platform: ruby
13
+ authors:
14
+ - Eric Daugherty
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2010-08-10 00:00:00 -04:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: log4net
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ">"
29
+ - !ruby/object:Gem::Version
30
+ hash: 13
31
+ segments:
32
+ - 1
33
+ - 2
34
+ - 9
35
+ version: 1.2.9
36
+ type: :runtime
37
+ version_requirements: *id001
38
+ description: Cses is a C#.NET port of the Java Email Server (JES).
39
+ email:
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files: []
45
+
46
+ files:
47
+ - lib/cses.smtp.server.dll
48
+ - lib/cses.smtp.server.pdb
49
+ - docs/CSES Documentation.chm
50
+ - docs/LICENSE.txt
51
+ - docs/ReleaseNotes.txt
52
+ has_rdoc: true
53
+ homepage: http://github.com/mikeobrien/C--Email-Server
54
+ licenses: []
55
+
56
+ post_install_message:
57
+ rdoc_options: []
58
+
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ hash: 3
67
+ segments:
68
+ - 0
69
+ version: "0"
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ none: false
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ hash: 3
76
+ segments:
77
+ - 0
78
+ version: "0"
79
+ requirements: []
80
+
81
+ rubyforge_project:
82
+ rubygems_version: 1.3.7
83
+ signing_key:
84
+ specification_version: 3
85
+ summary: A simple .NET email server
86
+ test_files: []
87
+