maybe chmod 0644 'logwatch/conf/logfiles/maillog.conf'
maybe chmod 0644 'logwatch/conf/logfiles/secure.conf'
maybe chmod 0644 'logwatch/conf/logfiles/syslog.conf'
+maybe chmod 0644 'logwatch/conf/logwatch.conf'
maybe chmod 0755 'logwatch/conf/services'
maybe chmod 0755 'logwatch/scripts'
maybe chmod 0755 'logwatch/scripts/services'
test -x /usr/share/logwatch/scripts/logwatch.pl || exit 0
#execute
-/usr/sbin/logwatch --output mail
+/usr/sbin/logwatch --encode base64 --output mail
#Note: It's possible to force the recipient in above command
#Just pass --mailto address@a.com instead of --output mail
--- /dev/null
+# Local configuration options go here (defaults are in /usr/share/logwatch/default.conf/logwatch.conf)
+
+#Output/Format Options
+#By default Logwatch will print to stdout in text with no encoding.
+#To make email Default set Output = mail to save to file set Output = file
+Output = stdout
+#To make Html the default formatting Format = html
+Format = text
+#To make Base64 [aka uuencode] Encode = base64
+Encode = none
+
+# Default person to mail reports to. Can be a local account or a
+# complete email address. Variable Output should be set to mail, or
+# --output mail should be passed on command line to enable mail feature.
+MailTo = frank@brehm-online.com
+
+
+# The default detail level for the report.
+# This can either be Low, Med, High or a number.
+# Low = 0
+# Med = 5
+# High = 10
+Detail = High
+