Hi @alfador!
Here is more information on encryption:
Hi @alfador!
Here is more information on encryption:
Hi @bigmtnbikey,
We have a feature request ticket open that seems to be related to the question you have: https://mattermost.uservoice.com/forums/306457-general/suggestions/35191429-add-optional-custom-headers-to-slash-command-reque.
Here is also more information on custom commands:
Last week I faced the challenge to extract user posts from Mattermost without using the database. I checked the Mattermost API documentation and came up with a few simple curl commands to achieve this. You can easily build this into a python script or pipe the result into a JSON file to process it afterwards.
Here is what I did:
# Please replace the capital letter words with your environment, tokens etc.
# Login using your credentials (System-Admin)
curl -i -d '{"login_id":"USERNAME","password":"PASSWORD"}' https://MATTERMOST/api/v4/users/login
# Gives you a token for next operations like this:
token: wqgwrca75ibumynq7p1kpzbutw
# Search the team to get the team ID
curl -i -H 'Authorization: Bearer TOKEN' -X POST -d '{ "term": "TEAMNAME"}' https://MATTERMOST/api/v4/teams/search
# Gives you a team ID like this:
"id":"trwd6spc8fd65pymp3dy8rtg4o"
# Search a channel in the team you want to get the posts from:
curl -i -H 'Authorization: Bearer TOKEN' -X POST -d '{ "term": "CHANNELNAME"}' https://MATTERMOST/api/v4/teams/TEAMID/channels/search
# Gives you a channel ID like this:
"id":"z8d65yhzxfrh5nzadyp9aa56qw"
# Get the posts from the channel
curl -i -H 'Authorization: Bearer TOKEN' https://MATTERMOST/api/v4/channels/CHANNELID/posts
Hope this helps!
Christian
I encourage you to read this documentation as it gives a very helpful overview of teams and channels in Mattermost:
Here are the answers to your questions:
2., 3. Yes, channels can be created in Team Edition. Administration of channels will be handled by System Admins.
Here is information on the types of channels we support: https://docs.mattermost.com/help/getting-started/organizing-conversations.html#channel-types.
We normally recommend starting with one team that includes multiple channels. The documentation that I linked at the top of my message will have more information on the options to organize your channels and teams. Also, if you change your mind in the future and decide to have multiple teams, you can use this CLI command to move channels to a different team: https://docs.mattermost.com/administration/command-line-tools.html#mattermost-channel-move.
Yes, users can belong to multiple channels at the same time.
Regards,
@yuya-oc Pinging you on this one ^
The issue is that Linux it is still showing “file=release/mattermost-desktop-4.1.2.tar.gz” during the make package command.
@RbDev, I will re-test this today for sure.
As the world’s largest open source project on enterprise collaboration, Mattermost depends on input and contributions from thousands of companies and collaborators to develop the platform.
We have heard many requests from our community to add multi-factor authentication support to our Team Edition product. Security is an important value at Mattermost and we acknowledge how this feature supports security measures for organizations of all sizes.
As a result, we’re excited to announce that multi-factor authentication is coming to Team Edition soon! We expect to allow Team Edition administrators to enable this feature in first quarter of 2019 with a target release date of February 16.
To learn more about multi-factor authentication, see our documentation at https://docs.mattermost.com/deployment/auth.html.
Note that multi-factor enforcement is considered an access control policy and hence remains in the Enterprise Edition.
We run mattermost in docker using docker compose. All the settings are variables.
The first setting gets polulated correctly adn uploads are enabled.
- MM_PLUGINSETTINGS_ENABLEUPLOADS=true
Enabling the plugin does not work.
-MM_PLUGINSETTINGS_PLUGINSTATES_COM.GITHUB.MATTERPOLL.MATTERPOLL_ENABLE=true
Any help appreciated.
Hi @RbDev, I tested with a larger file and I’m able to see a progress bar. I’m guessing an improvement / bug fix for this has been included in v1.15.
Hi @larvel,
Can you help share more details on your environment from here as this will help us diagnose the issue: https://docs.mattermost.com/process/support.html#general-questions-for-any-issues? Also any relevant config settings and log errors will be helpful.
Based on the information you provided, it looks like you are attempting to use the Matterpoll plugin? If yes, I also encourage you to join our Matterpoll channel and ping Hanzei
for any questions (he is the maintainer of the Matterpoll plugin).
I want to change Favicon. There is no favicon now.
When searching favicon in this forum, the following topics were selected.
Does the current situation have since changed since then?
Depending on the web browsers I use, when I access Mattermost, the Favicon of my server I use may be set. Even if I can not set my original Favicon, I want to change it to Mattermost favicon at least.
Hello, @alfador.
On top of the documentations shared by @amy.blais, allow me to understand the questions that you have better:
If we can gather more information on these topics from your end, that will be great. Thanks!
Hi there.
As of now, there is no clear steps as to how change the favicon for Mattermost. However, I came across the following lines in the mattermost-server/web/templates/head.html page
<link id="favicon" rel="icon" href="/static/images/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/static/images/favicon.ico" type="image/x-icon">
Perhaps this would be something that we should be looking into?
Thats great news. I’m looking forward for 1.15
Hello, @soethet (and everyone else running mattermost-preview through Docker).
You should be able to access the SQL database through the following commands. For example:
Let me know how it goes. Thanks.
Hi, @alfador.
Quick update here. The plain text should be stored in the Posts table. For example:
mysql> SELECT Message from Posts;
±------------------------------------------------------------------------------------------------------+
| Message |
±------------------------------------------------------------------------------------------------------+
| adanial joined the team. |
| adanial joined the channel. |
| adanial joined the team. |
| adanial joined the channel. |
| adanial joined the team. |
| adanial joined the channel. |
| adanial joined the channel. |
| adanial joined the channel. |
| |
±------------------------------------------------------------------------------------------------------+
9 rows in set (0.00 sec)
Could not paste our docker-compose here, so: https://pastebin.com/RF6VkZGY
This works, except for automatically enabling the plugin upon restart
I have also tried connecting the mattermost server but I have been asked to connect to the server. As I was trying this from my iPhone, so I needed my Apple Id. But I don’t know I was having Error connecting to Apple id server.
How can I connect the mattermost now?
Hi @lilamartin,
Please take a look at this section of our documentation as a first step: https://docs.mattermost.com/mobile/mobile-troubleshoot.html#i-keep-getting-a-message-cannot-connect-to-the-server-please-check-your-server-url-and-internet-connection.
Hello everybody,
the topic is file management.
Can I create my own storage link for attachments on the server? i would like to store my files on my own storage (Files->Storage->File Storage System: not on “Local File System” and not “Amazon S3” )
The problem I have is that I do not want users to be able to download any attachments from external.
Does anyone have experience with such a scenario? Looking forward to answers
thnak you