kalgynirae / voidpop

Dummy POP3 server that accepts any login and never has any messages

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Voidpop

Voidpop is a dummy POP3 server. It accepts any username/password and always reports that there are no messages.

Why??

I found myself in a situation where I needed someone to send some emails via a particular SMTP account, but there was no corresponding incoming mail account. Their email client refused to even try to connect to the SMTP server if it couldn't first sync the mailbox from an incoming mail server. I didn't find any existing dummy POP3 or IMAP services, and POP3 looked simpler to implement.

Using pop.voidpop.org

You can connect to pop.voidpop.org on port 110 with any username and password, and the server will report that you have 0 messages.

Running your own instance

$ python3 -m venv env
$ env/bin/pip install voidpop
$ env/bin/voidpop --help

About

Dummy POP3 server that accepts any login and never has any messages

License:MIT License


Languages

Language:Python 100.0%