UUCP served the UNIX community well for many years before the explosion of the Internet -- moving email and USENET news. It runs well over dial-up phone lines, allowing email, USENET, and file transport, as well as remote execution of commands -- if configured for it.
It also can be carried on top of a TCP network connection, so there is a graceful migration path from standard dial-up lines, to dial-up lines running TCP/IP (eg: via PPP), to full-fledged Internet circuits.
This document will try show how to configure SunOS and FreeBSD variants of UUCP for basic transport, and integration with mailers. Other documents will describe a design for a system of local post offices serving desktop/laptop users in the field access to their mail, and a hierarchy of UUCP servers providing transport to the Internet.
absinthe% uucp /etc/printcap thanatos\!~/printcaptestYou can also get notification when the job is complete (-m) and notify an intended recipient of the transfer (-n
absinthe<9> uucp -m -nchris /etc/group thanatos\!~/for-chris/group.testThe notification (SunOS) looks like:
From: uucp Date: Sun, 7 Apr 1996 19:12:39 -0400 (EDT) REQUEST: absinthe!/etc/group --> thanatos!~/for-chris/group.test (chris) (SYSTEM: thanatos) copy succeededand the recipient (Taylor) gets a notification like:
From uucp Sun Apr 7 19:10:09 1996 Date: Sun, 7 Apr 1996 19:10:08 -0400 From: UUCP pseudo-userTo: chris Subject: UUCP succeeded Message from UUCP on thanatos Sun Apr 7 19:10:08 1996 The file absinthe!/etc/group was successfully transferred to ~/for-chris/group.test as requested by chris
At the very least, if Taylor is only *accepting* incoming calls from other UUCP systems, it must have the remote systems named in the "sys" file; format is simply "system <incoming_system_name>". More complex configurations are required for having Taylor *originate* connections to remote systems.
divert(-1) # Start from generic SunOS 4.1.x. with local and SMTP mail only. # Add support for UUCP. VERSIONID(`$Id: Welcome.html,v 1.2 1996/04/08 04:58:19 chris Exp $') OSTYPE(sunos4.1)dnl DOMAIN(generic)dnl MAILER(local)dnl MAILER(smtp)dnl MAILER(uucp)dnl FEATURE(mailertable, dbm /etc/mailertable)This .mc file is turned into a .cf file via make, then installed in the usual place, in this case /etc/sendmail.cf. The daemon must be killed and restarted for this to take effect.
The mailertable maps hosts and domains to mailers, overriding the default use of SMTP. My /etc/mailertable specifies that mail to thanatos goes by uucp:
thanatos.i3inc.com uucp:thanatosThis has to be converted to a DBM file with the "makemap" command, from the sendmail source distribution under the makemap directory. I used the command:
# makemap dbm /etc/mailertable < /etc/mailertableSubsequent mail to user@thanatos.uucp caused sendmail to queue up the mail in UUCP, where it waited for the next contact with thanatos. This polling still needs to be documented??
??I see that sending to user@thanatos.uucp or user@thanatos.mydomain both get queued up via UUCP. Is there a way to send user!thanatos.uucp (or thanatos!user) via UUCP, but Internet addresses by SMTP??
Chris Shenton
Last modified: Mon Apr 8 00:57:15 1996