Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/unrefactored/smtp.py
blob: 5f6f0bd1bd9e7526121c3198e5658d3bff831a50 (plain)
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
# 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 St, Fifth Floor, Boston, MA  02110-1301  USA

from gettext import gettext as _
from smtplib import SMTP

from accounts import TransportAccount
from pop import POPError
from utility import flatten

class SMTPTransportAccount(TransportAccount):

    def __init__(self, from_addr, host, port=25, auth_type=None, username=None, password=None, pop_account=None):
        TransportAccount.__init__(self, from_addr, host, port, auth_type, username, password)
        if auth_type=='POP_BEFORE_SMTP':
            self._pop_account = pop_account
    
    def _connect(self, tracker):
        server = SMTP()
        if self._auth_type=='POP_BEFORE_SMTP':
            tracker.update(_('Authenticating...'))
            try:
                self._pop_account.auth_and_quit()
            except POPError:
                tracker.error(_('Error authenticating using POP'))
                return None
        try:
            tracker.update(_('Connecting to server...'))
            server.connect(self._host, self._port)
        except:
            tracker.error(_('Error connecting to %s:%d' % (self._host, self._port)))
            return None
        if self._auth_type=='SSL':
            try:
                tracker.update(_('Authenticating...'))
                server.ehlo()
                server.starttls()
                server.ehlo()
                server.login(self._username, self._password)
            except:
                tracker.error(_('Error authenticating %s' % self._username))
                return None
        return server

    def __extract_addrs(self, msg):
        from email.utils import parseaddr
        frm = parseaddr(msg['From'])
        to = [split2.strip() for split1 in msg['To'].split(';') for split2 in split1.split(',') if not split2.strip()==''] # eh
        return frm, to

    def _deliver(self, server, msg, tracker):
        from_addr, to_addrs = self.__extract_addrs(msg)
        flattened_msg = flatten(msg)
        failures = {}
        try:
            tracker.update(_('Delivering %s' % msg['Subject']))
            failures = server.sendmail(from_addr, to_addrs, flattened_msg)
        except:
            tracker.error_delivering(msg)
            return None
        return failures

    def send(self, msgs, tracker):
        server = self._connect(tracker)
        if server is None:
            tracker.try_later(msgs)
            return
        for msg in msgs:
            failures = self._deliver(server, msg, tracker)
            if failures is not None:
                if failures=={}:
                    tracker.sent(msg)
                else:
                    tracker.some_rcpts_failed(msg, failures)
        try:
            server.quit()
        except:
            pass
        tracker.done()