~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/mail/handler.py

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
from zope.event import notify
19
19
from zope.interface import implements
20
20
 
 
21
from lp.services.mail.helpers import get_email_template
 
22
from lp.services.mail.notification import (
 
23
    send_process_error_notification,
 
24
    )
 
25
from lp.services.webapp.interfaces import ILaunchBag
21
26
from lp.bugs.interfaces.bug import (
22
27
    CreateBugParams,
23
28
    CreatedBugWithNoBugTasksError,
28
33
    )
29
34
from lp.bugs.interfaces.bugmessage import IBugMessageSet
30
35
from lp.bugs.mail.commands import BugEmailCommands
 
36
from lp.services.mail.mailwrapper import MailWrapper
31
37
from lp.services.identity.interfaces.emailaddress import IEmailAddressSet
32
38
from lp.services.mail.helpers import (
33
39
    ensure_not_weakly_authenticated,
34
 
    get_email_template,
35
40
    get_error_message,
36
41
    get_main_body,
37
42
    guess_bugtask,
47
52
    IBugTaskEmailCommand,
48
53
    IMailHandler,
49
54
    )
50
 
from lp.services.mail.mailwrapper import MailWrapper
51
 
from lp.services.mail.notification import send_process_error_notification
52
55
from lp.services.mail.sendmail import simple_sendmail
53
56
from lp.services.messages.interfaces.message import IMessageSet
54
 
from lp.services.webapp.interfaces import ILaunchBag
55
57
 
56
58
 
57
59
error_templates = os.path.join(os.path.dirname(__file__), 'errortemplates')