General
Please search for existing ideas before posting a new idea.
147 results found
-
Allow mattermost inside an iframe, in a controlled way
This pull request introduced a security measure to protect against clicjacking attacks: https://github.com/mattermost/platform/pull/253
But it also prevents some legitimate uses of iframes. For example, Nextcloud has a "external sites" function to run any app as if it was a Nextcloud app, by putting it in an iframe inside Nextcloud (https://docs.nextcloud.com/server/9/admin_manual/configuration_server/external_sites.html).
My proposal is to add some settings to allow an authorized domain, and then change X-Frame-Options, instead of DENY put ALLOW-FROM this domain. And to check the domain also in the javascript check in head.html.
This way it would allow legitimate uses, while still protecting against clickjacking attacks.
51 votes -
allow personal access tokens for all users
Currently non-admins cannot create personal access tokens unless they ask an admin to enable personal access tokens for them. Considering that any user could already go through the SSO flow or use username+password depending on the setup to get a token for the API, there should be a config option to allow everyone to create personal access tokens by default.
8 votes -
Mattermost in SharePoint (e.g. iframe)
The last question regard this topic in this forum was not very helpful. Therefore my question: I have in my company mattermost installed. E.g. matter.mycompany.com - Now I would like to integrate mattermost in e.g. via iframe. How can I easly active the iframe option - in General or just for mycompany.com if this is possible? Thanks in advance!
10 votes -
Preinstalled "matter-bot"
I´m just stealing the idea from slack ;)
I would like to see a simple bot that I can configure much like the "Slack Bot" (https://get.slack.help/hc/en-us/articles/202026038-Slackbot-your-assistant-notepad-programmable-bot)
This is a great and simple way to get started with bots!
110 votes -
Integration with Bitbucket
Please create an integration with bitbucket
66 votesWe have a new integration supporting BitBucket. Would anyone like to give it a try and share feedback on how it works for your team?
-
Implementing Pingdom Webhooks
Actually Pingdom webhooks aren't supported, either in (old) /GET nor (new) /POST flavour.
New /POST format:
FORM/POST PARAMETERSNone
HEADERSAccept-Encoding: gzip, deflate
Accept: /
Content-Length: 621
X-Request-Id: 23152976-5a56-45b8-9d0a-9a782b57691b
Via: 1.1 vegur
Total-Route-Time: 0
Host: requestb.in
Connection: close
Content-Type: application/json
User-Agent: pingdom-bot
Connect-Time: 1
RAW BODY{"checkid": 2148165, "checkname": "test", "checktype": "HTTP", "checkparams": {"basicauth": false, "encryption": false, "fullurl": "http://nos.ww12asdfdsfsdfsf.com/", "header": "User-Agent:Pingdom.combotversion1.4(http://www.pingdom.com/)", "hostname": "nos.ww12asdfdsfsdfsf.com", "ipv6": false, "port": 80, "url": "/"}, "tags": [], "previousstate": "UP", "currentstate": "DOWN", "statechangedtimestamp": 1464616436, "statechangedutctime": "2016-05-30T13:53:56",…
54 votes -
Calendar App
To complement and extend the task management, a calendar app will really be a nice feature!
Please see the Glip implementation of it
https://glip.zendesk.com/hc/en-us/articles/202321744-Calendar-AppAnd so MatterMost will also become a Glip alternative 8-)
91 votes -
Integrate with Discourse
It would be fantastic if Mattermost could share user registrations from Discourse, so that our users only have to register/login once to use essentially the same site.
39 votesThere is a community integration available for connecting Mattermost with Discourse:
https://github.com/PromoFaux/DiscourseToMattermost -
Trigger outgoing webhook by join/leave event
This would allow integrations to welcome newly joining users.
3 votes -
add multiple channel selection for incoming webhook
System users should be able to add multiple channels instead of one channel. We have users that are creating several individual webhooks for the same hook. Is there a way to add multiple selection when setting up an incoming webhook? This will allow an easier way to set this up.
1 vote -
Integration with smallchat
Smallchat is a live chat for visitors of our websites. It already works with slack, so it would be great if it would work with mattermost too https://small.chat/
3 votes -
Being able to kick multiple and all users at once from a channel
Expanding the
from
/kick @USERNAME
to
/kick @all
/kick @here
/kick @channel
/kick @username @username2 votes -
Show slash command for in_channel integration responses
One subtle different between slack and mattermost around slash commands is that "in_channel" responses in slack also show the initial user and command. I find this helps visibility, especially if the command has arguments -
/bitbucket status
vs/bitbucket status project
for example.https://api.slack.com/slash-commands#in_channel__vs__ephemeral__responses
4 votes -
Create Microsoft Lync plugin, similar to existing Zoom plugin
Create Microsoft Lync plugin, similar to existing Zoom plugin, so that a Lync meeting can be started on the fly in a Mattermost channel
15 votes -
i forgot my password link close
we use LDAP user account login in mattermsot,if users fotgot password, they can not use "i forgot my password" link to reset password.
can you let manager to choose open or not open this link?
4 votes -
Include user's language in body of outgoing slash command request
Currently, outgoing Slash commands send in the request body information about the user like userid and username.
However, to properly internationalize a slash command integration (such as https://github.com/jedfonner/MattermostOnFire/issues/2), the receiving system needs to know the user's specified language (from Account Settings > Display > Language).
Please add a "user_language" field to the JSON object passed in the body of the message sent by Mattermost outgoing slash commands. This field should be populated by the user's language (e.g., en-US, es-MX, fr-CA, etc).
8 votes -
Allow interactive message button clicks to edit buttons on message
Currently, when a user clicks on an interactive message button, MM sends a request to a remote web server with some information. When the server responds, it can send in a Message json blob, but this does not allow you to change the buttons on the message.
For example, if I were making a poll integration, there might be vote buttons, and after voting, I might update the button message to thank the user, and present them with the options to see the results or hide the message. Currently this is not possible.
6 votes -
1 vote
-
Interactive action buttons
Since Interactive Action Buttons are supported (4.2) it would be nice to support different button styles like in Slack and emoticons as text replacement for the buttons. I think this could enhance the overal look and feel of this new feature.
1 vote -
Simplify chatbot integration by enabling bots to run sandboxed, in-process on the server
Currently if I want any sort of 'bot' behavior, I need to:
- Get an API token (ask an admin for permission)
- Stand up a server or learn serverless
- Figure out deployments/monitoring/logging
To test my code, I need to expose my in-progress work to the internet so it can receive webhooks.
This is a substantial bar to clear, resulting in monolithic projects like Hubot with many plugins.
Organizations implementing this style of bot frequently have only a handful of people who know how to contribute to it.
An alternative would be to support 'Managed bots': custom code (language TBD; javascript (via…
6 votes
- Don't see your idea?