You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/comply/compliance-export.rst
+101-22
Original file line number
Diff line number
Diff line change
@@ -8,26 +8,22 @@ Compliance export
8
8
9
9
<pclass="mm-label-note">Also available in legacy Mattermost Enterprise Edition E20</p>
10
10
11
-
Enterprise deployments with a requirement to archive history beyond the data retention period can export compliance reports to third-party systems. Integration with Actiance Vantage, Global Relay, and Proofpoint are currently supported.
11
+
Mattermost Enterprise customers can archive history or transfer message data to third-party systems for auditing and compliance purposes with compliance exports. Supported integrations include `Actiance Vantage<#actiance-xml>`__, `Global Relay<#global-relay-eml>`__, and `Proofpoint <#proofpoint>`__.
12
12
13
-
By default, Mattermost stores all message history, providing an unlimited search history to admins and end users. In Mattermost Enterprise, you may set a :doc:`custom data retention policy </comply/data-retention-policy>` for how long messages and file uploads are kept in Mattermost channels and direct messages.
13
+
From Mattermost v10.5, compliance exports include performance improvements for large daily data sets with changes affecting output formats, system performance, and logic. Compliance exports provide compliance teams complete information to reconstruct the state of a channel, and to determine who had visibility on an initial message, or when the message was edited or deleted. Compliance teams can track a message by its MessageId as it is edited or deleted, and across batches and exports periods.
14
14
15
-
Compliance exports are produced from the System Console, containing all messages including:
15
+
Overview
16
+
---------
17
+
18
+
Compliance exports are produced from the System Console, and contain all messages including:
16
19
17
20
- Messages sent in direct message channels
18
21
- File uploads
19
22
- Posts from plugins
20
23
- Posts from bots/webhooks
21
24
22
-
Exports include information on channel member history at the time the message was posted.
23
-
24
-
- Entries for deleted messages and files are included in CSV and Actiance reports. The deleted content is included in the compliance export.
25
-
- Global Relay reports include file deletion entries but message deletion entries are excluded.
25
+
Exports include information on channel member history at the time the message was posted.
26
26
27
-
.. note::
28
-
29
-
This feature replaces legacy Compliance Reporting Oversight functionality. We recommend migrating to the new system. For a sample CSV output of the new compliance export system, `download a CSV export file here <https://github.com/mattermost/docs/blob/master/source/samples/csv_export.zip>`__.
30
-
31
27
Set up guide
32
28
------------
33
29
@@ -44,13 +40,52 @@ CSV
44
40
45
41
1. Go to **System Console > Compliance > Compliance Export**.
46
42
2. Set **Enable Compliance Exports** to **true**.
47
-
3. Set the **Compliance Export time**. This is the start time of the daily scheduled compliance export job and must be a 24-hour time stamp in the form HH:MM. Choose a time when fewer people are using your system.
43
+
3. Set the **Compliance Export time**. This is the start time of the daily scheduled compliance export job and must be a 24-hour time stamp in the form ``HH:MM``. Choose a time when fewer people are using your system.
48
44
4. Set the export file format to **CSV**.
49
45
5. Select **Save**.
50
46
51
-
The daily compliance export job creates a zip file with a unique job identifier of all messages posted in the last 24 hours. You can unzip the file to easily transform the default ``.csv`` format into a desired format for your third-party archive system.
47
+
.. tab:: From Mattermost v10.5
48
+
49
+
You can review export job status in the System Console.
50
+
51
+
When the daily compliance export job is finished, a parent directory is created named based on when the export was started and the ``startTimestamp`` and ``endTimestamp`` of the export, e.g, ``compliance-export-2024-08-13-05h08m-1723105062492-1723109100075``. That parent directory contains 1 zip file for each batch, named based on the batch number and the start and end timestamps of the messages in that batch, e.g, ``batch001-1723105062492-1723106622163.zip``. Each zip file contains the same information available in previous Mattermost server releases.
52
+
53
+
Working from the same example above, the directory would look like this:
For a sample CSV output, `download a CSV export file here <https://github.com/mattermost/docs/blob/master/source/samples/csv_export.zip>`__.
64
+
.. code-block:: bash
65
+
66
+
batch001-1723105062492-1723106622163.zip
67
+
├── files
68
+
├── metadata.json
69
+
└── actiance_export.xml
70
+
71
+
**Updated CSV export fields**
72
+
73
+
**Post Creation Time** is always the ``CreateAt`` for messages and attachments, or ``JoinTime`` and ``LeaveTime`` for participant join and leave events, respectively.
74
+
75
+
- **Update Time** indicates that the message has been updated, and this is the ``updateAt`` time.
76
+
- **Updated Type** helps differentiate what kind of update it was as one of the following:
77
+
78
+
- **EditedNewMsg** indicates that the message has been edited, and this is the new message (post-edit) content.
79
+
- **EditedOriginalMsg** indicates that the message has been edited, and this the original message (pre-edit) content. This message will have another field ``EditedNewMsgId``, which is the Id of the message which holds the post-edited message contents.
80
+
- **UpdatedNoMsgChange** indicates that message's content hasn't changed, but the post was updated for some reason, such as reaction, replied-to, a reply was edited, or a reply was deleted.
81
+
- **Deleted** indicates that this message was deleted.
82
+
- **FileDeleted** indicates that this message is recording that a file was deleted.
83
+
84
+
.. tab:: Prior to Mattermost v10.5
85
+
86
+
The daily compliance export job creates a ``.zip`` file with a unique job identifier of all messages posted in the last 24 hours. You can unzip the file to easily transform the default ``.csv`` format into a desired format for your third-party archive system.
87
+
88
+
For a sample CSV output, `download a CSV export file here <https://github.com/mattermost/docs/blob/master/source/samples/csv_export.zip>`__.
54
89
55
90
Actiance XML
56
91
~~~~~~~~~~~~
@@ -61,15 +96,57 @@ Actiance XML
61
96
4. Set the export file format to **Actiance XML**.
62
97
5. Select **Save**.
63
98
64
-
The daily compliance export job creates a ``.zip`` file with a unique job identifier of all messages posted in the last 24 hours. Once you've selected Actiance XML as your file format, you can set up an integration with Actiance Vantage archive system. For a sample Actiance output, `download an Actiance XML export file here <https://github.com/mattermost/docs/blob/master/source/samples/actiance_export.xml>`__.
65
-
66
99
.. note::
67
-
100
+
68
101
In Actiance XML exports, channel type is prepended to the channel names.
69
102
103
+
.. tab:: From Mattermost v10.5
104
+
105
+
You can review export job status in the System Console. Once you've selected Actiance XML as your file format, you can set up an integration with Actiance Vantage archive system.
106
+
107
+
When the daily compliance export job is finished, a parent directory is created named based on when the export was started and the ``startTimestamp`` and ``endTimestamp`` of the export, e.g, ``compliance-export-2024-08-13-05h08m-1723105062492-1723109100075``. That parent directory contains 1 zip file for each batch, named based on the batch number and the start and end timestamps of the messages in that batch, e.g, ``batch001-1723105062492-1723106622163.zip``. Each zip file contains the same information available in previous Mattermost server releases.
108
+
109
+
Working from the same example above, the directory would look like this:
If an XML field is empty, it won't be exported. This is a change from previous Mattermost releases, where empty XML nodes were exported.
129
+
130
+
- ``MessageId`` is the unique ``messageId``.
131
+
- ``DateTimeUTC`` is always the post's ``CreateAt`` time.
132
+
- ``UpdatedDateTimeUTC`` indicates that the message has been updated, and this is the ``updateAt`` time.
133
+
- ``UpdatedType`` helps differentiate what kind of update it was, including:
134
+
135
+
- ``EditedNewMsg`` indicates that this message has been edited, and this is the new message (post-edit) content.
136
+
- ``EditedOriginalMsg`` indicates that this message has been edited, and this the original message (pre-edit) content. This message will have another field ``EditedNewMsgId``, which is the Id of the message which holds the post-edited message contents.
137
+
- ``UpdatedNoMsgChange`` indicates that this message's content hasn't changed, but the post was updated for some reason, such as a reaction, replied-to, a reply was edited, or a reply was deleted.
138
+
- ``Deleted`` indicates that the message was deleted.
139
+
- ``FileDeleted`` indicates that the message is recording that a file was deleted.
140
+
141
+
.. tab:: Prior to Mattermost v10.5
142
+
143
+
The daily compliance export job creates a ``.zip`` file with a unique job identifier of all messages posted in the last 24 hours. Once you've selected Actiance XML as your file format, you can set up an integration with Actiance Vantage archive system. For a sample Actiance output, `download an Actiance XML export file here <https://github.com/mattermost/docs/blob/master/source/samples/actiance_export.xml>`__.
144
+
70
145
Global Relay EML
71
146
~~~~~~~~~~~~~~~~
72
147
148
+
For more information on Global Relay archive system, visit `their website <https://www.globalrelay.com/>`_.
149
+
73
150
1. Go to **System Console > Compliance > Compliance Export**.
74
151
2. Set **Enable Compliance Export** to **true**.
75
152
3. Set the **Compliance Export time**. This is the start time of the daily scheduled compliance export job and must be a 24-hour time stamp in the form HH:MM. Choose a time when fewer people are using your system.
@@ -80,13 +157,11 @@ Global Relay EML
80
157
- For a **Custom** type, set the **Global Relay SMTP username**, **Global Relay SMTP password**, **Global Relay SMTP email address**, **SMTP Server Name**, and the **SMTP Server Port**, provided by Global Relay. **Custom** type can be used to integrate with Proofpoint.
81
158
6. Select **Save**.
82
159
83
-
Once you've selected Global Relay EML as your file format, you can set up an integration with Global Relay archive system. For more information, see `Global Relay Archive <https://www.globalrelay.com/products/archive-data-compliance/>`_.
84
-
85
160
.. note::
86
161
87
162
Messages larger than 250 MB will have their attachments removed because they are too large to send to Global Relay. An error is added to the server logs with id ``global_relay_attachments_removed``. It includes the post ID the attachments were removed from, as well as the attachment IDs. A `ticket is queued to better handle large messages <https://mattermost.atlassian.net/browse/MM-10038>`__.
88
163
89
-
For more information on Global Relay archive system, see `their homepage <https://www.globalrelay.com/>`__.
164
+
Once you've selected Global Relay EML as your file format, you can set up an integration with Global Relay archive system. For more information, see `Global Relay Archive <https://www.globalrelay.com/products/archive-data-compliance/>`_.
90
165
91
166
Proofpoint
92
167
~~~~~~~~~~~
@@ -95,11 +170,11 @@ Proofpoint
95
170
2. Set **Enable Compliance Export** to **true**.
96
171
3. Set the **Compliance Export time**. This is the start time of the daily scheduled compliance export job and must be a 24-hour time stamp in the form HH:MM. Choose a time when fewer people are using your system.
97
172
4. Set the **Export Format** to **GlobalRelay EML**.
98
-
5. Select **Custom** for the **Global Relay Customer Account** to integrate with Proofpoint.
173
+
5. Select **Custom** for the **Global Relay Customer Account** to integrate with Proofpoint.
99
174
6. Set the **SMTP username**, **SMTP password**, **SMTP email address**, **SMTP Server Name**, and the **SMTP Server Port**, provided by Proofpoint.
100
175
7. Select **Save**.
101
176
102
-
Now you can set up an integration with the Proofpoint archive system. For more information, see `Proofpoint Archive <https://www.proofpoint.com/us/products/archiving-and-compliance/archive>`__.
177
+
See the `Global Relay <#global-relay-eml>`__ section for details on updated Global Relay export fields. Now you can set up an integration with the Proofpoint archive system. For more information, visit the `Proofpoint Archive webiste<https://www.proofpoint.com/us/products/archiving-and-compliance/archive>`__.
103
178
104
179
Frequently Asked Questions (FAQ)
105
180
--------------------------------
@@ -129,3 +204,7 @@ How do I know if a compliance export job fails?
129
204
Mattermost provides the status of each compliance export job in **System Console > Compliance > Compliance Export**. Here, you can see if the job succeeded or failed, including the number of messages and files exported.
130
205
131
206
In addition, any failures are returned in the server logs for self-hosted deployments. The error log begins with the string ``Failed job`` and includes a ``job_id key/value`` pair. Compliance export job failures are identified with worker name ``MessageExportWorker``. You can optionally create a script that programmatically queries for such failures and notifies the appropriate system.
207
+
208
+
.. note::
209
+
210
+
This compliance export feature replaces legacy Compliance Reporting Oversight functionality. We recommend Enterprise customers migrate to the new system. For a sample CSV output of the new compliance export system, `download a CSV export file here <https://github.com/mattermost/docs/blob/master/source/samples/csv_export.zip>`__.
0 commit comments