Compare commits
2 Commits
be670c2ae5
...
1f1f587add
| Author | SHA1 | Date | |
|---|---|---|---|
| 1f1f587add | |||
| c8b85316e9 |
@ -1 +1 @@
|
||||
v20260109-11-ntfs-auditing-audit-parser
|
||||
v20260109-12-ntfs-audit-fqdn-jobname
|
||||
|
||||
@ -39,8 +39,8 @@ def try_parse_ntfs_auditing(msg: MailMessage) -> Tuple[bool, Dict, List[Dict]]:
|
||||
|
||||
subject = _normalize_subject(subject_raw)
|
||||
|
||||
# Find the host part between "Bouter" and "file audits".
|
||||
m = re.search(r"\bBouter\b\s+(?P<host>[^\s]+)\s+file\s+audits\b", subject, flags=re.IGNORECASE)
|
||||
# Find the hostname/FQDN at the start of the subject (before "file audits").
|
||||
m = re.search(r"^(?P<host>[^\s]+)\s+file\s+audits\b", subject, flags=re.IGNORECASE)
|
||||
if not m:
|
||||
return False, {}, []
|
||||
|
||||
|
||||
@ -90,6 +90,13 @@
|
||||
- Handled reports without an overall status by defaulting the result to Success.
|
||||
- Ensured existing missing-run logic is applied when no audit report mail is received.
|
||||
- Defined that these audit mails contain no objects; object list remains empty.
|
||||
|
||||
---
|
||||
|
||||
## v20260109-12-ntfs-audit-fqdn-jobname
|
||||
|
||||
- Updated NTFS Auditing (Audit) subject parsing to extract the hostname/FQDN directly from the start of the subject before "file audits".
|
||||
- Removed the dependency on a fixed "Bouter <host>" subject prefix, so hosts like dc01.totall-it.local and fs01.totall-it.local are recognized.
|
||||
================================================================================================================================================
|
||||
## v0.1.19
|
||||
This release delivers a broad set of improvements focused on reliability, transparency, and operational control across mail processing, administrative auditing, and Run Checks workflows. The changes aim to make message handling more robust, provide better insight for administrators, and give operators clearer and more flexible control when reviewing backup runs.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user