Added all of the MH sources, including RCS files, in
[mmh] / docs / historical / mh-6.8.5 / zotnet / mf / mmdfI / src / conf_chan.add
1 /* additions to conf_chan.c for UUCP support */
2
3 /* 1.  Add this structure after the definition for ch_sloc */
4
5 Chan    ch_sbboards = {
6     'c', DLVRREG, "ch_uucp", 
7          "UUCP", "uucp", "uucp.names",
8          locname, "UUCP", NOLOGIN, NOPHONE, 0, 0l
9 };
10
11
12 /* 2.  Add &ch_suucp to ch_tbsrch[] after &ch_sloc */
13
14 Chan * ch_tbsrch[] =              /* order chan tables searched         */
15 {
16         &ch_sloc,
17         &ch_suucp,
18 /* ... */
19         (Chan *) 0
20 };
21
22
23 /* 3.  Add &ch_suucp to ch_exsrch[] after &ch_sloc */
24
25 Chan * ch_exsrch[] =              /* order of active chan execution     */
26 {
27         &ch_sloc,
28         &ch_suucp,
29 /* ... */
30         (Chan *) 0
31 };