~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/mail/incoming.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-13 01:11:42 UTC
  • mfrom: (13668.1.31 private-bug-0)
  • Revision ID: launchpad@pqm.canonical.com-20110813011142-b8xvpxhdja422ln2
[rs=sinzui][no-qa] Moved canonical.launchpad.mail to lp.services.mail,
 bugs.mail, code.mail.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    GPGVerificationError,
32
32
    IGPGHandler,
33
33
    )
34
 
from canonical.launchpad.interfaces.mail import IWeaklyAuthenticatedPrincipal
35
 
from canonical.launchpad.interfaces.mailbox import IMailBox
36
 
from canonical.launchpad.mail.commands import get_error_message
37
 
from canonical.launchpad.mail.helpers import (
38
 
    ensure_sane_signature_timestamp,
39
 
    save_mail_to_librarian,
40
 
    )
41
34
from canonical.launchpad.mailnotification import (
42
35
    send_process_error_notification,
43
36
    )
54
47
from lp.registry.interfaces.person import IPerson
55
48
from lp.services.features import getFeatureFlag
56
49
from lp.services.mail.handlers import mail_handlers
 
50
from lp.services.mail.helpers import (
 
51
    ensure_sane_signature_timestamp,
 
52
    get_error_message,
 
53
    save_mail_to_librarian,
 
54
    )
 
55
from lp.services.mail.interfaces import IWeaklyAuthenticatedPrincipal
 
56
from lp.services.mail.mailbox import IMailBox
57
57
from lp.services.mail.sendmail import do_paranoid_envelope_to_validation
58
58
from lp.services.mail.signedmessage import signed_message_from_string
59
59