Downloads:
23,420
Downloads of v 6.0.0:
5,405
Last Update:
04 Dec 2021
Package Maintainer(s):
Software Author(s):
- Jaben
Tags:
dummy smtp papercut- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Papercut-Smtp
- 1
- 2
- 3
6.0.0 | Updated: 04 Dec 2021
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
23,420
Downloads of v 6.0.0:
5,405
Maintainer(s):
Software Author(s):
- Jaben
Papercut-Smtp 6.0.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Jaben. The inclusion of Jaben trademark(s), if any, upon this webpage is solely to identify Jaben goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Papercut-Smtp, run the following command from the command line or from PowerShell:
To upgrade Papercut-Smtp, run the following command from the command line or from PowerShell:
To uninstall Papercut-Smtp, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download papercut --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade papercut -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade papercut -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install papercut
win_chocolatey:
name: papercut
version: '6.0.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'papercut' do
action :install
source 'INTERNAL REPO URL'
version '6.0.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller papercut
{
Name = "papercut"
Version = "6.0.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'papercut':
ensure => '6.0.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 24 Nov 2024.
Papercut - build on .NET using WPF. 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.
Papercut is the 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.
md5: 19A1DC03C9C4A99D6591A4526A8C3929 | sha1: 3E015F04663422220E39FC684C2815CAE524CA1D | sha256: 46B7B4B3D9A31DACB6A62A9785DB2B13C182FAF837A29E3363EA71A02DEE10A0 | sha512: 859FE6AC68396D72B4E999EFCB17CF380EE91ECC0AD57FCBEB952E5FDBFCE84E996DE97B5A4ABED859C0EBCCEA8612AE72604861C32C3D9875F14ED1D5C5EB50
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="Papercut.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<userSettings>
<Papercut.Properties.Settings>
<setting name="IP" serializeAs="String">
<value>Any</value>
</setting>
<setting name="Port" serializeAs="String">
<value>25</value>
</setting>
<setting name="StartMinimized" serializeAs="String">
<value>False</value>
</setting>
<setting name="ForwardServer" serializeAs="String">
<value />
</setting>
<setting name="ForwardFrom" serializeAs="String">
<value />
</setting>
<setting name="ForwardTo" serializeAs="String">
<value />
</setting>
<setting name="MinimizeOnClose" serializeAs="String">
<value>True</value>
</setting>
<setting name="RunOnStartup" serializeAs="String">
<value>False</value>
</setting>
<setting name="MainWindowHeight" serializeAs="String">
<value>500</value>
</setting>
<setting name="MainWindowWidth" serializeAs="String">
<value>700</value>
</setting>
<setting name="MessageListSortOrder" serializeAs="String">
<value>Ascending</value>
</setting>
<setting name="MinimizeToTray" serializeAs="String">
<value>True</value>
</setting>
<setting name="MessagePaths" serializeAs="String">
<value>%ApplicationData%\Changemaker Studios\Papercut SMTP;%ApplicationData%\Papercut;%BaseDirectory%\Incoming;%AppDataDirectory%\Incoming</value>
</setting>
<setting name="Theme" serializeAs="String">
<value>Steel Blue</value>
</setting>
<setting name="WebView2UserFolder" serializeAs="String">
<value>%UserAppDataDirectory%\WebView2</value>
</setting>
<setting name="LoggingPaths" serializeAs="String">
<value>%ApplicationData%\Changemaker Studios\Papercut SMTP;%ApplicationData%\Papercut;%BaseDirectory%\Logs;%AppDataDirectory%\Logs</value>
</setting>
<setting name="ShowNotifications" serializeAs="String">
<value>True</value>
</setting>
</Papercut.Properties.Settings>
</userSettings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Xceed.Wpf.AvalonDock" publicKeyToken="3e4669d2f30244f4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Xceed.Wpf.AvalonDock.Themes.Aero" publicKeyToken="3e4669d2f30244f4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Xceed.Wpf.AvalonDock.Themes.Metro" publicKeyToken="3e4669d2f30244f4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Xceed.Wpf.AvalonDock.Themes.VS2010" publicKeyToken="3e4669d2f30244f4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Xceed.Wpf.Toolkit" publicKeyToken="3e4669d2f30244f4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.2.0.0" newVersion="6.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="MimeKit" publicKeyToken="bede1c8a46c66814" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.13.0.0" newVersion="2.13.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
md5: 6DC5CEAE6EC36DFA3EC1E83DAB381411 | sha1: 7E3B31FAE568914782655A1187382003155F2D93 | sha256: 244B9B08356842A2451FD6F34B56F1134CA2618BD4BA92BB7AC7E8D0A036D7E7 | sha512: F6666B04F98293A96186ABC305BB16DE77B5E3E162A1CDC7E55020195004E0087A978361F548FEC10C1C71906D304E9FD7111713640E220A7CDF61DA8E3C23F5
Papercut
Copyright © 2008 - 2012 Ken Robertson
Copyright © 2013 - 2018 Jaben Cargman
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy.
This package is published by the Papercut Project itself.
Log in or click on link to see number of positives.
- WebView2Loader.dll (244b9b083568) - ## / 72
- papercut.6.0.0.nupkg (6cd90278b437) - ## / 61
- Papercut.exe (46b7b4b3d9a3) - ## / 65
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Papercut-Smtp 6.0.0 | 5405 | Saturday, December 4, 2021 | Approved | |
Papercut-Smtp 5.8.0 | 1507 | Thursday, June 17, 2021 | Approved | |
Papercut 5.1.44 | 6487 | Saturday, May 19, 2018 | Approved | |
Papercut 4.8.0.16 | 2090 | Monday, May 29, 2017 | Approved | |
Papercut 4.8.0.3 | 834 | Wednesday, March 29, 2017 | Approved | |
Papercut 4.7.0.18 | 453 | Sunday, February 12, 2017 | Approved | |
Papercut 4.6.1.7 | 1376 | Thursday, April 7, 2016 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Papercut-Smtp and the Papercut-Smtp package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Papercut-Smtp, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.