{% extends "layout/base.html" %} {% block content %}
MailMessage record
including sender, subject, received time and message body (HTML and plain text).
Job – one record per backup jobJobRun – one record per run of a jobJobObject – one record per object inside a runmail_message_id.
| Name | Backup software | Backup type(s) | Match criteria | Order | Enabled |
|---|---|---|---|---|---|
| {{ p.name }} | {{ p.backup_software }} | {% if p.backup_types %} {{ p.backup_types | join(", ") }} {% else %} - {% endif %} | {% set parts = [] %} {% if p.match.from_contains %} {% set _ = parts.append("from contains '" ~ p.match.from_contains ~ "'") %} {% endif %} {% if p.match.subject_contains %} {% set _ = parts.append("subject contains '" ~ p.match.subject_contains ~ "'") %} {% endif %} {% if p.match.subject_regex %} {% set _ = parts.append("subject matches /" ~ p.match.subject_regex ~ "/") %} {% endif %} {% if parts %} {{ parts | join(", ") }} {% else %} - {% endif %} | {{ p.order }} | {% if p.enabled %} Enabled {% else %} Disabled {% endif %} |
| No parsers defined. | |||||
{{ p.description }}
{% set ex_list = p.examples if p.examples is defined else ([p.example] if p.example is defined else []) %} {# Add supported Veeam backup-type examples that are configured/used in this installation. #} {% if p.backup_software == 'Veeam' %} {% set veeam_examples = [ { 'from_address': 'Veeam Backup & Replication{{ ex.body_snippet }}
| Type | Object | Status | Error message |
|---|---|---|---|
| {{ obj.type or '' }} | {{ obj.name }} | {% set _s = (obj.status or "")|lower %} {% set _dot = '' %} {% if _s == 'success' %}{% set _dot = 'dot-success' %} {% elif _s == 'warning' %}{% set _dot = 'dot-warning' %} {% elif _s == 'error' %}{% set _dot = 'dot-failed' %} {% elif _s == 'failed' %}{% set _dot = 'dot-failed' %} {% elif _s == 'missed' %}{% set _dot = 'dot-missed' %} {% endif %}{% if _dot %}{% endif %}{{ obj.status }} | {{ obj.error_message }} |