~launchpad-pqm/launchpad/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:mail="http://namespaces.zope.org/mail"
    i18n_domain="zope">

    <include package="zope.app.mail"/>

    <!-- Configure email for testing. Use direct delivery instead of
    queued, as otherwise tests would be more painful and the background
    thread created by queuedDelivery causes trouble too -->
    <mail:testMailer name="test" />
    <mail:directDelivery name="Mail" permission="zope.SendMail" mailer="test" />

    <!-- Configure a mail box which can be used when testing. Every email that
         you send using testMailer will appear in this mail box. -->
    <mail:testMailBox />

</configure>