File and console logging added for exception handling and information
[imap-restore-mail] / mail_iterator.py
CommitLineData
67e2ec02
PD
1'''
2restore-mail-inject.py - Tool to inject mails via IMAP
3
4Copyright (c) 2012 Intra2net AG
5'''
6
f797b0fd 7import sys
4a1a0b03 8import socket, imaplib
67e2ec02 9import re
f797b0fd 10import logging
67e2ec02
PD
11
12MAILBOX_RESP = re.compile(r'\((?P<flags>.*?)\) "(?P<delimiter>.*)" (?P<name>.*)')
13UIDVAL_RESP = re.compile(r'(?P<name>.*) \(UIDVALIDITY (?P<uidval>.*)\)')
4a1a0b03 14ACLS_RESP = re.compile(b'(?P<user>.*) (?P<acls>.*)')
67e2ec02
PD
15
16class MailIterator:
17 """This class communicates with the e-mail server."""
18
19 # class attributes
20 # IMAP4_SSL for connection with an IMAP server
21 mail_con = None
22 # list of tuples (uidvalidity, mailboxname) for the retrieved mailboxes
23 mailboxes = None
24 # logged in status
25 logged_in = None
26
7aad8dab 27 def __init__(self, username):
67e2ec02 28 """Creates a connection and a user session."""
9ce1038d 29
b2bbd1f5 30 # connect to server
67e2ec02 31 try:
7aad8dab 32 self.mail_con = imaplib.IMAP4("intranator.m.i2n")
4a1a0b03
PD
33 # MODIFIED
34 imap_socket = socket.socket(socket.AF_UNIX)
35 imap_socket.connect("/var/imap/socket/imap")
36 self.mail_con.sock = imap_socket
37 self.mail_con.file = self.mail_con.sock.makefile('rb')
f797b0fd
PD
38 logging.info("Connected to mail server.")
39 except (self.mail_con.error, socket.error) as ex:
40 logging.error("Could not connect to host: %s" % (ex))
41 sys.exit()
b2bbd1f5
PD
42
43 # log in
44 try:
7aad8dab 45 self.mail_con.login("cyrus", "geheim")
b2bbd1f5 46 self.logged_in = True
7aad8dab 47 #self.mail_con.proxyauth(username)
f797b0fd
PD
48 logging.info("Logged in as %s." % username)
49 except self.mail_con.error as ex:
67e2ec02 50 self.logged_in = False
f797b0fd
PD
51 logging.error("Could not log in as user %s: %s" % (username, ex))
52 sys.exit()
9ce1038d 53
b2bbd1f5
PD
54 # list mailboxes
55 try:
56 _result, mailboxes = self.mail_con.list()
f797b0fd
PD
57 except self.mail_con.error as ex:
58 logging.warning("Could not retrieve mailboxes for user %s: %s" % (username, ex))
67e2ec02
PD
59 self.mailboxes = []
60 for mailbox in mailboxes:
61 mailbox = MAILBOX_RESP.match(mailbox.decode('iso-8859-1')).groups()
62 self.mailboxes.append(mailbox)
63 self.mailboxes = sorted(self.mailboxes, key=lambda box: box[2], reverse=True)
9ce1038d 64
67e2ec02
PD
65 return
66
67 def __del__(self):
68 """Closes the connection and the user session."""
b2bbd1f5
PD
69 #if self.logged_in:
70 # self.mail_con.close()
71 # self.mail_con.logout()
67e2ec02
PD
72
73 def clear_inbox_acls(self, user):
b2bbd1f5 74 """Resets the inbox acls for a given user."""
67e2ec02 75 try:
b2bbd1f5 76 _result, inbox_acls = self.mail_con.getacl("INBOX")
f797b0fd
PD
77 except self.mail_con.error as ex:
78 logging.warning("Could not get the acls of INBOX: %s" % ex)
79 return
9ce1038d 80 inbox_acls = ACLS_RESP.findall(inbox_acls[0][6:])
f797b0fd 81 logging.debug("Retrieved acls from INBOX are %s" % inbox_acls)
9ce1038d
PD
82 for acl_ref in inbox_acls:
83 if acl_ref[0] != user:
67e2ec02 84 try:
f797b0fd
PD
85 self.mail_con.deleteacl("INBOX", acl_ref[0])
86 logging.debug("Reset acls on INBOX for user %s" % acl_ref[0].decode('iso-8859-1'))
87 except self.mail_con.error as ex:
88 logging.warning("Could not reset acls on INBOX for user %s: %s" % (acl_ref[0], ex))
67e2ec02
PD
89 return
90
e42bd6a5 91 def add_acls(self, mailbox, mailbox_list, original_user, target_user):
67e2ec02 92 """Add acls to mailbox."""
b2bbd1f5 93
e42bd6a5
PD
94 # change encoding to internal cyrus format and make folder absolute
95 mailbox = mailbox.replace("INBOX/", "user/" + original_user + "/")
67e2ec02
PD
96 mailbox = mailbox.replace(".", "^")
97 mailbox = mailbox.replace("/", ".")
b2bbd1f5 98
b0169e56
PD
99 # find folder to set all acls
100 try:
101 mbox_acls = mailbox_list[mailbox]
102 except KeyError:
103 # no rights for the mailbox were found
104 return
105 for acl_user in mbox_acls:
b0169e56
PD
106 if acl_user != target_user and acl_user != original_user:
107 try:
b2bbd1f5 108 self.mail_con.setacl(mailbox, acl_user, mbox_acls[acl_user])
f797b0fd
PD
109 logging.debug("Set acls %s for user %s on mailbox %s" % (mbox_acls[acl_user], acl_user, mailbox))
110 except self.mail_con.error as ex:
111 logging.warning("Could not set acls %s for user %s on mailbox %s: %s" % (mbox_acls[acl_user], acl_user, mailbox, ex))
b2bbd1f5 112
67e2ec02
PD
113 return
114
115 def delete_mailboxes(self, deleted_mailbox):
116 """Delete specified mailbox or empty inbox."""
117 for mailbox in self.mailboxes:
118 pattern = '^\"?' + deleted_mailbox
119 # if INBOX it cannot be deleted so add delimiter
120 if (deleted_mailbox == "INBOX"):
121 pattern += mailbox[1]
e42bd6a5 122 if re.compile(pattern).match(mailbox[2]):
67e2ec02 123 result, data = self.mail_con.delete(mailbox[2])
e42bd6a5 124 if result == "OK":
f797b0fd 125 logging.debug("Deleted mailbox %s" % mailbox[2])
67e2ec02 126 else:
f797b0fd 127 logging.warning("Could not delete mailbox %s: %s" % (mailbox[2], data[0]))
67e2ec02
PD
128 return
129
130 def create_mailbox(self, mailbox):
131 """Create new mailbox to inject messages."""
e42bd6a5 132 if mailbox != "INBOX":
67e2ec02 133 result, data = self.mail_con.create(mailbox)
e42bd6a5 134 if result == "OK":
f797b0fd 135 logging.debug("Creating mailbox %s" % mailbox)
67e2ec02 136 else:
f797b0fd 137 logging.warning("Could not create mailbox %s: %s" % (mailbox, data[0]))
67e2ec02
PD
138 return
139
140 def inject_message(self, message, mailbox, internal_date):
141 """Inject a message into a mailbox."""
7aad8dab 142 result, data = self.mail_con.append(mailbox, "\\Seen", internal_date, message.encode())
b2bbd1f5 143 if result == "OK":
f797b0fd 144 logging.debug("Appending message to mailbox %s" % mailbox)
b2bbd1f5 145 else:
f797b0fd 146 logging.warning("Could not append the e-mail %s: %s" % (message, data[0]))
67e2ec02 147 return