import PMS.POP3Server
import netrc

try:
	host = 'localhost'
	user, password = netrc.netrc().authenticators(host)[1:]

	def server(name):
		return PMS.POP3Server.POP3Server(name, 'localhost', 110,  user, password)
except:
	pass
