/usr/share/pyshared/Mailnag/common/account.py is in mailnag 0.5.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# account.py
#
# Copyright 2011, 2012 Patrick Ulbrich <zulu99@gmx.net>
# Copyright 2011 Ralf Hersel <ralf.hersel@gmx.net>
#
# 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
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
import poplib
import daemon.imaplib2 as imaplib
from common.i18n import _
account_defaults = {
'enabled' : '0',
'name' : '',
'user' : '',
'server' : '',
'port' : '',
'ssl' : '1',
'imap' : '0',
'idle' : '0',
'folder' : ''
}
class Account:
def __init__(self, enabled = False, name = _('Unnamed'), user = '', \
password = '', server = '', port = '', ssl = True, imap = False, idle = False, folder = '' ):
self.enabled = enabled # bool
self.name = name
self.user = user
self.password = password
self.server = server
self.port = port
self.ssl = ssl # bool
self.imap = imap # bool
self.idle = idle # bool
self.folder = folder
self._conn = None
def get_connection(self, use_existing = False): # get email server connection
if self.imap:
return self._get_IMAP_connection(use_existing)
else:
return self._get_POP3_connection(use_existing)
def get_id(self):
# TODO : this id is not really unique...
return str(hash(self.user + self.server + self.folder))
def _get_IMAP_connection(self, use_existing):
# try to reuse existing connection
if use_existing and (self._conn != None) and \
(self._conn.state != imaplib.LOGOUT) and (not self._conn.Terminate):
return self._conn
self._conn = conn = None
try:
if self.ssl:
if self.port == '':
conn = imaplib.IMAP4_SSL(self.server)
else:
conn = imaplib.IMAP4_SSL(self.server, self.port)
else:
if self.port == '':
conn = imaplib.IMAP4(self.server)
else:
conn = imaplib.IMAP4(self.server, self.port)
conn.login(self.user, self.password)
self._conn = conn
except:
print "Error: Cannot connect to IMAP account: %s. " % self.server
try:
if conn != None:
# conn.close() # allowed in SELECTED state only
conn.logout()
except:
pass
return self._conn
def _get_POP3_connection(self, use_existing):
# try to reuse existing connection
if use_existing and (self._conn != None) and ('sock' in self._conn.__dict__):
return self._conn
self._conn = conn = None
try:
if self.ssl:
if self.port == '':
conn = poplib.POP3_SSL(self.server)
else:
conn = poplib.POP3_SSL(self.server, self.port)
else:
if self.port == '':
conn = poplib.POP3(self.server)
else:
conn = poplib.POP3(self.server, self.port)
conn.getwelcome()
conn.user(self.user)
conn.pass_(self.password)
self._conn = conn
except:
print "Error: Cannot connect to POP account: %s. " % self.server
try:
if conn != None:
conn.quit()
except:
pass
return self._conn
|