-
Notifications
You must be signed in to change notification settings - Fork 599
/
Copy pathconf.py
4121 lines (4025 loc) · 281 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Mattermost documentation configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
import sys
import os
from sphinx.application import Sphinx
def setup(_: Sphinx):
return
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath("../extensions"))
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
needs_sphinx = "7.2"
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
"sphinx.ext.autosectionlabel",
"myst_parser",
"sphinxcontrib.mermaid",
# `reredirects` is a local clone of sphinx_reredirects with parallel
# read and write support enabled.
# The original sphinx_reredirects extension can be found at:
# https://documatt.gitlab.io/sphinx-reredirects/
"reredirects",
# `sitemap` is a local clone of sphinx_sitemap with parallel read
# and write support enabled.
# The original sphinx_sitemap extension can be found at:
# https://pypi.org/project/sphinx-sitemap/
"sitemap",
"sphinx_copybutton",
"compass-icons",
"config-setting-v2",
"sphinx_inline_tabs"
]
sphinx_tabs_disable_tab_closing = True
sphinx_tabs_disable_css_loading = False
myst_enable_extensions = ["colon_fence"]
myst_heading_anchors = 3
# Suppress particular classes of warnings
suppress_warnings = ["myst.xref_missing", "myst.header", "autosectionlabel"]
# Prefix document path to section labels, otherwise autogenerated labels would look like 'heading'
# rather than 'path/to/file:heading'
autosectionlabel_prefix_document = True
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
source_suffix = [".rst", ".md"]
# The encoding of source files.
# source_encoding = 'utf-8-sig'
# -- Page redirects -------------------------------------------------
# If `redirects_baseurl` is non-empty and the target of a redirect begins
# with that value, the value of `html_baseurl` will replace that of
# `redirects_baseurl`. The target will not be affected if `redirects_baseurl`
# and `html_baseurl` have the same value.
redirects_baseurl = "https://docs.mattermost.com/"
# A redirect option which, when True, will write one extensionless page (i.e. without the .html extension)
# for each redirect page that was written. This enables redirects for pages where the .html extension was not
# specified in the URL and the underlying web server doesn't attempt to add .html when resolving the location
# of the resource to send.
redirects_write_extensionless_pages = False
# A map of page redirects from doc to HTTPS link
redirects = {
# How to add redirects for docs.mattermost.com:
# A redirect is required when an existing product documentation page is moved to a new sub-directory, to another information site altogether, OR when the file # is archived because it's no longer needed. Redirects defined here ensure that existing links to these changed pages take the user to the correct destination # page. Many of the links below are the result of the information architecture overhaul completed in FY22 Q2.
# All redirects in the following are organized alphabetically for easy scanning and management based on the origin URL (the URL to the left of the colon).
# Please take care to ensure that alphabetical order is maintained as new redirects are added. See a mistake? Please feel free to fix it!
# Before adding a new redirect, please search to confirm that the redirect you want isn't already specified below.
# Add the new redirect in the appropriate section, based on its path.
# For page heading redirects, use the format "directory/filename.html": "full-URL-path-to-new-destination.html",
# For mid-page redirects (also known as section title redirects), use the format "directory/filename.html#section-title": "full-URL-path-to-new-destination.html",
# Ensure that all redirects end in a comma, except for the very last redirect.
# About redirects
"about/license-and-subscription.html#do-you-have-a-program-for-official-non-profits-open-source-projects-and-charities":
"https://docs.mattermost.com/about/subscription.html#mattermost-nonprofit-license-program",
"about/deployments-and-editions.html":
"https://docs.mattermost.com/about/editions-and-offerings.html",
"about/faq-business.html#copyright-and-licensing-of-mattermost-server-open-source-code":
"https://docs.mattermost.com/about/faq-license.html#open-source-derivative-work-of-mattermost",
"about/faq-enterprise.html#what-are-mattermost-s-policies-around-licensing-terms-of-use-and-privacy":
"https://docs.mattermost.com/about/faq-license.html#what-are-mattermost-s-policies-around-licensing-terms-of-use-and-privacy",
"about/faq-mattermost-source-available-license.html":
"https://docs.mattermost.com/about/faq-license.html#source-available-licensing",
"about/mattermost-customizable-chatgpt-bot-framework.html":
"https://github.com/mattermost/openops#readme",
"about/mattermost-customizable-ai-bot-framework.html":
"https://github.com/mattermost/openops#readme",
"about/install-mattermost-app-in-microsoft-teams.html":
"https://docs.mattermost.com/integrate/microsoft-teams-interoperability.html",
"about/mattermost-google-calendar-integration.html":
"https://github.com/mattermost/mattermost-plugin-google-calendar/blob/master/README.md",
"about/setup-mattermost-google-calendar-plugin.html":
"https://github.com/mattermost/mattermost-plugin-google-calendar/blob/master/README.md",
"about/embed-mattermost-app-within-microsoft-teams.html":
"https://docs.mattermost.com/integrate/microsoft-teams-interoperability.html",
"about/cloud-subscriptions.html#buy-a-cloud-subscription":
"https://docs.mattermost.com/about/cloud-subscriptions.html",
"about/cloud-subscriptions.html#view-subscription-information":
"https://docs.mattermost.com/about/cloud-subscriptions.html",
"about/cloud-subscriptions.html#renew-your-subscription":
"https://docs.mattermost.com/about/cloud-subscriptions.html",
"about/subscription.html#mattermost-enterprise-cloud":
"https://docs.mattermost.com/about/cloud-subscriptions.html",
"about/mattermost-for-microsoft-teams.html":
"https://docs.mattermost.com/about/maximize-microsoft-investment.html",
"about/install-mattermost-for-microsoft-teams-plugin.html":
"https://docs.mattermost.com/integrate/microsoft-teams-interoperability.html",
"about/orchestration.html":
"https://docs.mattermost.com/about/use-cases.html",
# Administration redirects
"administration/announcement-banner.html":
"https://docs.mattermost.com/manage/system-wide-notifications.html",
"administration/audit-log.html":
"https://docs.mattermost.com/comply/audit-log.html",
"administration/backup.html":
"https://docs.mattermost.com/deploy/backup-disaster-recovery.html",
"administration/branding.html":
"https://docs.mattermost.com/configure/custom-branding-tools.html",
"administration/bulk-export.html":
"https://docs.mattermost.com/manage/bulk-export-tool.html",
"administration/changelog.html":
"https://docs.mattermost.com/about/mattermost-server-releases.html",
"administration/command-line-tools.html":
"https://docs.mattermost.com/manage/command-line-tools.html",
"administration/command-line-tools.html#mattermost-user-delete":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-user-delete",
"administration/command-line-tools.html#mattermost-channel-restore":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-channel-restore",
"administration/command-line-tools.html#mattermost-permissions-reset":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-permissions-reset",
"administration/command-line-tools.html#mattermost-permissions-export":
"https://api.mattermost.com/#tag/roles/operation/GetAllRoles",
"administration/command-line-tools.html#mattermost-permissions-import":
"https://docs.mattermost.com/manage/command-line-tools.html#mattermost-permissions-import",
"administration/command-line-tools.html#mattermost-group-team-list":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-group-team-list",
"administration/command-line-tools.html#mattermost-group-team-enable":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-group-team-enable",
"administration/command-line-tools.html#mattermost-group-channel-enable":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-group-channel-enable",
"administration/command-line-tools.html#mattermost-group-team-disable":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-group-team-disable",
"administration/command-line-tools.html#mattermost-group-channel-disable":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-group-channel-disable",
"administration/command-line-tools.html#mattermost-ldap-idmigrate":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-ldap-idmigrate",
"administration/command-line-tools.html#platform-channel-move":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-channel-move",
"administration/compliance.html":
"https://docs.mattermost.com/comply/compliance-monitoring.html",
"administration/compliance-export.html":
"https://docs.mattermost.com/comply/compliance-export.html",
"administration/config-in-database.html":
"https://docs.mattermost.com/configure/configuration-in-your-database.html",
"administration/config-in-database.html#configuration-in-a-database.html":
"https://docs.mattermost.com/configure/configuration-in-your-database.html",
"administration/config-in-database.html#configuration-in-the-mattermost-database":
"https://docs.mattermost.com/configure/configuration-in-your-database.html",
"administration/config-settings.html#enable-hardened-mode-experimental":
"https://docs.mattermost.com/configure/experimental-configuration-settings.html#enable-hardened-mode",
"administration/data-retention.html":
"https://docs.mattermost.com/comply/data-retention-policy.html",
"administration/devops-command-center.html":
"https://docs.mattermost.com/guides/playbooks.html",
"administration/downgrade.html":
"https://docs.mattermost.com/upgrade/downgrading-mattermost-server.html",
"administration/ediscovery.html#mattermost-restful-api":
"https://docs.mattermost.com/comply/electronic-discovery.html#mattermost-restful-api",
"administration/ediscovery.html#mattermost-database":
"https://docs.mattermost.com/comply/electronic-discovery.html#mattermost-database",
"administration/ediscovery.html":
"https://docs.mattermost.com/comply/electronic-discovery.html",
"administration/encryption.html":
"https://docs.mattermost.com/deploy/encryption-options.html",
"administration/extended-support-release.html":
"https://docs.mattermost.com/about/release-policy.html#extended-support-releases",
"administration/generating-support-packet.html":
"https://docs.mattermost.com/manage/generating-support-packet.html",
"administration/health-check.html":
"https://docs.mattermost.com/manage/health-checks.html",
"administration/hipchat-migration-guidelines.html":
"https://docs.mattermost.com/onboard/migrating-from-hipchat-to-mattermost.html",
"administration/image-proxy.html":
"https://docs.mattermost.com/deploy/image-proxy.html",
"administration/important-upgrade-notes.html":
"https://docs.mattermost.com/upgrade/important-upgrade-notes.html",
"administration/legacy-upgrade.html":
"https://docs.mattermost.com/guides/deployment.html#upgrade-mattermost",
"administration/light-install-hindi.html":
"https://docs.mattermost.com/guides/deployment.html",
"administration/migrating.html#migrating-from-slack-using-the-mattermost-mmetl-tool-and-bulk-import":
"https://docs.mattermost.com/onboard/migrating.html#migrating-from-slack-using-the-mattermost-mmetl-tool-and-bulk-import",
"administration/migrating.html#migrating-from-slack-using-the-mattermost-web-app":
"https://docs.mattermost.com/onboard/migrating.html#migrating-from-slack-using-the-mattermost-web-app",
"administration/migrating.html#migrating-from-slack-using-the-mattermost-mmetl-tool-and-bulk-import":
"https://docs.mattermost.com/onboard/migrating-to-mattermost.html#migrating-from-slack-using-the-mattermost-mmetl-tool-and-bulk-import",
"administration/migrating.html":
"https://docs.mattermost.com/onboard/migrating-to-mattermost.html",
"administration/migration-announcement-email-template.html":
"https://docs.mattermost.com/onboard/migration-announcement-email.html",
"administration/mmctl-cli-tool.html":
"https://docs.mattermost.com/manage/mmctl-cli-tool.html",
"administration/mmctl-cli-tool.html#mmctl-channel-modify":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-channel-modify",
"administration/mmctl-cli-tool.html#mmctl-user-reset-password":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-user-reset-password",
"administration/mobile-changelog.html":
"https://docs.mattermost.com/about/mobile-app-changelog.html",
"administration/notices.html":
"https://docs.mattermost.com/manage/in-product-notices.html",
"administration/open-source-components.html":
"https://docs.mattermost.com/upgrade/open-source-components.html",
"administration/performance-alerting-guide.html":
"https://docs.mattermost.com/scale/peformance-alerting.html",
"administration/performance-alerting-guide":
"https://docs.mattermost.com/scale/deploy-prometheus-grafana-for-performance-monitoring.html",
"administration/plugins.html":
"https://developers.mattermost.com/integrate/admin-guide/admin-plugins-beta/",
"administration/prev-config-settings.html":
"https://docs.mattermost.com/configure/configuration-settings.html",
"administration/release-definitions.html":
"https://docs.mattermost.com/guides/release-definitions.html",
"administration/releases-lifecycle.html":
"https://docs.mattermost.com/about/releases-lifecycle.html",
"administration/scripts.html":
"https://docs.mattermost.com/manage/scripts.html",
"administration/statistics.html":
"https://docs.mattermost.com/manage/statistics.html",
"administration/telemetry.html":
"https://docs.mattermost.com/manage/telemetry.html",
"administration/telemetry.html":
"https://docs.mattermost.com/manage/telemetry.html",
"administration/upgrade.html":
"https://docs.mattermost.com/upgrade/upgrading-mattermost-server.html",
"administration/upgrade.html#upgrade-team-edition-to-enterprise-edition":
"https://docs.mattermost.com/upgrade/upgrading-mattermost-server.html#upgrading-team-edition-to-enterprise-edition",
"administration/upgrade-guide.html":
"https://docs.mattermost.com/guides/deployment.html#upgrade-mattermost",
"administration/upgrading-to-2.0.html":
"https://docs.mattermost.com/guides/deployment.html#upgrade-mattermost",
"administration/upgrading-to-3.0.html":
"https://docs.mattermost.com/guides/deployment.html#upgrade-mattermost",
"administration/user-provisioning.html":
"https://docs.mattermost.com/onboard/user-provisioning-workflows.html",
"administration/config-in-database.html#create-an-environment-file":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#enable-public-channel-creation-for",
"administration/config-settings.html":
"https://docs.mattermost.com/configure/configuration-settings.html",
"administration/config-settings.html#aggregate-search-indexes":
"https://docs.mattermost.com/configure/configuration-settings.html#aggregate-search-indexes",
"administration/config-settings.html#allow-users-to-view-archived-channels-beta":
"https://docs.mattermost.com/configure/configuration-settings.html#allow-users-to-view-archived-channels",
"administration/config-settings.html#autoclose-direct-messages-in-sidebar-experimental":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#autoclose-direct-messages-in-sidebar",
"administration/config-settings.html#ad-ldap":
"https://docs.mattermost.com/configure/configuration-settings.html#ad-ldap",
"administration/config-in-database.html":
"https://docs.mattermost.com/configure/configuration-in-your-database.html",
"administration/config-settings.html#customization":
"https://docs.mattermost.com/configure/configuration-settings.html#customization",
"administration/config-settings.html#default-channels-experimental":
"https://docs.mattermost.com/configure/configuration-settings.html#default-channels-experimental",
"administration/config-settings.html#deprecated-configuration-settings":
"https://docs.mattermost.com/configure/configuration-settings.html#deprecated-configuration-settings",
"administration/config-settings.html#data-retention-policy":
"https://docs.mattermost.com/configure/configuration-settings.html#data-retention-policy",
"administration/config-settings.html#enable-automatic-replies-experimental":
"https://docs.mattermost.com/configure/configuration-settings.html#enable-automatic-replies-experimental",
"administration/config-settings.html#enable-document-search-by-content":
"https://docs.mattermost.com/configure/configuration-settings.html#enable-document-search-by-content",
"administration/config-settings.html#enable-high-availability-mode":
"https://docs.mattermost.com/configure/configuration-settings.html#enable-high-availability-mode",
"administration/config-settings.html#enable-legacy-sidebar":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#enable-legacy-sidebar",
"administration/config-settings.html#enable-link-previews":
"https://docs.mattermost.com/configure/configuration-settings.html#enable-link-previews",
"administration/config-settings.html#enable-local-mode":
"https://docs.mattermost.com/configure/configuration-settings.html#enable-local-mode",
"administration/config-settings.html#enable-local-mode-socket-location":
"https://docs.mattermost.com/configure/configuration-settings.html#enable-local-mode-socket-location",
"administration/config-settings.html#enable-public-channel-renaming-for":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#enable-public-channel-renaming-for",
"administration/config-settings.html#enable-public-channel-creation-for":
"https://docs.mattermost.com/configure/configuration-settings.html#enable-public-channel-creation-for",
"administration/config-settings.html#enable-users-to-open-direct-message-channels-with":
"https://docs.mattermost.com/configure/site-configuration-settings.html#enable-users-to-open-direct-message-channels-with",
"administration/config-settings.html#enable-x-to-leave-channels-from-left-hand-sidebar-experimental":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#enable-x-to-leave-channels-from-left-hand-sidebar",
"administration/config-settings.html#environment":
"https://docs.mattermost.com/configure/configuration-settings.html#environment-variables",
"administration/config-settings.html#experimental-sidebar-features":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#experimental-sidebar-features",
"administration/config-settings.html#files":
"https://docs.mattermost.com/configure/configuration-settings.html#file-storage",
"administration/config-settings.html#forward-port-80-to-443":
"https://docs.mattermost.com/configure/configuration-settings.html#forward-port-80-to-443",
"administration/config-settings.html#gitlab-settings":
"https://docs.mattermost.com/configure/configuration-settings.html#gitlab-settings",
"administration/config-settings.html#google-settings":
"https://docs.mattermost.com/configure/configuration-settings.html#google-settings",
"administration/config-settings.html#group-unread-channels-experimental":
"https://docs.mattermost.com/configure/configuration-settings.html#group-unread-channels-experimental",
"administration/config-settings.html#id-attribute":
"https://docs.mattermost.com/configure/configuration-settings.html#id-attribute",
"administration/config-settings.html#link-previews":
"https://docs.mattermost.com/configure/configuration-settings.html#enable-link-previews",
"administration/config-settings.html#logging":
"https://docs.mattermost.com/configure/configuration-settings.html#standard-logging",
"administration/config-settings.html#login-id-attribute":
"https://docs.mattermost.com/configure/configuration-settings.html#login-id-attribute",
"administration/config-settings.html#maximum-file-size":
"https://docs.mattermost.com/configure/configuration-settings.html#maximum-file-size",
"administration/config-settings.html#maximum-page-size":
"https://docs.mattermost.com/configure/configuration-settings.html#maximum-page-size",
"administration/config-settings.html#office-365-settings":
"https://docs.mattermost.com/configure/configuration-settings.html#office-365-settings",
"administration/config-settings.html#openid-connect-other-settings":
"https://docs.mattermost.com/configure/configuration-settings.html#openid-connect-other-settings",
"administration/config-settings.html#policy":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#policy",
"administration/config-settings#post-edit-time-limit.html":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#post-edit-time-limit",
"administration/config-settings.html#push-notification-contents":
"https://docs.mattermost.com/configure/configuration-settings.html#push-notification-contents",
"administration/config-settings.html#rate-limiting":
"https://docs.mattermost.com/configure/configuration-settings.html#rate-limiting",
"administration/config-settings.html#session-lengths":
"https://docs.mattermost.com/configure/configuration-settings.html#session-lengths",
"administration/config-settings.html#sidebar-organization":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#sidebar-organization",
"administration/config-settings#site-configuration.html":
"https://docs.mattermost.com/configure/configuration-settings.html#site-configuration",
"administration/config-settings.html#site-url":
"https://docs.mattermost.com/configure/configuration-settings.html#site-url",
"administration/config-settings.html#smtp-email-server":
"https://docs.mattermost.com/configure/configuration-settings.html#smtp-email-server",
"administration/config-settings#storage.html":
"https://docs.mattermost.com/configure/configuration-settings.html#local-storage-directory",
"administration/config-settings.html#teammate-name-display":
"https://docs.mattermost.com/configure/configuration-settings.html#teammate-name-display",
"administration/config-settings.html#timezone":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#timezone",
"administration/config-settings.html#town-square-is-hidden-in-left-hand-sidebar-experimental":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#town-square-is-hidden-in-left-hand-sidebar",
"administration/config-settings.html#town-square-is-read-only-experimental":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#town-square-is-read-only",
"administration/config-settings.html#user-filter":
"https://docs.mattermost.com/configure/configuration-settings.html#user-filter",
"administration/command-line-tools.html#mattermost-user-migrate-auth":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-user-migrate-auth",
"administration/config-settings.html#id76":
"https://docs.mattermost.com/configure/site-configuration-settings.html#file-sharing-and-downloads",
"administration/config-settings.html#allow-untrusted-internal-connections-to":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#allow-untrusted-internal-connections",
"administration/command-line-tools.html#mattermost-channel-delete":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-channel-delete",
"administration/mmctl-cli-tool.html#mmctl-channel-delete":
"https://docs.mattermost.com/manage/mmctl-command-line-tool.html#mmctl-channel-delete",
"administration/version-archive.html":
"https://docs.mattermost.com/about/version-archive.html",
"administration/mmctl-cli-tool.html#local-mode":
"https://docs.mattermost.com/configure/experimental-configuration-settings.html#enable-local-mode-for-mmctl",
"administration/upgrade.html#upgrade-guide":
"https://docs.mattermost.com/guides/upgrade-mattermost.html",
# Boards redirects
"boards/navigating-mattermost-boards.html":
"https://docs.mattermost.com/welcome/what-changed-in-v60.html",
# Important Note: The following guide files were reorg'd in FY23 Q3.
"boards/work-with-boards.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/boards-settings.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/calculations.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-boards.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/groups-filter-sort.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/migrate-to-boards.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/navigate-boards.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/overview.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/share-and-collaborate.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-boards.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-views.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/overview.html#what-s-a-board":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/overview.html#what-s-a-card":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/overview.html#access-your-boards":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/overview.html#focalboard-personal-server":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-boards.html#add-new-boards":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-boards.html#choose-a-board-template":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-boards.html#edit-board-templates":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#card-descriptions":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#card-properties":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#add-properties":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#rename-a-property":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#change-a-property-type":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#delete-a-property":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#define-a-select-or-multi-select-property":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#toggle-properties-shown-on-a-board":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#attach-files":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#card-badges":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#comment-on-a-card":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#mention-people":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#receive-updates":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#search-cards":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-cards.html#card-templates":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-views.html#board-view":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-views.html#table-view":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-views.html#gallery-view":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/work-with-views.html#calendar-view":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/groups-filter-sort.html#group-cards":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/groups-filter-sort.html#filters":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/groups-filter-sort.html#sorting-cards":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/share-and-collaborate.html#board-permissions":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/share-and-collaborate.html#roles":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/share-and-collaborate.html#guest-accounts":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/share-and-collaborate.html#share-a-board":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/share-and-collaborate.html#share-cards-on-channels":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/migrate-to-boards.html#import-and-export-a-board-archive":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/migrate-to-boards.html#export-to-csv":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/migrate-to-boards.html#import-and-export-from-other-applications":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/migrate-to-boards.html#import-from-asana":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/migrate-to-boards.html#import-from-notion":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/migrate-to-boards.html#import-from-jira":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/migrate-to-boards.html#import-from-trello":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/migrate-to-boards.html#import-from-todoist":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/navigate-boards.html#link-a-board-to-a-channel":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/navigate-boards.html#unlink-a-board-from-a-channel":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/navigate-boards.html#sidebar-categories":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/navigate-boards.html#drag-and-drop":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/navigate-boards.html#manage-boards-on-the-sidebar":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/navigate-boards.html#find-a-board":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/navigate-boards.html#team-sidebar":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/boards-settings.html#set-language":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/boards-settings.html#random-emoji-icons":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/boards-settings.html#product-tour":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
"boards/get-started-with-boards.html":
"https://github.com/mattermost/focalboard/blob/main/docs/focalboard-plugin-end-user-guide.md",
# Channels redirects
"channels/find-channels.html":
"https://docs.mattermost.com/channels/browse-channels.html",
"channels/sign-in.html":
"https://docs.mattermost.com/collaborate/access-your-workspace.html",
"channels/organize-conversations.html#enable-collapsed-reply-threads-beta":
"https://docs.mattermost.com/collaborate/organize-conversations.html#enable-threaded-discussions",
# Important Note: The following guide files were reorg'd in FY23 Q3.
"channels/channel-types.html":
"https://docs.mattermost.com/collaborate/channel-types.html",
"channels/create-channels.html":
"https://docs.mattermost.com/collaborate/create-channels.html",
"channels/channel-naming-conventions.html":
"https://docs.mattermost.com/collaborate/channel-naming-conventions.html",
"channels/rename-channels.html":
"https://docs.mattermost.com/collaborate/rename-channels.html",
"channels/convert-public-channels.html":
"https://docs.mattermost.com/collaborate/convert-public-channels.html",
"channels/join-leave-channels.html":
"https://docs.mattermost.com/collaborate/join-leave-channels.html",
"channels/make-calls.html":
"https://docs.mattermost.com/collaborate/make-calls.html",
"channels/manage-channel-members.html":
"https://docs.mattermost.com/collaborate/manage-channel-members.html",
"channels/browse-channels.html":
"https://docs.mattermost.com/collaborate/browse-channels.html",
"channels/navigate-between-channels.html":
"https://docs.mattermost.com/collaborate/navigate-between-channels.html",
"channels/favorite-channels.html":
"https://docs.mattermost.com/collaborate/favorite-channels.html",
"channels/mark-channels-unread.html":
"https://docs.mattermost.com/collaborate/mark-channels-unread.html",
"channels/customize-your-channel-sidebar.html":
"https://docs.mattermost.com/preferences/customize-your-channel-sidebar.html",
"channels/archive-unarchive-channels.html":
"https://docs.mattermost.com/collaborate/archive-unarchive-channels.html",
"channels/set-channel-preferences.html":
"https://docs.mattermost.com/guides/preferences.html",
"channels/channels-settings.html":
"https://docs.mattermost.com/guides/preferences.html",
"channels/interact-with-channels.html":
"https://docs.mattermost.com/collaborate/run-slash-commands.html",
"channels/send-messages.html":
"https://docs.mattermost.com/collaborate/send-messages.html",
"channels/message-priority.html":
"https://docs.mattermost.com/collaborate/message-priority.html",
"channels/reply-to-messages.html":
"https://docs.mattermost.com/collaborate/reply-to-messages.html",
"channels/organize-conversations.html":
"https://docs.mattermost.com/collaborate/organize-conversations.html",
"channels/react-to-messages.html":
"https://docs.mattermost.com/collaborate/react-with-emojis-gifs.html",
"channels/mention-people.html":
"https://docs.mattermost.com/collaborate/mention-people.html",
"channels/mark-messages-unread.html":
"https://docs.mattermost.com/collaborate/mark-messages-unread.html",
"channels/format-messages.html":
"https://docs.mattermost.com/collaborate/format-messages.html",
"channels/share-files-in-messages.html":
"https://docs.mattermost.com/collaborate/share-files-in-messages.html",
"channels/forward-messages.html":
"https://docs.mattermost.com/collaborate/forward-messages.html",
"channels/share-links.html":
"https://docs.mattermost.com/collaborate/share-links.html",
"channels/save-pin-messages.html":
"https://docs.mattermost.com/collaborate/save-pin-messages.html",
"channels/message-reminders.html":
"https://docs.mattermost.com/collaborate/message-reminders.html",
"channels/search-for-messages.html":
"https://docs.mattermost.com/collaborate/search-for-messages.html",
"channels/keyboard-accessibility.html":
"https://docs.mattermost.com/collaborate/keyboard-accessibility.html#",
"channels/keyboard-shortcuts-for-channels.html":
"https://docs.mattermost.com/collaborate/keyboard-shortcuts.html",
"channels/run-slash-commands.html":
"https://docs.mattermost.com/collaborate/run-slash-commands.html",
"channels/extend-channels-functionality.html":
"https://docs.mattermost.com/collaborate/extend-mattermost-with-integrations.html",
"channels/collaborate-using-mattermost-for-microsoft-teams.html":
"https://docs.mattermost.com/collaborate/collaborate-using-mattermost-for-microsoft-teams.html",
"channels/use-mattermost-google-calendar-plugin.html":
"https://github.com/mattermost/mattermost-plugin-google-calendar/docs/usage.html",
"channels/channel-types.html#public-channels":
"https://docs.mattermost.com/collaborate/channel-types.html#public-channels",
"channels/channel-types.html#private-channels":
"https://docs.mattermost.com/collaborate/channel-types.html#private-channels",
"channels/channel-types.html#direct-messages":
"https://docs.mattermost.com/collaborate/channel-types.html#direct-messages",
"channels/channel-types.html#group-messages":
"https://docs.mattermost.com/collaborate/channel-types.html#group-messages",
"channels/channel-naming-conventions.html#basic-structure":
"https://docs.mattermost.com/collaborate/channel-naming-conventions.html#basic-structure",
"channels/channel-naming-conventions.html#scope-channel-names":
"https://docs.mattermost.com/collaborate/channel-naming-conventions.html#scope-channel-names",
"channels/channel-naming-conventions.html#channel-naming-examples":
"https://docs.mattermost.com/collaborate/channel-naming-conventions.html#channel-naming-examples",
"channels/convert-public-channels.html#convert-private-channels-to-public-channels":
"https://docs.mattermost.com/collaborate/convert-public-channels.html#convert-private-channels-to-public-channels",
"channels/join-leave-channels.html#join-a-channel":
"https://docs.mattermost.com/collaborate/join-leave-channels.html#join-a-channel",
"channels/join-leave-channels.html#leave-a-channel":
"https://docs.mattermost.com/collaborate/join-leave-channels.html#leave-a-channel",
"channels/make-calls.html#id1":
"https://docs.mattermost.com/collaborate/make-calls.html#start-a-call",
"channels/make-calls.html#emojis":
"https://docs.mattermost.com/collaborate/make-calls.html#emojis",
"channels/make-calls.html#chat-in-a-call":
"https://docs.mattermost.com/collaborate/make-calls.html#chat-in-a-call",
"channels/make-calls.html#record-a-call":
"https://docs.mattermost.com/collaborate/make-calls.html#record-a-call",
"channels/make-calls.html#frequently-asked-questions":
"https://docs.mattermost.com/collaborate/make-calls.html#frequently-asked-questions",
"channels/make-calls.html#troubleshooting":
"https://docs.mattermost.com/collaborate/make-calls.html#troubleshooting",
"channels/make-calls.html#debugging":
"https://docs.mattermost.com/collaborate/make-calls.html#debugging",
"channels/manage-channel-members.html#add-members-to-a-channel":
"https://docs.mattermost.com/collaborate/manage-channel-members.html#add-members-to-a-channel",
"channels/manage-channel-members.html#leave-a-channel":
"https://docs.mattermost.com/collaborate/manage-channel-members.html#leave-a-channel",
"channels/manage-channel-members.html#remove-other-members-from-a-channel":
"https://docs.mattermost.com/collaborate/manage-channel-members.html#remove-other-members-from-a-channel",
"channels/browse-channels.html#revisit-recent-channels":
"https://docs.mattermost.com/collaborate/browse-channels.html#revisit-recent-channels",
"channels/navigate-between-channels.html#navigate-between-channels":
"https://docs.mattermost.com/collaborate/navigate-between-channels.html#navigate-between-channels",
"channels/navigate-between-channels.html#return-to-recently-viewed-channels":
"https://docs.mattermost.com/collaborate/navigate-between-channels.html#return-to-recently-viewed-channels",
"channels/customize-your-channel-sidebar.html#what-can-you-customize":
"https://docs.mattermost.com/preferences/customize-your-channel-sidebar.html",
"channels/customize-your-channel-sidebar.html#create-custom-categories":
"https://docs.mattermost.com/preferences/customize-your-channel-sidebar.html#create-custom-categories",
"channels/customize-your-channel-sidebar.html#make-categories-work-for-you":
"https://docs.mattermost.com/preferences/customize-your-channel-sidebar.html#make-categories-work-for-you",
"channels/customize-your-channel-sidebar.html#organize-channels-in-categories":
"https://docs.mattermost.com/preferences/customize-your-channel-sidebar.html#organize-channels-in-categories",
"channels/customize-your-channel-sidebar.html#mute-and-unmute-categories":
"https://docs.mattermost.com/preferences/customize-your-channel-sidebar.html#mute-and-unmute-categories",
"channels/customize-your-channel-sidebar.html#sort-channels-in-categories":
"https://docs.mattermost.com/preferences/customize-your-channel-sidebar.html#sort-channels-in-categories",
"channels/customize-your-channel-sidebar.html#group-unread-channels-separately":
"https://docs.mattermost.com/preferences/customize-your-channel-sidebar.html#group-unread-channels-separately",
"channels/customize-your-channel-sidebar.html#manage-direct-messages":
"https://docs.mattermost.com/preferences/customize-your-channel-sidebar.html#manage-direct-messages",
"channels/archive-unarchive-channels.html#archive-a-channel":
"https://docs.mattermost.com/collaborate/archive-unarchive-channels.html#archive-a-channel",
"channels/archive-unarchive-channels.html#unarchive-a-channel":
"https://docs.mattermost.com/collaborate/archive-unarchive-channels.html#unarchive-a-channel",
"channels/set-channel-preferences.html#channel-notification-preferences":
"https://docs.mattermost.com/preferences/manage-your-notifications.html",
"channels/set-channel-preferences.html#channel-header":
"https://docs.mattermost.com/collaborate/channel-header-purpose.html#channel-header",
"channels/set-channel-preferences.html#channel-purpose":
"https://docs.mattermost.com/collaborate/channel-header-purpose.html#channel-purpose",
"channels/set-channel-preferences.html#channel-name":
"https://docs.mattermost.com/collaborate/channel-header-purpose.html#channel-name",
"channels/set-channel-preferences.html#automatically-follow-all-new-threads-in-this-channel":
"https://docs.mattermost.com/preferences/manage-your-notifications.html",
"channels/channels-settings.html#notifications":
"https://docs.mattermost.com/preferences/manage-your-notifications.html",
"channels/channels-settings.html#display":
"https://docs.mattermost.com/preferences/manage-your-display-options.html",
"channels/channels-settings.html#sidebar":
"https://docs.mattermost.com/preferences/manage-your-sidebar-options.html",
"channels/channels-settings.html#advanced":
"https://docs.mattermost.com/preferences/manage-advanced-options.html",
"channels/interact-with-channels.html#slash-commands":
"https://docs.mattermost.com/collaborate/run-slash-commands.html",
"channels/send-messages.html#draft-messages":
"https://docs.mattermost.com/collaborate/send-messages.html#draft-messages",
"channels/send-messages.html#edit-or-delete-messages":
"https://docs.mattermost.com/collaborate/send-messages.html#edit-or-delete-messages",
"channels/send-messages.html#do-more-with-your-messages":
"https://docs.mattermost.com/collaborate/send-messages.html#do-more-with-your-messages",
"channels/message-priority.html#send-persistent-notifications":
"https://docs.mattermost.com/collaborate/message-priority.html#send-persistent-notifications",
"channels/message-priority.html#request-acknowledgements":
"https://docs.mattermost.com/collaborate/message-priority.html#request-acknowledgements",
"channels/reply-to-messages.html#organize-conversations-into-threads":
"https://docs.mattermost.com/collaborate/reply-to-messages.html#organize-conversations-into-threads",
"channels/reply-to-messages.html#work-with-collapsed-reply-threads":
"https://docs.mattermost.com/collaborate/reply-to-messages.html#work-with-threaded-discussions",
"channels/organize-conversations.html#start-or-reply-to-threads":
"https://docs.mattermost.com/collaborate/organize-conversations.html#start-or-reply-to-threads",
"channels/organize-conversations.html#follow-threads-and-messages":
"https://docs.mattermost.com/collaborate/organize-conversations.html#follow-threads-and-messages",
"channels/organize-conversations.html#view-all-threads":
"https://docs.mattermost.com/collaborate/organize-conversations.html#view-all-threads",
"channels/organize-conversations.html#enable-collapsed-reply-threads":
"https://docs.mattermost.com/collaborate/organize-conversations.html#enable-threaded-discussions",
"channels/organize-conversations.html#tutorial-video":
"https://docs.mattermost.com/collaborate/organize-conversations.html#tutorial-video",
"channels/organize-conversations.html#known-issues":
"https://docs.mattermost.com/collaborate/organize-conversations.html#known-issues",
"channels/react-to-messages.html#manage-emojis":
"https://docs.mattermost.com/collaborate/react-with-emojis-gifs.html#manage-emojis",
"channels/mention-people.html#username":
"https://docs.mattermost.com/collaborate/mention-people.html#username",
"channels/mention-people.html#channel-and-all":
"https://docs.mattermost.com/collaborate/mention-people.html#channel-and-all",
"channels/mention-people.html#here":
"https://docs.mattermost.com/collaborate/mention-people.html#here",
"channels/mention-people.html#groupname":
"https://docs.mattermost.com/collaborate/mention-people.html#groupname",
"channels/mention-people.html#words-that-trigger-mentions":
"https://docs.mattermost.com/collaborate/mention-people.html#words-that-trigger-mentions",
"channels/mention-people.html#see-all-recent-mentions":
"https://docs.mattermost.com/collaborate/mention-people.html#see-all-recent-mentions",
"channels/mention-people.html#confirmation-dialog-warnings":
"https://docs.mattermost.com/collaborate/mention-people.html#confirmation-dialog-warnings",
"channels/mention-people.html#mention-highlights":
"https://docs.mattermost.com/collaborate/mention-people.html#mention-highlights",
"channels/format-messages.html#use-the-messaging-formatting-toolbar":
"https://docs.mattermost.com/collaborate/format-messages.html#use-the-messaging-formatting-toolbar",
"channels/format-messages.html#use-markdown":
"https://docs.mattermost.com/collaborate/format-messages.html#use-markdown",
"channels/share-files-in-messages.html#attachment-limits-and-sizes":
"https://docs.mattermost.com/collaborate/share-files-in-messages.html#attachment-limits-and-sizes",
"channels/share-files-in-messages.html#preview-file-attachments":
"https://docs.mattermost.com/collaborate/share-files-in-messages.html#preview-file-attachments",
"channels/save-pin-messages.html#save-messages":
"https://docs.mattermost.com/collaborate/save-pin-messages.html#save-messages",
"channels/save-pin-messages.html#pin-messages":
"https://docs.mattermost.com/collaborate/save-pin-messages.html#pin-messages",
"channels/message-reminders.html#set-a-reminder":
"https://docs.mattermost.com/collaborate/message-reminders.html",
"channels/search-for-messages.html#search-for-message-and-files":
"https://docs.mattermost.com/collaborate/search-for-messages.html#search-for-message-and-files",
"channels/search-for-messages.html#search-modifiers":
"https://docs.mattermost.com/collaborate/search-for-messages.html#search-modifiers",
"channels/search-for-messages.html#hashtags":
"https://docs.mattermost.com/collaborate/search-for-messages.html#hashtags",
"channels/search-for-messages.html#notes-about-performing-mattermost-searches":
"https://docs.mattermost.com/collaborate/search-for-messages.html#notes-about-performing-mattermost-searches",
"channels/search-for-messages.html#technical-notes-about-searching":
"https://docs.mattermost.com/collaborate/search-for-messages.html#technical-notes-about-searching",
"channels/keyboard-accessibility.html":
"https://docs.mattermost.com/collaborate/keyboard-accessibility.html",
"channels/keyboard-accessibility.html#region-navigation":
"https://docs.mattermost.com/collaborate/keyboard-accessibility.html",
"channels/keyboard-accessibility.html#message-navigation":
"https://docs.mattermost.com/collaborate/keyboard-accessibility.html#message-navigation",
"channels/keyboard-accessibility.html#channel-sidebar-navigation":
"https://docs.mattermost.com/collaborate/keyboard-accessibility.html#channel-sidebar-navigation",
"channels/keyboard-shortcuts-for-channels.html#navigation-shortcuts-for-mattermost-channels":
"https://docs.mattermost.com/collaborate/keyboard-shortcuts.html#channel-navigation",
"channels/keyboard-shortcuts-for-channels.html#file-upload-shortcuts":
"https://docs.mattermost.com/collaborate/keyboard-shortcuts.html#file-uploads",
"channels/keyboard-shortcuts-for-channels.html#message-shortcuts":
"https://docs.mattermost.com/collaborate/keyboard-shortcuts.html#messages",
"channels/keyboard-shortcuts-for-channels.html#formatting-shortcuts":
"https://docs.mattermost.com/collaborate/keyboard-shortcuts.html#message-formatting",
"channels/keyboard-shortcuts-for-channels.html#accessibility-nagivation-shortcuts":
"https://docs.mattermost.com/collaborate/keyboard-shortcuts.html#accessibility-nagivation",
"channels/keyboard-shortcuts-for-channels.html#calls-shortcuts":
"https://docs.mattermost.com/collaborate/keyboard-shortcuts.html#calls",
"channels/extend-channels-functionality.html#popular-mattermost-integrations":
"https://docs.mattermost.com/collaborate/extend-mattermost-with-integrations.html#popular-mattermost-integrations",
"channels/collaborate-using-mattermost-for-microsoft-teams.html#connect-your-mattermost-account-to-your-ms-teams-account":
"https://docs.mattermost.com/collaborate/collaborate-using-mattermost-for-microsoft-teams.html#connect-your-mattermost-account-to-your-ms-teams-account",
"channels/collaborate-using-mattermost-for-microsoft-teams.html#collaborate-through-messages":
"https://docs.mattermost.com/collaborate/collaborate-using-mattermost-for-microsoft-teams.html#collaborate-through-messages",
"channels/collaborate-using-mattermost-for-microsoft-teams.html#collaborate-through-linked-channels":
"https://docs.mattermost.com/collaborate/collaborate-within-connected-microsoft-teams.html#link-one-or-more-channels-beta",
"channels/collaborate-using-mattermost-for-microsoft-teams.html#demonstration-mattermost-embedded-in-microsoft-teams":
"https://docs.mattermost.com/collaborate/collaborate-within-connected-microsoft-teams.html",
"channels/use-mattermost-google-calendar-plugin.html#connect-your-google-calendar-account-to-mattermost":
"https://github.com/mattermost/mattermost-plugin-google-calendar/docs/usage.html",
"channels/use-mattermost-google-calendar-plugin.html#customize-your-google-calendar-plugin":
"https://github.com/mattermost/mattermost-plugin-google-calendar/docs/usage.html",
"channels/use-mattermost-google-calendar-plugin.html#create-a-calendar-event":
"https://github.com/mattermost/mattermost-plugin-google-calendar/docs/usage.html",
"channels/use-mattermost-google-calendar-plugin.html#review-your-upcoming-events":
"https://github.com/mattermost/mattermost-plugin-google-calendar/docs/usage.html",
"channels/about-teams-channels-messages.html":
"https://docs.mattermost.com/guides/collaborate.html",
"channels/find-channels.html#revisit-recent-channels":
"https://docs.mattermost.com/collaborate/browse-channels.html#revisit-recent-channels",
"channels/syntax-highlighting.html":
"https://docs.mattermost.com/collaborate/syntax-highlighting.html",
# Cloud redirects
"cloud/cloud-administration/cloud-changelog.html":
"https://docs.mattermost.com/about/mattermost-server-releases.html",
"cloud/cloud-administration/cloud-compliance.html":
"https://docs.mattermost.com/comply/cloud-compliance-and-oversight.html",
"cloud/cloud-integrations/cloud-slash-commands.html":
"https://docs.mattermost.com/channels/run-slash-commands.html",
"cloud/cloud-administration/compliance-export.html":
"https://docs.mattermost.com/comply/compliance-export.html",
"cloud/cloud-administration/custom-terms-of-service.html":
"https://docs.mattermost.com/comply/custom-terms-of-service.html",
"cloud/cloud-reporting.html":
"https://docs.mattermost.com/manage/statistics.html",
"cloud/cloud-administration/data-retention-policy.html":
"https://docs.mattermost.com/comply/data-retention-policy.html",
"cloud/cloud-administration/saml-technical.html":
"https://docs.mattermost.com/onboard/cloud-sso-saml-technical.html",
"cloud/cloud-administration/sso-openid-connect.html":
"https://docs.mattermost.com/onboard/convert-oauth20-service-providers-to-openidconnect.html",
"cloud/cloud-administration/sso-saml.html":
"https://docs.mattermost.com/onboard/cloud-sso-saml.html",
"cloud/cloud-billing/cloud-billing.html":
"https://docs.mattermost.com/about/cloud-subscriptions.html",
"cloud/cloud-guest-accounts.html":
"https://docs.mattermost.com/onboard/guest-accounts.html",
"cloud/cloud-integrations.html":
"https://developers.mattermost.com/integrate/admin-guide/admin-webhooks-incoming/",
"cloud/cloud-mobile/cloud-app-config.html":
"https://docs.mattermost.com/deploy/mobile-appconfig.html",
"cloud/cloud-mobile/troubleshooting-mobile.html":
"https://docs.mattermost.com/deploy/mobile-faq.html",
"cloud/cloud-reporting.html":
"https://docs.mattermost.com/manage/cloud-reporting.html",
"cloud/mobile-apps-faq.html":
"https://docs.mattermost.com/deploy/mobile-faq.html",
"cloud/cloud-user-management.html":
"https://docs.mattermost.com/channels/manage-channel-members.html",
# Collaborate redirects
"collaborate/collaborate-using-mattermost-for-microsoft-teams.html":
"https://docs.mattermost.com/collaborate/collaborate-within-connected-microsoft-teams.html",
"collaborate/use-mattermost-google-calendar-plugin.html":
"https://github.com/mattermost/mattermost-plugin-google-calendar/blob/master/README.md",
"collaborate/chat-with-ai-copilot.html":
"https://docs.mattermost.com/collaborate/chat-with-copilot.html",
"collaborate-within-embedded-microsoft-teams.html":
"https://docs.mattermost.com/collaborate/collaborate-within-connected-microsoft-teams.html",
"collaborate/send-messages.html#edit-or-delete-messages":
"https://docs.mattermost.com/collaborate/send-messages.html#edit-messages",
"collaborate/organize-conversations.html#enable-collapsed-reply-threads":
"https://docs.mattermost.com/collaborate/organize-conversations.html#enable-threaded-discussions",
"collaborate/collaborate-within-embedded-microsoft-teams.html":
"https://docs.mattermost.com/integrate/microsoft-teams-interoperability.html",
"collaborate/syntax-highlighting.html":
"https://docs.mattermost.com/collaborate/format-messages.html#syntax-highlighting",
"collaborate/channel-types.html#direct-messages":
"https://docs.mattermost.com/collaborate/channel-types.html#direct-message-channels",
"collaborate/channel-types.html#group-messages":
"https://docs.mattermost.com/collaborate/channel-types.html#group-message-channels",
# Compliance redirects
"comply/compliance-reporting-oversight":
"https://docs.mattermost.com/comply/compliance-monitoring.html",
"comply/cloud-data-retention-policy.html":
"https://docs.mattermost.com/comply/data-retention-policy.html",
"comply/audit-log.html":
"https://docs.mattermost.com/manage/logging.html",
# Configure redirects
"configure/config-ssl-http2-apache2.html":
"https://forum.mattermost.com/t/configuring-apache2-with-ssl-and-http-2/11939",
"configure/configuring-apache2.html":
"https://forum.mattermost.com/t/configuring-apache2-as-a-proxy-for-mattermost-server/11938",
"configure/enable-ai-copilot.html":
"https://docs.mattermost.com/enable-copilot.html",
"configure/common-config-settings-notation.html":
"https://docs.mattermost.com/configure/configuration-settings.html",
"configure/bulk-loading-about.html":
"https://docs.mattermost.com/onboard/bulk-loading-data.html",
"configure/bulk-loading-common-issues.html":
"https://docs.mattermost.com/onboard/bulk-loading-data.html",
"configure/bulk-loading-data-format.html":
"https://docs.mattermost.com/onboard/bulk-loading-data.html",
"configure/bulk-loading-troubleshooting.html":
"https://docs.mattermost.com/onboard/bulk-loading-data.html",
"configure/run-bulk-loading-command.html":
"https://docs.mattermost.com/onboard/bulk-loading-data.html",
# Configuration settings redirects
"configure/configuration-in-mattermost-database.html":
"https://docs.mattermost.com/configure/configuration-in-your-database.html",
"configure/configuration-settings.html#channels":
"https://docs.mattermost.com/configure/user-management-configuration-settings.html#channels",
"configure/configuration-settings.html#allow-use-of-api-v3-endpoints":
"https://docs.mattermost.com/configure/deprecated-configuration-settings.html#allow-use-of-api-v3-endpoints",
"configure/configuration-settings.html#applied-schema-migrations":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#applied-schema-migrations",
"configure/configuration-settings.html#compliance-export-beta":
"https://docs.mattermost.com/configure/configuration-settings.html#compliance-export",
"configure/configuration-settings.html#connection-security":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#connection-security",
"configure/configuration-settings.html#custom-terms-of-service-beta":
"https://docs.mattermost.com/configure/configuration-settings.html#custom-terms-of-service",
"configure/configuration-settings.html#database":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#database",
"configure/configuration-settings.html#data-source":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#data-source",
"configure/configuration-settings.html#disable-database-search":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#disable-database-search",
"configure/configuration-settings.html#driver-name":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#driver-name",
"configure/configuration-settings.html#enable-insecure-outgoing-connections":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#enable-insecure-outgoing-connections",
"configure/configuration-settings.html#enable-latex-rendering":
"https://docs.mattermost.com/configure/configuration-settings.html#enable-latex-code-block-rendering",
"configure/configuration-settings.html#environment":
"https://docs.mattermost.com/configure/web-server-configuration-settings.html",
"configure/configuration-settings.html#forward-port-80-to-443":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#forward-port-80-to-443",
"configure/configuration-settings.html#groups":
"https://docs.mattermost.com/configure/user-management-configuration-settings.html#groups",
"configure/configuration-settings.html#guest-access-beta":
"https://docs.mattermost.com/configure/configuration-settings.html#guest-access",
"configure/configuration-settings.html#idle-timeout":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#idle-timeout",
"configure/configuration-settings.html#let-s-encrypt-certificate-cache-file":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#let-s-encrypt-certificate-cache-file",
"configure/configuration-settings.html#listen-address":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#web-server-listen-address",
"configure/configuration-settings.html#managed-resource-paths":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#managed-resource-paths",
"configure/configuration-settings.html#maximum-connection-idle-timeout":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#maximum-connection-idle-timeout",
"configure/configuration-settings.html#maximum-connection-lifetime":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#maximum-connection-lifetime",
"configure/configuration-settings.html#maximum-idle-connections":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#maximum-idle-database-connections",
"configure/configuration-settings.html#maximum-open-connections":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#maximum-open-connections",
"configure/configuration-settings.html#minimum-hashtag-length":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#minimum-hashtag-length",
"configure/configuration-settings.html#purge-all-caches":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#purge-all-caches",
"configure/configuration-settings.html#permissions":
"https://docs.mattermost.com/configure/user-management-configuration-settings.html#permissions",
"configure/configuration-settings.html#plugins-beta":
"https://docs.mattermost.com/configure/configuration-settings.html#plugins",
"configure/configuration-settings.html#query-timeout":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#query-timeout",
"configure/configuration-settings.html#read-timeout":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#read-timeout",
"configure/configuration-settings.html#recycle-database-connections":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#recycle-database-connections",
"configure/configuration-settings.html#reload-configuration-from-disk":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#reload-configuration-from-disk",
"configuration-settings.html#reporting":
"https://docs.mattermost.com/configure/reporting-configuration-settings.html",
"configure/configuration-settings.html#site-statistics":
"https://docs.mattermost.com/configure/reporting-configuration-settings.html#site-statistics",
"configure/configuration-settings.html#server-logs":
"https://docs.mattermost.com/configure/reporting-configuration-settings.html#server-logs",
"configure/configuration-settings.html#site-url":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#site-url",
"configure/configuration-settings.html#sql-statement-logging-trace":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#sql-statement-logging",
"configure/configuration-settings.html#teams":
"https://docs.mattermost.com/configure/user-management-configuration-settings.html#teams",
"configure/configuration-settings.html#team-statistics":
"https://docs.mattermost.com/configure/reporting-configuration-settings.html#team-statistics",
"configure/configuration-settings.html#terms-of-service-link":
"https://docs.mattermost.com/configure/configuration-settings.html#terms-of-use-link",
"configure/configuration-settings.html#test-live":
"https://docs.mattermost.com/configure/web-server-configuration-settings.html",
"configure/configuration-settings.html#tls-certificate-file":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#tls-certificate-file",
"configure/configuration-settings.html#tls-key-file":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#tls-key-file",
"configure/configuration-settings.html#use-let-s-encrypt":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#use-let-s-encrypt",
"configure/configuration-settings.html#websocket-url":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#websocket-url",
"configure/configuration-settings.html#license-file-location":
"https://docs.mattermost.com/configure/web-server-configuration-settings.html#license-file-location",
"configure/configuration-settings.html#tls-minimum-version":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#tls-minimum-version",
"configure/configuration-settings.html#enable-strict-transport-security-hsts":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#enable-strict-transport-security-hsts",
"configure/configuration-settings.html#secure-tls-transport-expiry":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#secure-tls-transport-expiry",
"configure/configuration-settings.html#tls-cipher-overwrites":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#tls-cipher-overwrites",
"configure/configuration-settings.html#trusted-proxy-ip-header":
"https://docs.mattermost.com/configure/environment-configuration-settings.html#trusted-proxy-ip-header",
"configure/configuration-settings.html#go-routine-health-threshold":