File: smtpserver-2.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 (10 lines) | stat: -rw-r--r-- 337 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
from twisted.application import service

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

from twisted.application import internet
from twisted.internet import protocol

smtpServerFactory = protocol.ServerFactory()
smtpServerService = internet.TCPServer(2025, smtpServerFactory)
smtpServerService.setServiceParent(application)