Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Fork of Python's standard SMTP server. Adding support for various extensions to the protocol.

License

Notifications You must be signed in to change notification settings

bcoe/secure-smtpd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Secure SMTPD

Secure-SMTPD extends on Petri Lehtinen's SMTPD library adding support for AUTH and SSL.

Usage

from secure_smtpd import SMTPServer, FakeCredentialValidator
SMTPServer(
    self,
    ('0.0.0.0', 465),
    None,
    require_authentication=True,
    ssl=True,
    certfile='examples/server.crt',
    keyfile='examples/server.key',
    credential_validator=FakeCredentialValidator(),
)
asyncore.loop()

About

Fork of Python's standard SMTP server. Adding support for various extensions to the protocol.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 10

Languages