Skip to main content

Home

Healthcheck Email Troubleshooting

Resolve the errors you might encounter when receiving email alerts for healthcheck reports.

Issue

Description

Workaround

Healthcheck email alerts are not sent.

By default, the healthcheck email alerts include the healthcheck bundle. However, some email servers can block archives sent as an attachment causing the email alerts not to be delivered.

  • Do not attach the bundle (attach_bundle: false).

  • Add the following configuration in the unravel.yaml file to encode the archive with base64.

    Example:

    services:
    healthcheck:
    config:
    alerts:
    default:
    attach_bundle: true
    attach_mode: base64

    You can use one of the following options:

    • attach_mode: base64: Encodes the bundle and attaches it to the email.

    • attach_mode: base64-inline: Encodes the bundle and includes it in the body of the email.