~launchpad-pqm/launchpad/devel

695 by Canonical.com Patch Queue Manager
Email backend and stub implementation work
1
<configure
2
    xmlns="http://namespaces.zope.org/zope"
3
    xmlns:mail="http://namespaces.zope.org/mail"
4
    i18n_domain="zope">
5
6
    <include package="zope.app.mail"/>
7
8
    <!-- Configure email for testing. Use direct delivery instead of
9
    queued, as otherwise tests would be more painful and the background
10
    thread created by queuedDelivery causes trouble too -->
11
    <mail:testMailer name="test" />
12
    <mail:directDelivery name="Mail" permission="zope.SendMail" mailer="test" />
13
1747 by Canonical.com Patch Queue Manager
Add IMailBox to access mails sent to launchpad (LaunchpadMailbox). r=spiv
14
    <!-- Configure a mail box which can be used when testing. Every email that
15
         you send using testMailer will appear in this mail box. -->
16
    <mail:testMailBox />
17
695 by Canonical.com Patch Queue Manager
Email backend and stub implementation work
18
</configure>