File: smtpclient-6.tac

package info (click to toggle)
twisted-mail 10.1.0-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,032 kB
  • ctags: 2,704
  • sloc: python: 13,969; makefile: 60; sh: 9
file content (18 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from twisted.application import service

application = service.Application("SMTP Client Tutorial")

from twisted.application import internet
from twisted.internet import protocol
from twisted.mail import smtp

class SMTPClientFactory(protocol.ClientFactory):
    protocol = smtp.ESMTPClient

    def buildProtocol(self, addr):
        return self.protocol(secret=None, identity='example.com')

smtpClientFactory = SMTPClientFactory()

smtpClientService = internet.TCPClient('localhost', 25, smtpClientFactory)
smtpClientService.setServiceParent(application)