|
NAMEmpopd - A minimal POP3 serverSYNOPSISmpopd [option...]DESCRIPTIONMpopd is a minimal POP3 server that delivers mails from a local mailbox in maildir format. It can be used by end users as a way to handle incoming mail via mpop with mail clients that insist on using POP3. See the EXAMPLES section below.Mpopd listens on 127.0.0.1 port 1100 by default, but can also run without its own network sockets in inetd mode, where it handles a single POP3 session on standard input / output. To prevent abuse, mpopd will allow only a limited number of concurrent POP3 sessions, and an authentication failure occurrs, future authentication requests in any POP3 session will (for a limited duration) only be answered after a small delay. OPTIONS
EXAMPLESUsing mpopd to handle incoming mail for a POP3-based mail clientSome mail clients cannot get incoming mail from local files and instead insist on using a POP3 server. You can configure mpopd to be that POP3 server and serve your incoming mail from a local maildir folder. (Similarly, some mail clients cannot send outgoing mail via a program such as msmtp and instead insist on using an SMTP server. You can configure msmtpd to be that SMTP server and hand the mail over to msmtp. See the relevant section in the msmtp manual.) For this purpose, mpopd should listen on an unprivileged port, e.g. 1100 (the default). A mailbox is defined using first the --auth option to set a user name and password and then using the --maildir option to specify the maildir folder that holds the incoming mail. Multiple such option pairs can be used to define multiple mailboxes, e.g. from different remote mail accounts. Programs such as mpop can deliver new mail into the maildir folders at any time, but as long as mpopd is running no other programs may alter or remove mails from these folders. Let's use the user name mpopd-user. You have two options to manage the password:
The complete command then is (using the keyring): mpopd
--auth=mpopd-user --maildir=/path/to/your/maildir/folder
SEE ALSOmpop(1)
Visit the GSP FreeBSD Man Page Interface. |