pop3

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

commit 1aa4eae25df8f50e7fff71c0801c1ae17eacb84e
parent b27996f61e27d1416dcd11ee3143146f4fdeb8b8
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Fri, 25 Mar 2022 22:54:19 +0000

Fix typo and inconsistencies, and improve user option English

Diffstat:
Mpop3.1 | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/pop3.1 b/pop3.1 @@ -1,4 +1,4 @@ -.\" $Id: pop3.1,v 1.1 2022/03/07 07:42:39 jacob Exp $ +.\" $Id: pop3.1,v 1.2 2022/03/25 22:54:19 jacob Exp $ .\" .\" Copyright (c) 2022 Jacob R. Edwards .\" @@ -60,25 +60,25 @@ on port .Ar port . Defaults to 110 (pop3). .It Fl u Ar user -Login to POP3 -.Ar user -uesr. By default your login name (as returned by +Fetch mail for +.Ar user . +By default your login name (as returned by .Xr getlogin 2 ) is used. .El .Sh EXIT STATUS .Ex -std .Sh EXAMPLES -Retrieve mail from pop3.xyz, append it to +Retrieve mail from pop3.abc.xyz, append it to .Pa mbox , and delete it from the server .Bd -literal -offset indent -$ pop3 pop3.xyz >> mbox +$ pop3 pop3.abc.xyz >> mbox .Ed .Pp The same, except don't delete the mail .Bd -literal -offset indent -$ pop3 -k pop3.xyz >> mbox +$ pop3 -k pop3.abc.xyz >> mbox .Ed .Pp Like the last example, except read the passphrase from the @@ -92,7 +92,7 @@ Like the first example, except communication is tunneled through .Xr ssh 1 .Bd -literal -offset indent -$ ssh -f -L 1110:localhost:110 pop3.xyz sleep 10 +$ ssh -f -L 1110:localhost:110 pop3.abc.xyz sleep 10 $ pop3 -p 1110 localhost >> mbox .Ed .Pp @@ -108,7 +108,7 @@ contains .Bd -literal -offset indent [pop3s] client = yes -connect = pop3.xyz +connect = pop3.abc.xyz accept = 1110 .Ed .Sh SEE ALSO