From: "Michael Köppl" <m.koeppl@proxmox.com>
To: Proxmox Backup Server development discussion
<pbs-devel@lists.proxmox.com>,
Lukas Wagner <l.wagner@proxmox.com>
Subject: Re: [pbs-devel] [PATCH proxmox-backup] docs: notifications: adapt to latest notification system UI changes
Date: Wed, 23 Jul 2025 15:14:58 +0200 [thread overview]
Message-ID: <045d572f-d27b-49cf-bd90-abd59d57bc37@proxmox.com> (raw)
In-Reply-To: <20250723112220.278700-1-l.wagner@proxmox.com>
IMO the changed sections are now more informative and better to read.
Added one suggestion inline. Did not notice any typos or grammatical errors.
Reviewed-by: Michael Köppl <m.koeppl@proxmox.com>
On 7/23/25 13:22, Lukas Wagner wrote:
> The latest updates to the backup-job UI completely drop the term
> "Notification System" from the UI, instead we now use "Global
> notification settings", which should be hopefully a bit clearer to users
> with regards to what this actually means.
>
> Some of the touched sections were slightly rephrased to improve clarity.
>
> Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
> ---
> docs/notifications.rst | 45 ++++++++++++++----------------------------
> 1 file changed, 15 insertions(+), 30 deletions(-)
>
> diff --git a/docs/notifications.rst b/docs/notifications.rst
> index 5669dab06..190408592 100644
> --- a/docs/notifications.rst
> +++ b/docs/notifications.rst
> @@ -7,9 +7,9 @@ Overview
> --------
>
> * Proxmox Backup Server emits :ref:`notification_events` in case of noteworthy
> - events in the system. These events are handled by the notification system. A
> - notification event has metadata, for example a timestamp, a severity level, a
> - type and other metadata fields.
> + events in the system. These events are processed based on the global
> + notification settings. Each notification event includes metadata, such as a
> + timestamp, severity level, type, and additional event-specific fields.
> * :ref:`notification_matchers` route a notification event to one or more
> notification targets. A matcher can have match rules to selectively route
> based on the metadata of a notification event.
> @@ -17,12 +17,7 @@ Overview
> is routed to by a matcher. There are multiple types of target, mail-based
> (Sendmail and SMTP) and Gotify.
>
> -Datastores and tape backup jobs have a configurable :ref:`notification_mode`.
> -It allows you to choose between the notification system and a legacy mode for
> -sending notification emails. The legacy mode is equivalent to the way
> -notifications were handled before Proxmox Backup Server 3.2.
> -
> -The notification system can be configured in the GUI under *Configuration →
> +Global notification settings can be configured in the GUI under *Configuration →
> Notifications*. The configuration is stored in :ref:`notifications.cfg` and
> :ref:`notifications_priv.cfg` - the latter contains sensitive configuration
> options such as passwords or authentication tokens for notification targets and
> @@ -304,9 +299,8 @@ Metadata field Description
> System Mail Forwarding
> ----------------------
> Certain local system daemons, such as ``smartd``, send notification emails to
> -the local ``root`` user. Proxmox Backup Server will feed these mails into the
> -notification system as a notification of type ``system-mail`` and with severity
> -``unknown``.
> +the local ``root`` user. These mails are converted into notification events
> +with the type ``system-mail`` and with a severity of ``unknown``.
>
> When the email is forwarded to a sendmail target, the mail's content and
> headers are forwarded as-is. For all other targets, the system tries to extract
> @@ -327,24 +321,14 @@ Notification Mode
> Datastores and tape backup/restore job configuration have a
> ``notification-mode`` option which can have one of two values:
>
> -* ``legacy-sendmail``: Send notification emails via the system's ``sendmail``
> - command. The notification system will be bypassed and any configured
> - targets/matchers will be ignored. This mode is equivalent to the notification
> - behavior for version before Proxmox Backup Server 3.2.
> +* Send notifications based on the global notification settings (``notification-system``).
>
> -* ``notification-system``: Use the new, flexible notification system.
> +* Send notification emails via the system's ``sendmail`` command
> + (``legacy-sendmail``). Any targets or matchers from the global notification
> + settings are ignored. This mode is equivalent to the notification behavior
> + for version before Proxmox Backup Server 3.2. It might be removed in a
Maybe something like "for Proxmox Backup Server versions before 3.2" or
"for versions of Proxmox Backup Server before 3.2" instead? Just a
suggestion, though.
> + later release of Proxmox Backup Server.
>
> -If the ``notification-mode`` option is not set, Proxmox Backup Server will
> -default to ``legacy-sendmail``.
> -
> -Starting with Proxmox Backup Server 3.2, a datastore created in the UI will
> -automatically opt in to the new notification system. If the datastore is
> -created via the API or the ``proxmox-backup-manager`` CLI, the
> -``notification-mode`` option has to be set explicitly to
> -``notification-system`` if the notification system shall be used.
> -
> -The ``legacy-sendmail`` mode might be removed in a later release of
> -Proxmox Backup Server.
>
> Settings for ``legacy-sendmail`` notification mode
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> @@ -364,8 +348,9 @@ task type via the ``notify`` option.
>
> * Never: do not send any notification at all
>
> -The ``notify-user`` and ``notify`` options are ignored if ``notification-mode``
> -is set to ``notification-system``.
> +The ``notify-user`` and ``notify`` options are ignored when using the global
> +notification settings (``notification-mode`` is set to
> +``notification-system``).
>
> Overriding Notification Templates
> ---------------------------------
_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel
next prev parent reply other threads:[~2025-07-23 13:13 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-23 11:22 Lukas Wagner
2025-07-23 13:14 ` Michael Köppl [this message]
2025-07-25 8:04 ` Lukas Wagner
2025-07-23 14:00 ` [pbs-devel] applied: " Thomas Lamprecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=045d572f-d27b-49cf-bd90-abd59d57bc37@proxmox.com \
--to=m.koeppl@proxmox.com \
--cc=l.wagner@proxmox.com \
--cc=pbs-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox