papercut 2010.3.3.0

Sign up to get free protection for your applications and to get access to all the features.
Binary file
@@ -0,0 +1,50 @@
1
+ <configuration>
2
+
3
+ <configSections>
4
+ <section name="log4net" type="System.Configuration.IgnoreSectionHandler" />
5
+ <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
6
+ <section name="Papercut.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
7
+ </sectionGroup>
8
+ </configSections>
9
+
10
+ <log4net>
11
+ <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
12
+ <file value="smtp.log" />
13
+ <appendToFile value="true" />
14
+ <rollingStyle value="Size" />
15
+ <maxSizeRollBackups value="0" />
16
+ <maximumFileSize value="50KB" />
17
+ <staticLogFileName value="true" />
18
+ <layout type="log4net.Layout.PatternLayout">
19
+ <conversionPattern value="%date [%thread] %-5level %message%newline" />
20
+ </layout>
21
+ </appender>
22
+ <root>
23
+ <level value="ALL" />
24
+ <appender-ref ref="RollingFileAppender" />
25
+ </root>
26
+ </log4net>
27
+
28
+ <userSettings>
29
+ <Papercut.Properties.Settings>
30
+ <setting name="IP" serializeAs="String">
31
+ <value>Any</value>
32
+ </setting>
33
+ <setting name="Port" serializeAs="String">
34
+ <value>25</value>
35
+ </setting>
36
+ <setting name="StartMinimized" serializeAs="String">
37
+ <value>False</value>
38
+ </setting>
39
+ <setting name="ForwardServer" serializeAs="String">
40
+ <value />
41
+ </setting>
42
+ <setting name="ForwardFrom" serializeAs="String">
43
+ <value />
44
+ </setting>
45
+ <setting name="ForwardTo" serializeAs="String">
46
+ <value />
47
+ </setting>
48
+ </Papercut.Properties.Settings>
49
+ </userSettings>
50
+ </configuration>
Binary file
@@ -0,0 +1,2 @@
1
+ result = system(File.dirname(__FILE__) + "/papercut.exe " + ARGV.join(' '))
2
+ exit 1 unless result
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: papercut
3
+ version: !ruby/object:Gem::Version
4
+ hash: 32251
5
+ prerelease: false
6
+ segments:
7
+ - 2010
8
+ - 3
9
+ - 3
10
+ - 0
11
+ version: 2010.3.3.0
12
+ platform: ruby
13
+ authors:
14
+ - krobertson
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2010-08-18 00:00:00 -05:00
20
+ default_executable:
21
+ dependencies: []
22
+
23
+ description: |
24
+ Papercut - built on .NET. Ever need to test emails from an application, but don't necessarily want it sending them out? Don't want to hassle with pointing it to a physical SMTP server? All you want to is verify it can send email, and take a look at the message.
25
+
26
+ Papercut is your answer. Papercut is a simplified SMTP server designed to only receive messages (not to send them on) with a GUI on top of it allowing you to see the messages it receives. It doesn't enforce any restrictions on addresses, it just takes the message and allows you see it. It is only active while it is running, and if you want it in the background, just minimize it to the system tray. When it receives a new message, a balloon message will show up to let you know.
27
+
28
+ email: ferventcoder@gmail.com
29
+ executables:
30
+ - papercut
31
+ extensions: []
32
+
33
+ extra_rdoc_files: []
34
+
35
+ files:
36
+ - bin/log4net.dll
37
+ - bin/papercut
38
+ - bin/Papercut.exe
39
+ - bin/Papercut.exe.config
40
+ has_rdoc: true
41
+ homepage: http://papercut.codeplex.com/
42
+ licenses: []
43
+
44
+ post_install_message:
45
+ rdoc_options: []
46
+
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ hash: 3
55
+ segments:
56
+ - 0
57
+ version: "0"
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ hash: 3
64
+ segments:
65
+ - 0
66
+ version: "0"
67
+ requirements: []
68
+
69
+ rubyforge_project: papercut
70
+ rubygems_version: 1.3.7
71
+ signing_key:
72
+ specification_version: 3
73
+ summary: Papercut - Simplified SMTP server to test email for .NET
74
+ test_files: []
75
+