Hi all, I have a system where logrotate is configured to use xz to compress rotated log files (openSuse), which is currently not supported by logwatch. It was quite easy to patch logwatch to process xz compressed files: I have added the following lines in scripts/logwatch.pl After line 89 (Version 7.4.3 or current git): $Config{'pathtoxzcat'} = "xzcat"; After line 769 (Version 7.4.3) or line 778 (current git): } elsif (($Archive =~ m/xz$/) && (-f "$Archive") && (-s "$Archive")) { my $arguments =...