G. Pape
tinydyndns
tinydyndns - fake-pop3 client
Since the POP mailbox used by the pop-before-dyndns service never
contains mail, there is no need to run a real pop3 client.
On Unix you can use this fake-pop3 script as
tinydyndns client:
#!/bin/sh
USER=floyd
PASS=guest
tcpclient dyn.smarden.org 110 sh -c "exec 0<&6; exec 1>&7
echo USER $USER
read input
echo PASS $PASS
read input
echo QUIT
read input"
Gerrit Pape <pape@smarden.org>