]> code.delx.au - offlineimap/blob - head/offlineimap/imapserver.py
/head: changeset 5
[offlineimap] / head / offlineimap / imapserver.py
1 # IMAP server support
2 # Copyright (C) 2002 John Goerzen
3 # <jgoerzen@complete.org>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
19 from imapsync import imaplib
20
21 class IMAPServer:
22 def __init__(self, username, password, hostname, port = None, ssl = 1):
23 self.username = username
24 self.password = password
25 self.hostname = hostname
26 self.port = port
27 self.usessl = ssl
28 if port == None:
29 if ssl:
30 self.port = 993
31 else:
32 self.port = 143
33
34 def makeconnection(self):
35 """Opens a connection to the server and returns an appropriate
36 object."""
37
38 imapobj = None
39 if self.usessl:
40 imapobj = imaplib.IMAP4_SSL(self.hostname, self.port)
41 else:
42 imapobj = imaplib.IMAP4(self.hostname, self.port)
43
44 imapobj.login(self.username, self.password)
45 return imapobj
46
47