This repository is community supported and not maintained by Mattermost. Mattermost disclaims liability for integrations, including Third Party Integrations and Mattermost Integrations. Integrations may be modified or discontinued at any time.
Maintainer: @mickmister
Start and join voice calls, video calls and use screen sharing with your team members via Cisco Webex Meetings. (We do not support Cisco Webex Teams)
Once enabled, clicking a meeting icon in a Mattermost channel invites team members to join a Webex meeting, hosted using the credentials of the user who initiated the meeting.
-
Go to Settings --> Plugins --> Upload Plugin. Select the file you downloaded, upload it to the server. In server 5.14+, plugins will automatically be distributed across an Enterprise cluster of Mattermost servers, prior to v5.14 you will need to deploy the plugin on each server manually.
-
Go to settings --> Plugin Management and Enable the Webex Meeting Plugin
Go to Settings --> Scroll down to the Plugins section, and click on Webex Plugin
Insert the Webex Meetings URL for your organization. It is often in the format of <companyname>.my.webex.com
or <companyname>.webex.com
.
Depending on your situation, you will want to disable the URL conversion (known unsupported on some case with Linux clients).
Easily start and join Webex meetings directly from Mattermost
There are two methods to initiate a new Webex Meeting from within Mattermost:
- Clicking the Webex Meeting Button at the top right of the channel
- By typing
/webex start
and pressing 'enter' in a chat window
If you are the meeting organizer and want to start the meeting for other participants, click on the link that is shown below the "Join Meeting" button. This link brings you directly to the meeting and will ask you to login to Webex if you haven't already.
If you are joining a meeting as a participant, you will only see the "Join Meeting" button in your channel. Simply click it to be brought to the Webex meeting.
After initiating a meeting, if you are the organizer - you will see a second link to start the meeting.
/webex <room id>
- Shares a Join Meeting link for the Webex Personal Room meeting that is associated with the specified Personal Room ID, whether it’s your Personal Meeting Room ID or someone else’s.
/webex <@mattermost_username>
- Shares a Join Meeting link for the Webex Personal Room meeting that is associated with that Mattermost team member.
If you type /webex help
in any channel conversation you will be presented with your available options.
In some cases, you may need to configure your Webex username manually. By default, the Webex plugin will use the email address associated with your Mattermost account to setup new meetings. Sometimes, users will use a different email address to login to Webex than they use to login to Mattermost. In this case, you will need to configure the Webex plugin to use the email address associated with your Webex account to setup meetings.
If your email address or username is different between your Webex and Mattermost accounts - you may encounter this error:
No Personal Room link found at <mycompany>.my.webex.com for your userName: bob, or your email: [email protected]. Try setting a room manually with /webex room <room id>.
This error indicates you need to configure your personal room ID.
To use a specific Webex account instead of using your email address from Mattermost - type /webex room <room id>
- where <room id>
is your Webex room ID. Meetings you start will use this ID. This Webex Room ID can be found by:
- Logging in to your Webex account
- On the home screen you will see a URL with a username within it ('camille' highlighted in red here as an example). That username is what you will enter as .
This setting is required only if your Webex account email address is different from your Mattermost account email address, or if the username of your email address does not match your Personal Meeting Room ID or User name on your Webex site.
If anything changes in the future, and your email address with Mattermost and Webex get changed, you can reset the room ID using /webex room-reset
To display your current username settings, simply type /webex info
This plugin contains both a server and web app portion. Read our documentation about the Developer Workflow and Developer Setup for more information about developing and extending plugins.
The version of a plugin is determined at compile time, automatically populating a version
field in the plugin manifest:
- If the current commit matches a tag, the version will match after stripping any leading
v
, e.g.1.3.1
. - Otherwise, the version will combine the nearest tag with
git rev-parse --short HEAD
, e.g.1.3.1+d06e53e1
. - If there is no version tag, an empty version will be combined with the short hash, e.g.
0.0.0+76081421
.
To disable this behaviour, manually populate and maintain the version
field.