Skip to content

General

Please search for existing ideas before posting a new idea.

  • Hot ideas
  • Top ideas
  • New ideas
  • My feedback

263 results found

  1. Ability to modify attached files when editing a message

    Currently, Mattermost provides the ability to edit a message after you have posted it.

    However, there is no way to modify the file attachments via this editing process.

    Recent use case: I uploaded the wrong file when posting a message. Ideally I would have been able to edit the post to correct the mistake, i.e. to remove the incorrect file and attach the one I meant to attach. However, I could find no way of doing this.

    Luckily, in my case it was simply an old version of the document, and therefore not too big a problem. However, I am…

    89 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. Allow adding custom words to user and/or team dictionaries.

    Words not in the stock dictionaries are always marked as errors; there's no way around it.

    8 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  3. Notifications for replies in threads, and ability to follow/unfollow threads (like slack)

    I wish there was a notification setting like in slack to enable the setting "Notify me about replies to threads I'm following"... and then the ability to opt-out of following threads (but following them is automatic for any threads that you start or comment on)

    51 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  4. Add a whitelist which protocols should be linkified

    See https://github.com/mattermost/mattermost-server/issues/7657 for details.
    TL;DR: It's not very useful to convert e.g. foo:bar to a link.

    0 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  5. Disable notifications functionality for defined period of time

    As a user I want to deactivate Mattermost notifications in my windows desktop application for a defined period of time. After this period the notifications will be shown as before.
    I can predefine in the period in the setings.
    I would like to activate this function by right clicking on the system tray icon and choose the action.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  6. emoji reaction keyboard shortcut

    This was my most used shortcut in another messaging app that starts with an S and ends with an ack.

    Also to then be able to select emoji with arrow keys and enter is crucial. Would even go a step beyond if shift enter allowed you to pick more than one emoji reaction! #Mindblown

    22 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  7. collapse [-] PUBLIC CHANNELS

    We use the favorite channels and direct messages, and therefore would like to collapse the public channels. Then channels with unread messages would only be shown.

    [-] PUBLIC CHANNELS +
    0 Project X (2)
    0 Project Y
    0 Project Z

    [+] PUBLIC CHANNELS +
    0 Project X (2)

    5 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  8. Private message with authorized members only

    Hi, (I am new to this forum but I have installed Mattermost in my organization)

    Is it possible to add a new choice in the administrative console in the option “Allow users to open private message channels with” to request permission to create private messages with members who use the platform.

    Currently, the configuration choices are:

    All members of the team
    Any user on the Mattermost server
    and I would like to add :

    Only authorized members
    To prevent all members from communicating privately without prior notice

    Is it a good idea ?

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  9. I can search easily for a group name on iPhone, but there is not the same convenient matching feature on macOS.

    I can search easily for a group name on iPhone, but there is not the same convenient matching feature on macOS. Also on iPhone, I see all unread messages at top of list, on macOS I have to scan the whole list to find unread messages. So the macOS client needs to catch up with the iPhone.

    4 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  10. Use different color for nicknames

    Using various colors for nicknames improves readibility a lot!

    https://i.imgur.com/GxyJgyz.png

    vs

    https://i.imgur.com/Kbz4b8t.png

    Slack does it already.

    60 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  11. Modify a user via CLI

    Would be nice to have the ability to update/modify a user via the CLI. Similarly to create user, you are able to set their name, email, etc. It would be nice to be able modify those details of an existing user via the CLI or even UI. I've found some user's end up entering their names all lower case or some don't even enter their details.

    29 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  12. Delete an user's private conversations

    In some cases we need to delete all private conversations from an old user but without deleting the user (so it doesn't break continuity in public conversations).
    We use an SQL query:
    SELECT DISTINCT Name FROM Channels INNER JOIN
    (SELECT Id FROM Users WHERE Username LIKE 'Foo')
    sub ON Name LIKE concat('%', sub.Id, '%');
    Then "platform channel delete" to delete the channels.

    But it would be much easier to have a CLI command that does this.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  13. Add a /quote command

    Pasting a multi-paragraph block of text for quoting is currently frustrating, as you can't just type "> " and then paste and hit return, because if "\n\n" happens to exist in the block, it'll fall out of quote mode.

    Since we already have /code for code pastes (like HipChat), let's also go for /quote: you do "/quote <paste><enter>" and done.

    The implementation would be virtually identical to /code, just replace the 4 spaces with "> "

    29 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  14. Include channel creation and management restrictions in team edition

    I know these features were left out of Team Edition to keep it simple, but these options are present in the config.json file.

    Enabling this features from just the config.json file would keep the team edition ui simple, but give smaller teams the same ability to control the whims of their users

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  15. Make notifications for multi-person direct messages work the same as for single-person direct messages.

    Make notifications for multi-person direct messages work the same as for single-person direct messages.

    Scroll down to the bottom of the Direct Message section in the channel bar and click More...

    Choose 2 names to send a message to and click Go

    Type a message in the chat window

    Expected behavior
    On the recipients' clients, the taskbar icon should show a red dot with a number (eg: 1)
    image

    On the system tray icon, a red dot should appear.
    image

    Observed behavior
    On the recipients' clients, the taskbar icon shows a red dot with a white dot in the middle…

    71 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. Build a thread system similar to Twist

    As plenty of companies around there we find Slack/Mattermost a bit too chatty at times. More importantly, it sometimes makes it really hard to follow discussion around a specific topic. For now we have two choices :

    1. Create a specific channel around a topic. But you can start to have a lot of channels really fast
    2. Use "threads". But to be frank threads implementation is really lacking and not practical for complex discussions

    A new player,https://twistapp.com/, has an interesting take on this problem. Real time channels still exists, but there is another category of channels, entirely based on…

    70 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  17. search through all teams

    Right now the scope of the search feature is limited to the current team. It would be great to have option allowing to specify the scope: channel, team, global (for example)

    221 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  18. channel profile images

    Support avatar icons for channels.

    it would be great if the service and apps provided a similar API and UX to allow profile images to be assigned and queried for a channel.
    This might work similarly to what is in place for users, where the Mattermost API supports getting a profile image for a user, except this request would provide profile image by channel.

    47 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  19. Delete user avatar from CLI

    We need a way to delete an user avatar with the CLI tool.
    Currently we delete the in data/users/ manually but it would be easier if we could do it by using the email instead of the ID.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  20. At present we can render tables, can we have the control to left/right align the tables

    At present we can render tables, can we have the control to left/right align the tables.
    Use case : For me my data is some what large, which can't fit in a screen. If we have the option to right align some tables, i can manage the space.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
1 2 5 7 9 13 14
  • Don't see your idea?

Feedback and Knowledge Base