summaryrefslogtreecommitdiff
path: root/service/app/leap/mailconverter.py
blob: e05b2c30c2118b73c38edcc1005cbb83895382f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class MailConverter:

    def __init__(self, client):
        pass

    def from_mail(self, inbox_mail):
        raise NotImplementedError()


    def to_mail(self, pixelated_mail, account):
        raise NotImplementedError()


    def from_tag(self, inbox_tag):
        raise NotImplementedError()


    def from_contact(self, inbox_contact):
        raise NotImplementedError()