rename parsers, better journald integration
[logparse.git] / logparse / parsers / postfix.py
index 72e287e230dcc76f1c5173ff7a131f51eb769ab9..51581aa3ea7ba5c85c988f9885cfd1f031ffc230 100644 (file)
@@ -1,8 +1,6 @@
-#
-#   postfix.py
-#   
-#   Get message statistics from postfix/sendmail logs
-#
+"""
+Get message statistics from postfix/sendmail logs
+"""
 
 import re
 
@@ -22,7 +20,8 @@ class Postfix(Parser):
         section = Section("postfix")
         logger.debug("Starting postfix section")
         logger.debug("Searching through postfix logs")
-        messages = re.findall('.*from\=<(.*)>, size\=(\d*),.*\n.*to=<(.*)>', readlog(config.prefs.get("logs", "postfix")))
+        messages = re.findall('.*from\=<(.*)>, size\=(\d*),.*\n.*to=<(.*)>', 
+                readlog(config.prefs.get("logs", "postfix")))
         r = []
         s = []
         size = 0