summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Update readmeWim2016-07-221-1/+1
|
* Sync with mattermost 3.2.0Wim2016-07-2215-57/+639
|
* Fix pointer reuse problemWim2016-07-221-1/+1
|
* Actually add sasl.goWim2016-07-221-0/+54
|
* Add (PLAIN) SASL supportWim2016-07-217-13/+47
|
* Do not check bindaddress when not using the serverWim2016-07-171-4/+4
|
* Add FAQ sectionWim2016-07-151-0/+12
|
* Fix markdownWim2016-07-121-0/+2
|
* Release v0.5.0-beta1v0.5.0-beta1Wim2016-07-122-4/+4
|
* Add migration infoWim2016-07-122-0/+53
|
* Update versionWim2016-07-121-1/+1
|
* Update documentationWim2016-07-122-37/+79
|
* Update documentationWim2016-07-122-76/+91
|
* Remove token checkWim2016-07-122-4/+2
|
* Remove Port from IRC config. Specify it with serverWim2016-07-113-5/+5
|
* Add port to BindAddressWim2016-07-113-16/+22
|
* Remove multiple Token config. Use same channel setup as from matterbridge-plusWim2016-07-113-70/+31
|
* Remove UseSlackCircumfix. Use RemoteNickFormatWim2016-07-112-14/+11
|
* Converge with matterbridge-plusWim2016-07-115-2/+1141
|
* Release v0.4.2v0.4.2Wim2016-06-232-1/+11
|
* Fix mattermost 3.1.0 API change. Closes #24Wim2016-06-231-1/+1
|
* Sync with mattermost 3.1.0Wim2016-06-2322-551/+1232
|
* Fix sample documentation. Closes #23Wim2016-06-162-6/+6
|
* Add DockerfileWim2016-05-211-0/+11
|
* Add support for ignoring messages from specific users.Wim2016-05-212-1/+7
|
* Commit mattermost vendoringv0.4.1Wim2016-05-2110-0/+521
|
* Release v0.4v0.4Wim2016-05-151-1/+1
|
* Sync with mattermost 3.0Wim2016-05-1522-242/+850
|
* Mention go1.6 requiremÃentWim2016-04-251-1/+1
|
* Sync with mattermost 2.2.0 releaseWim2016-04-1620-579/+1068
|
* Vendor libsWim2016-04-10198-0/+34235
|
* Move common code to matterbridge-plus bridge packageWim2016-03-232-303/+2
|
* Update documentation and sample configWim2016-03-222-0/+6
|
* Add -debug option. Run go fmt. Some cleanupsWim2016-03-222-27/+44
|
* Merge pull request #16 from fdevibe/nickserv-auth@42wim2016-03-222-13/+26
|\ | | | | Add Freenode style NickServ-based authentication.
| * Add Freenode style NickServ-based authentication.Fredrik de Vibe2016-03-212-13/+26
|/ | | | If the server sends a NOTICE requesting identification, identify.
* Merge pull request #15 from fdevibe/async-connect@42wim2016-03-211-13/+24
|\ | | | | Handle connects asynchroneously.
| * Handle connects asynchroneously.Fredrik de Vibe2016-03-211-13/+24
|/ | | | | On connect events, update the nick with what's actually used and set up channels as configured.
* Merge pull request #14 from fdevibe/enable-users-2@42wim2016-03-184-23/+94
|\ | | | | Enable !users command and add a table formatter
| * Limit number of columns to number of IRC nicks.Fredrik de Vibe2016-03-181-1/+1
| | | | | | | | | | Don't add more columns to the IRC nicks table than the total number of nicks in the IRC channel.
| * Remove unnecessary break in switch block.Fredrik de Vibe2016-03-181-1/+0
| |
| * Add double newline if the message is markup and prefixed.Fredrik de Vibe2016-03-181-2/+21
| | | | | | | | | | | | | | | | If the message is prefixed with the sender nick, it will break markup formatting on the same line. This commit introduces a very rudimentary markup checker, and if the message is deemed to be markup in those cases, the space between sender nick and message is replaced by a double newline.
| * Move new config parameters from IRC to Mattermost.Fredrik de Vibe2016-03-184-29/+29
| | | | | | | | PrefixMessagesWithNick, NickFormatter and NicksPerRow.
| * Enable !users command and add a table formatterFredrik de Vibe2016-03-184-2/+55
|/ | | | | * Listen to wildcarded events, currently handle RPL_NAMREPLY. * Add a formatter to present nick lists from IRC as a table.
* Merge pull request #12 from fdevibe/msgprefix@42wim2016-03-184-9/+17
|\ | | | | Add config option to prefix messages (IRC->MM) with nick
| * Add config option to prefix messages (IRC->MM) with nickFredrik de Vibe2016-03-184-9/+17
|/ | | | | If username overriding isn't enabled on the Mattermost server, this is required for Mattermost users to see who sent a message from IRC.
* Update to v0.3v0.3Wim2016-03-031-1/+1
|
* Add support for slack username circumfix. Closes #10Wim2016-02-184-8/+16
|
* Merge pull request #8 from daysofwineandroses/master@42wim2016-01-292-0/+4
|\ | | | | Add PASS support as per RFC1459
| * Add PASS support as per RFC1459Bert Mertens2016-01-272-0/+4
|/ | | | | | | | | Provide a connection password via the protocol's PASS command. Imported irc.go supports it as a simple parameter: https://github.com/thoj/go-ircevent/blob/master/irc.go#L381 See https://tools.ietf.org/html/rfc1459#section-4.1 for full details.