pop3

Tiny pop3 client designed to be tunneled through ssh
git clone git://jacobedwards.org/pop3
Log | Files | Refs | README

commit 68cffdd852e3b69d2d61b5c612b64dbea5837853
parent f4a2cddc67f2a6adbc19291efc3a274655be4d73
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Sun, 10 Nov 2024 14:08:24 -0800

Add README

Diffstat:
AREADME | 27+++++++++++++++++++++++++++
1 file changed, 27 insertions(+), 0 deletions(-)

diff --git a/README b/README @@ -0,0 +1,27 @@ +pop3 - POP3 client +================== + +The pop3 utility is a very simple but functional POP3 client I made +to complement popa3d, a POP3 server. It communicates in cleartext, +so on untrusted networks traffic should be tunneled through secure +channels as seen in the manual's examples. + +Requirements +------------ + +In order to build pop3 you need a C99 compiler and a POSIX environment. + +Installation +------------ + +Run the following command (as root if necessary): + + $ make install + +By default pop3 is installed to the /usr/local namespace. This may +be overridden by setting the PREFIX environment variable. + +Usage +----- + +Please see the manual pop3(1) for usage information.