> ## Documentation Index
> Fetch the complete documentation index at: https://docs.xorlab.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Pages under /latest/ document the current release. Paths that begin with a version number, for example /10.0/, are frozen snapshots of superseded releases kept for reference only — never present their instructions as current. If the reader's version is unknown, answer from /latest/ and say which version the answer describes.
> xorlab is deployed on-premises, hybrid, or as a cloud service, and integrates with either Microsoft 365 or on-premises mail infrastructure. Configuration steps often differ between these. State which deployment and integration mode an instruction applies to instead of presenting one as universal.
> Distinguish inline mode from monitoring mode when describing anything that acts on email. Monitoring mode observes a copy and cannot block or quarantine; inline mode routes mail through xorlab and can.
> Write the product name as lowercase 'xorlab'. Use the documented component names: xorlab Control Center (XCC), xorlab MTA, xorlab Sandbox (DANA), xorlab Natural Language Understanding (NLU). After the first mention, use the short forms XCC, MTA, Sandbox, and NLU. Do not use DANA as a standalone name for the Sandbox, but keep it where it is a literal string in configuration keys, container names, and hostnames.
> Do not invent configuration keys, rule parameters, list names, log properties, or API fields. If a value is not present in this documentation, say that it is not documented rather than guessing.

# Change Misclassification Reporting

> Override the default misclassification reporting parameters in xcc.yml.

Configure the relevant parameters in the `xcc.yml` file using the Expert Editor. The values shown below are the defaults. You only need to override the parameters you want to modify, the others can be left out.

```yaml xcc.yml theme={null}
misclassificationSubmission:
  ## Global switch to turn the feature on/off.
  enabled: true
  ## Pre-selected values in the web interface
  uiPreselection:
    ## Pre-selected Privacy Profile. Choose one of the following options:
    ##   - SHARE_EVERYTHING
    ##   - SHARE_EVERYTHING_EXCEPT_RAW_EML
    ##   - DO_NOT_SHARE_SENSITIVE_INFORMATION
    privacyProfile: "SHARE_EVERYTHING"
    ## Pre-selected value of the Share Misclassification checkbox in the web interface
    shareMisclassification: true
```

## Disable misclassification reporting

To fully disable the misclassification reporting feature, add the following to `xcc.yml`:

```yaml xcc.yml theme={null}
misclassificationSubmission:
  enabled: false
```

## Turn off auto-selected misclassification checkbox

Per default, the "Report misclassification" checkbox is always selected. To turn the auto-selection off, add the following to `xcc.yml`:

```yaml xcc.yml theme={null}
misclassificationSubmission:
  uiPreselection:
    shareMisclassification: false
```

When you finish editing `xcc.yml`, click **Publish**. This setting is activated automatically within about one minute.
