# 2023.10.1

> **Release date: December 6, 2023**

**Release date: December 6, 2023**

## Auditing machine maintenance actions

The **Audit Data** window for the **Sessions** component now includes the **Maintenance** field, which displays the status of the **[Maintenance](https://docs.uipath.com/orchestrator/standalone/2023.10/user-guide/monitoring-unattended-sessions)** option for unattended machines. 1 marks the enabled status of the machine maintenance mode, and 0 marks its disabled status.

## Removing local user basic authentication

The **Always allow basic authentication for this user** option has been removed from the Orchestrator user editing window, and can now only be configured via Identity. In addition to that, the `Auth.RestrictBasicAuthentication` and `Auth.EnableBasicAuthenticationForHostTenant` parameters can no longer be used either.

## Bug fixes

* The "Trigger automatically disabled after job execution failures." alert was mistakenly disabled upon upgrade. Now, when you upgrade, the alert is enabled by default, as initially intended.
* The `The 'queue name' has reached max attempts while scheduling task` validation rule no longer produces error messages in the Event Viewer.
* Warning messages in Japanese displayed during application upgrade were not entirely readable. They are now correctly rendered.
* Exception details are now displayed in the MSI log if the SQL validator encounters errors during application upgrade.

## Known issues

### Issue with saving custom configurations in email settings

**Erratum - added July 3, 2024**: When configuring the email settings, you cannot save any custom configurations due to an issue with form validation. The **Save** button incorrectly appears grayed out, despite filling in all the required fields correctly. As a workaround, you can make a PUT request to the `/identity_/api/setting` endpoint.

Use the appropriate access token and make sure the request body contains the necessary details. Also make sure that `Email.Smtp.UseDefaultCredentials` is set to `True`, like in the following example:

```
{
    "Settings": [
        {
            "Key": "Email.Smtp.Host",
            "Value": "SendGrid"
        },
        {
            "Key": "Email.Smtp.Port",
            "Value": "587"
        },
        {
            "Key": "Email.Smtp.UserName",
            "Value": ""
        },
        {
            "Key": "Email.Smtp.Domain",
            "Value": ""
        },
        {
            "Key": "Email.Smtp.FromEmail",
            "Value": "no-reply@uipath.com"
        },
        {
            "Key": "Email.Smtp.FromDisplayName",
            "Value": "UiPath Platform"
        },
        {
            "Key": "Email.Smtp.EnableSsl",
            "Value": "true"
        },
        {
            "Key": "Email.Smtp.UseDefaultCredentials",
            "Value": "true"
        },
        {
            "Key": "Email.Smtp.Password",
            "Value": ""
        },
        {
            "Key": "Email.Smtp.ConnectionTimeout",
            "Value": "180000"
        }
    ],
    "PartitionGlobalId": ""
}
```

## Deprecation timeline

We recommend that you regularly check the [deprecation timeline](https://docs.uipath.com/overview/other/latest/overview/deprecation-timeline) for any updates regarding features that will be deprecated and removed.

## Download location

You can download the latest product version from the [Customer Portal](https://customerportal.uipath.com/product-downloads?q=orchestrator).
