Nettacker/nettacker/core/lib/pop3s.py

12 lines
199 B
Python

import poplib
from nettacker.core.lib.pop3 import Pop3Engine, Pop3Library
class Pop3sLibrary(Pop3Library):
client = poplib.POP3_SSL
class Pop3sEngine(Pop3Engine):
library = Pop3sLibrary