Little grammar correction
[imap-mark-seen] / src / imap_mark_seen.py
index 00a4466..7902d40 100644 (file)
@@ -2,7 +2,7 @@
 imap_mark_seen.py - Tool to mark all e-mails as seen
 
 Copyright (c) 2012 Intra2net AG
-Author: Plamen Dimitrov and Thomas Jarosch
+Author: Plamen Dimitrov
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -31,10 +31,10 @@ def main():
     # prepare configuration
     args = configure_args()
     warnings_handler = prepare_logger()
-    logging.info("Marking messages as seen from %s of %s", args.folder, args.user)
+    logging.info("Marking messages as seen for user \"%s\" in folder \"%s\"", args.user, args.folder)
     psw = getpass.getpass()
 
-    # prepare simple mail iterator and iterate throug mailboxes
+    # prepare simple mail iterator and iterate through mailboxes
     session = MailIterator(args.server, args.user, psw)
     total_messages = 0
     for mailbox in session: