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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
'''
alias_resolver.py
=================
Classes for resolving postfix aliases.
:authors: Isis Agora Lovecruft
:version: 0.0.1-beta
:license: see included LICENSE file
:copyright: (c) 2013 Isis Agora Lovecruft
TODO:
o Look into using twisted.protocols.postfix.policies classes for
controlling concurrent connections and throttling resource consumption.
'''
import os
import uuid
try:
from twisted.internet import address, defer, reactor
from twisted.mail import maildir, alias
from twisted.protocols import postfix
except ImportError:
print "This software requires Twisted. Please see the README file"
print "for instructions on getting required dependencies."
from leap.mx import couchdb
from leap.mx.util import net, log, config, exceptions
def createUUID(alias):
"""Creates Universal Unique ID by taking the SHA1 HASH of an email alias:
>>> uuid.uuid5(uuid.NAMESPACE_URL, "isis@leap.se")
UUID('7194878e-4aea-563f-85a4-4f58519f3c4f')
TODO: Is there a commonly accepted way to check that an email address
is valid?
:param str alias: An email address alias.
:returns: A :class:`uuid.UUID` containing attributes specifying the UUID.
"""
return uuid.uuid5(uuid.NAMESPACE_URL, str(alias))
class DatabaseNotConnected(Exception):
"""Raised when not currently connected to a database."""
class StatusCodes(object):
"""The Postfix manual states:
The request completion status is one of OK, RETRY, NOKEY (lookup failed
because the key was not found), BAD (malformed request) or DENY (the
table is not approved for proxy read or update access).
In brief, Postfix will send ``get SPACE key NEWLINE``, or
``put SPACE key NEWLINE`` where ``key`` is an alias or email address.
It expects non-printable ascii characters to be url-encoded, i.e. a
get-request would look like:
``get%20isis@leap.se%0A``
and in response, Postfix expects an SMTP-like status code and a string
describing the nature of or reason for the response, no longer than
4096 "characters" (which, due to UTF-8 ubiquity, we'll err on the safe
side and assume that means 4096 bytes.)
From the Postfix manual on its TCP map protocol
(http://www.postfix.org/tcp_table.5.html):
500 SPACE text NEWLINE
In case of a lookup request, the requested data
does not exist. In case of an update request, the
request was rejected. The text describes the
nature of the problem.
400 SPACE text NEWLINE
This indicates an error condition. The text
describes the nature of the problem. The client
should retry the request later.
200 SPACE text NEWLINE
The request was successful. In the case of a lookup
request, the text contains an encoded version of
the requested data.
Other SMTP codes: http://www.greenend.org.uk/rjk/tech/smtpreplies.html
>>> statcodes = StatusCodes()
>>> if <query local user database for email address>:
>>> response_message = statcodes(200)
>>> aliasresolver.tellMTA()
"""
OK = "OK Others might say 'HELLA AWESOME'...but we're not convinced."
RETRY = "RETRY Server is busy plotting revolution; requests might take a while."
BAD = "BAD bad Leroy Brown, baddest man in the whole...er. Malformed request."
NOKEY = "NOKEY Couldn't find your keys, sorry. Did you check in the sofa?"
DEFER = "DEFER_IF_LOCAL xxx fill me in"
DENY = "DENY no gurlz aloud in teh tree house."
FAIL = "FAIL this belongs on the failblog"
SMTPCodes = { '200': OK,
'400': RETRY,
'500': BAD,
'550': NOKEY,
'552': DEFER,
'553': DENY,
'554': FAIL, }
SMTPStrings = { 'OK' 200,
'RETRY': 400,
'BAD': 500,
'NOKEY': 550,
'DEFER': 552,
'DENY': 553,
'FAIL': 554, }
def __init__(self, status_code=None):
"""Construct an SMTP status code generator.
:type status_code: str or int
:param status_code: (optional) see :func:`StatusCode.get`.
"""
if status_code:
self.get(status_code)
def get(self, status_code=None)
"""Takes an SMTP-like status code and returns an SMTP-like message.
:type status_code: str or int
:param status_code: The string or integer for the response we want
to give back to the MTA, after looking up an
email address in the local user database.
Can be one of:
* ``OK`` or ``200``
* ``RETRY`` or ``400``
* ``BAD`` or ``500``
* ``NOKEY`` or ``550``
* ``DEFER`` or ``552``
* ``DENY`` or ``553``
* ``FAIL`` or ``554``
"""
if status_code:
if isinstance(status_code, str):
return status_code, getattr(self, status_code.upper(), None)
elif isinstance(status_code, int):
for k, v in self.fake_smtp_codes.items():
## we want to return None if it's 550
if k == str(status_code) and k != '550':
return status_code, v
log.debug("%s" % self.NOKEY)
return None, ''
class AliasResolver(postfix.PostfixTCPMapServer):
"""
Resolve postfix aliases, similarly to using "$ postmap -q <alias>".
This class starts a simple LineReceiver server which listens for a string
specifying an alias to look up, :param:`key`, and which will be used to
query the local Postfix server. You can test it with:
$ ./alias_resolver.py &
$ /usr/bin/postmap -q <key> tcp:localhost:1347
Resources:
http://www.postfix.org/proxymap.8.html
https://www.iana.org/assignments/smtp-enhanced-status-codes/
"""
def __init__(self, *args, **kwargs):
"""Create a server which listens for Postfix aliases to resolve."""
super(postfix.PostfixTCPMapServer, self).__init__(*args, **kwargs)
self.status_codes = StatusCodes()
def sendCode(self, code, message=None):
"""Send an SMTP-like code with a message."""
if not message:
message = self.status_codes.get(code)
self.sendLine('%3.3d %s' % (code, message or ''))
def do_get(self, key):
"""Make a query to resolve an alias."""
if key is None:
self.sendCode(500)
log.warn("Command 'get' takes one parameter.")
else:
d = defer.maybeDeferred(self.factory.get, key)
d.addCallbacks(self._cbGot, self._cbNot)
d.addErrback(log.err)
@defer.inlineCallbacks
def do_put(self, keyAndValue):
"""Add a key and value to the database, provided it does not exist."""
if keyAndValue is None:
self.sendCode(500)
log.warn("Command 'put' takes two parameters.")
else:
try:
key, value = keyAndValue.split(None, 1)
except ValueError:
self.sendCode(500)
log.warn("Command 'put' takes two parameters.")
else:
alreadyThere = yield self.do_query(key)
if alreadyThere is None:
d = defer.maybeDeferred(self.factory.put, key, value)
d.addCallbacks(self._cbPut, self._cbPout)
d.addCallbacks(log.err)
else:
self.sendCode(553)
@defer.inlineCallbacks
def do_delete(self, key):
"""
Delete an alias from the mapping database.
xxx not sure if this is a good idea...
"""
raise NotImplemented
def check_recipient_access(self, key):
"""Make a query to resolve an alias."""
self.do_get(self, key)
def virtual_alias_map(self, key):
"""
Get the Universal Unique ID for the alias address. If
virtual_transport is True, then suffix the UUID with a domain.
xxx I don't think we actually need couchdb for this, the UUID is an
identifier, not an authenticator. And the SHA1 should always be the
same, so unless it's considered to expensive to compute (less than
querying a database, I would presume), it seems silly to do this.
Instead, we should query CouchDB with the UUID to get the GPG keyid.
"""
## xxx need email address parser
client_id = createUUID(key)
if self.virtual_transport:
return client.get_urn() + '@example.com'
else:
return client.get_urn()
def _cbGot(self, value):
"""Callback for self.get()"""
if value is None:
self.sendCode(550)
else:
self.sendCode(250, quote(value))
def _cbNot(self, fail):
"""Errback for self.get()"""
self.sendCode(554, fail.getErrorMessage())
def _cbPut(self, value):
"""xxx fill me in"""
pass
def _cbPout(self, fail):
"""xxx fill me in"""
pass
class AliasResolverFactory(postfix.PostfixTCPMapDeferringDictServerFactory):
"""
A Factory for creating :class:`AliasResolver` servers, which handles inputs
and outputs, and keeps an in-memory mapping of Postfix aliases in the form
of a dictionary.
xxx fill me in
"""
protocol = AliasResolver
def __init__(self, addr='127.0.0.1', port=4242, timeout=120, data=None):
"""
Create a Factory which returns :class:`AliasResolver` servers.
@param addr: A string giving the IP address of this server.
Default: '127.0.0.1'
@param port: An integer that specifies the port number to listen
on. Default: 4242
@param timeout: An integer specifying the number of seconds to wait
until we should time out. Default: 120
@param data: A dict to use to initialise or update the alias mapping.
"""
super(postfix.PostfixTCPMapDeferringDictServerFactory,
self).__init__(data=data)
self.timeout = timeout
self.noisy = True if config.advanced.noisy else False
try:
assert isinstance(port, int), "Port number must be an integer"
assert isinstance(timeout, int), "Timeout must be an integer"
except AssertionError, ae:
raise SystemExit(ae.message)
if net.checkIPaddress(addr):
self.addr = address._IPAddress('TCP', addr, int(port))
else:
log.msg("Using default address: 127.0.0.1:%s" % port)
self.addr = address._IPAddress('TCP', '127.0.0.1', int(port))
log.msg("To configure Postfix to query this alias_resolver,")
log.msg("you should do:")
log.msg(" $ postconf -e 'check_recipient_access = tcp:%s:%d"
% (addr, port))
def buildProtocol(self):
"""
Create an instance of the :class:`AliasResolver` server.
"""
proto = self.protocol()
proto.timeout = self.timeout
proto.factory = self
return proto
def get(self, *args, **kwargs):
"""
xxx connect me to the couchdb
"""
pass
def put(self, *args, **kwargs):
"""
xxx connect me to the couchdb
"""
pass
if __name__ == "__main__":
print "To test alias_resolver.py, please use /test/test_alias_resolver.py"
|