Downloads:
12,919
Downloads of v 0.9.8.8:
1,354
Last Update:
26 Feb 2015
Package Maintainer(s):
Software Author(s):
- Peter Goodman
- Damian Karzon
Tags:
hubot mmbot jabbr hipchat- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
mmbot
- 1
- 2
- 3
0.9.8.8 | Updated: 26 Feb 2015
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
12,919
Downloads of v 0.9.8.8:
1,354
Maintainer(s):
Software Author(s):
- Peter Goodman
- Damian Karzon
mmbot 0.9.8.8
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Peter Goodman, Damian Karzon. The inclusion of Peter Goodman, Damian Karzon trademark(s), if any, upon this webpage is solely to identify Peter Goodman, Damian Karzon goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Unknown
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install mmbot, run the following command from the command line or from PowerShell:
To upgrade mmbot, run the following command from the command line or from PowerShell:
To uninstall mmbot, 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 mmbot --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 mmbot -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 mmbot -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 mmbot
win_chocolatey:
name: mmbot
version: '0.9.8.8'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'mmbot' do
action :install
source 'INTERNAL REPO URL'
version '0.9.8.8'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller mmbot
{
Name = "mmbot"
Version = "0.9.8.8"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'mmbot':
ensure => '0.9.8.8',
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 by moderator ferventcoder on 24 Mar 2015.
mmbot can support jabbr, hipchat and google talk. mmbot scripts are written in C# using scriptcs.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Common.Logging" publicKeyToken="af08829b84f0328e" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.1.2.0" newVersion="2.1.2.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="NuGet.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.7.41101.299" newVersion="2.7.41101.299" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
# This is the configuration file for MMBot. Different sections are used to separate scripts / adapters
# e.g. This keeps the Brain data local so that you can copy the scripts and brain data easily somewhere else (you can copy the old data from c:\<user>\programdata\MMBotBrain)
[BRAIN]
PATH = brain
# e.g. Here is a configuration for the Jabbr adapter. Uncomment and customise as necessary
#
# [JABBR]
# NICK = mmbot
# PASSWORD = mypassword
# ROOMS = myroom1,myroom2
# NuGet download configuration.
# REPOS is a comma delimited list of NuGet package sources.
# PACKAGE_ALIASES lets you call packages by multiple names. If you don't want to type SomeNamespace.SomeOtherNamespace.MyPackage, here's where you nickname it.
[NUGET]
REPOS = https://packages.nuget.org/api/v2
RESET = false
# PACKAGE_ALIASES = MyNickname=SomeNamespace.SomeOtherNamespace.MyPackage
Log in or click on link to see number of positives.
- log4net.dll (27d26aab42f7) - ## / 64
- CommandLine.dll (4923528d3d18) - ## / 69
- Common.Logging.dll (d6461b8c61b7) - ## / 70
- Owin.dll (7fedc19bf6c1) - ## / 71
- Microsoft.Web.XmlTransform.dll (13dcf5066e00) - ## / 65
- NuGet.Core.dll (515a7d0a2743) - ## / 57
- Autofac.dll (ce02fbeedabf) - ## / 72
- Autofac.Integration.Mef.dll (1677d0ce3b15) - ## / 68
- Roslyn.Compilers.CSharp.dll (63107343714f) - ## / 58
- Roslyn.Compilers.dll (52209e880aa9) - ## / 57
- mmbot.0.9.8.8.nupkg (a7c4380e1009) - ## / 56
- Akavache.dll (66e96797ef3e) - ## / 55
- Akavache.Portable.dll (86a67f2cbd01) - ## / 52
- Common.Logging.Log4Net.dll (26671bcd15a0) - ## / 53
- HtmlAgilityPack.dll (48d0ae38add8) - ## / 59
- Microsoft.Owin.dll (c31acc938893) - ## / 54
- MMBot.Core.dll (a1741318eaf9) - ## / 56
- mmbot.exe (258d41fb3c9a) - ## / 45
- Newtonsoft.Json.dll (030e739cba60) - ## / 59
- ReactiveUI.dll (c971ce4546f4) - ## / 54
- ScriptCs.Contracts.dll (f14ad8fbdf5e) - ## / 55
- ScriptCs.Core.dll (131d848ca156) - ## / 55
- ScriptCs.Engine.Roslyn.dll (c100e83b88eb) - ## / 55
- ScriptCs.Hosting.dll (a1b7824666b4) - ## / 54
- ServiceStack.Text.dll (eb4dd2aac3ff) - ## / 53
- System.Reactive.Core.dll (ed8bf5d815a7) - ## / 57
- System.Reactive.Interfaces.dll (964429e9c6f3) - ## / 57
- System.Reactive.Linq.dll (9a40c58aa76d) - ## / 57
- System.Reactive.PlatformServices.dll (da00780e06a3) - ## / 54
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 |
---|---|---|---|---|
mmbot 0.9.8.8 | 1354 | Thursday, February 26, 2015 | Approved | |
mmbot 0.9.8.7 | 663 | Monday, November 17, 2014 | Approved | |
mmbot 0.9.8.6 | 515 | Tuesday, September 16, 2014 | Approved | |
mmbot 0.9.8.5 | 515 | Thursday, August 21, 2014 | Approved | |
mmbot 0.9.8.4 | 496 | Tuesday, August 19, 2014 | Approved | |
mmbot 0.9.8.3 | 422 | Tuesday, August 19, 2014 | Approved | |
mmbot 0.9.8.2 | 443 | Saturday, August 16, 2014 | Approved | |
mmbot 0.9.8.1 | 472 | Saturday, August 9, 2014 | Approved | |
mmbot 0.9.8.0 | 476 | Saturday, June 14, 2014 | Approved | |
mmbot 0.9.7.6 | 467 | Wednesday, May 21, 2014 | Approved | |
mmbot 0.9.7.5 | 482 | Monday, April 21, 2014 | Approved | |
mmbot 0.9.7.4 | 524 | Sunday, March 30, 2014 | Approved | |
mmbot 0.9.7.3 | 498 | Saturday, March 29, 2014 | Approved | |
mmbot 0.9.7.2 | 528 | Saturday, March 29, 2014 | Approved | |
mmbot 0.9.7.1 | 442 | Saturday, March 29, 2014 | Approved | |
mmbot 0.9.7 | 508 | Friday, March 28, 2014 | Approved | |
mmbot 0.9.6 | 514 | Friday, March 28, 2014 | Approved | |
mmbot 0.9.5.1 | 466 | Saturday, February 8, 2014 | Approved | |
mmbot 0.9.5 | 475 | Monday, February 3, 2014 | Approved | |
mmbot 0.9.4 | 511 | Tuesday, January 14, 2014 | Approved | |
mmbot 0.9.3 | 485 | Sunday, January 12, 2014 | Approved | |
mmbot 0.9.2 | 635 | Sunday, December 15, 2013 | Approved | |
mmbot 0.9.1 | 523 | Sunday, November 17, 2013 | Approved | |
mmbot 0.9 | 505 | Sunday, November 17, 2013 | Approved |
Peter Goodman
-
- NuGet.CommandLine (≥ 2.5.0)
Ground Rules:
- This discussion is only about mmbot and the mmbot 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 mmbot, 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.