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
|
<!-- Copyright 2009 Canonical Ltd. This software is licensed under the
GNU Affero General Public License version 3 (see the file LICENSE).
-->
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:meta="http://namespaces.zope.org/meta">
<meta:directive
namespace="http://namespaces.zope.org/mail"
name="testMailBox"
schema=".meta.ITestMailBoxDirective"
handler=".meta.testMailBoxHandler"
/>
<meta:directive
namespace="http://namespaces.zope.org/mail"
name="pop3MailBox"
schema=".meta.IPOP3MailBoxDirective"
handler=".meta.pop3MailBoxHandler"
/>
<meta:directive
namespace="http://namespaces.zope.org/mail"
name="directoryMailBox"
schema=".meta.IDirectoryMailBoxDirective"
handler=".meta.directorymailBoxHandler"
/>
<meta:directive
namespace="http://namespaces.zope.org/mail"
name="stubMailer"
schema=".meta.IStubMailerDirective"
handler=".meta.stubMailerHandler"
/>
<meta:directive
namespace="http://namespaces.zope.org/mail"
name="testMailer"
schema=".meta.ITestMailerDirective"
handler=".meta.testMailerHandler"
/>
<meta:directive
namespace="http://namespaces.zope.org/mail"
name="mboxMailer"
schema=".meta.IMboxMailerDirective"
handler=".meta.mboxMailerHandler"
/>
</configure>
|