1#
2# The "sys" configuration file is used to describe all known sites to the local host.
3# This file should be configured to match your own environment.
4# A minimal set of examples is provided.
5#
6
7#
8# For protection a system should force a login name and password.
9# Example:
10#
11call-login uucp_tst
12call-password sekret
13
14#
15# Paths using a leading ~/ imply the public directory.
16# Example: specify the public directory
17#
18pubdir /var/spool/uucp_pubdir
19
20#
21# To configure the directories for sending and receiving files set the following commands:
22# local-send, local-receive, remote-send, remote-receive
23# These can be space separated lists of directories.
24#
25
26#
27# Example: allow users on the local host to send any files found below root.
28#
29local-send /
30
31#
32# Example: allows users on the local host to request any files below root from a remote system.
33#
34remote-send /
35
36#
37# Example:  allow users on the local host to receive files into /var/spool/uucp_pubdir
38# An administrator must create this as a world-writable directory.
39# Beware: Creating world-writable directories will make the local system less secure.
40#
41local-receive /var/spool/uucp_pubdir 
42
43#
44# Example: allow users on the local host to upload files into /var/spool/uucp_pubdir on a remote system.
45# An administrator must create this as a world-writable directory on the remote system.
46# Beware: Creating world-writable directories will make the remote system less secure.
47#
48remote-receive /var/spool/uucp_pubdir 
49
50#
51# Example: Specify a search path to locate executable commands used by uux.
52# This is a whitespace separated list of directories.
53#
54command-path /bin /sbin /usr/bin /usr/sbin
55
56#
57# Example: List the commands a remote system may execute locally.
58#
59commands ALL
60
61#
62# You must specify a call time.
63# Example: Calls may be placed at any time (least restrictive).
64#
65time any 1
66
67#
68# Limit how frequently a system is called.
69# Example: specify number of seconds before next retry
70# 0 means no limit.
71#
72success-wait 0
73
74#
75# Example:  specify that the system is called using tcp.
76# TCP is easier to configure than a modem setup.
77#
78port type tcp
79protocol t
80
81#
82# Commands above any system line are defaults for all systems following.
83# Example: identify a remote systems. (Multiple system entries are allowed).
84# Example: for a "tcp port type" the phone is an IP address.
85#
86system uucpsys1
87phone  uucpsys1.apple.com
88
89system uucpsys2
90phone uucpsys2.apple.com
91
92
93
94