Introduction
Introduction Statistics Contact Development Disclaimer Help
tconfig.c - plan9port - [fork] Plan 9 from user space
git clone git://src.adamsgaard.dk/plan9port
Log
Files
Refs
README
LICENSE
---
tconfig.c (524B)
---
1 #include "common.h"
2
3 char *_MAILROOT = "#9/mail";
4 char *_UPASLOG = "#9/sys/log";
5 char *_UPASLIB = "#9/mail/lib";
6 char *_UPASBIN= "#9/bin/upas";
7 char *_UPASTMP = "/var/tmp";
8 char *_SHELL = "#9/bin/rc";
9 char *_POST = "#9/sys/lib/post/dispatch";
10
11 int MBOXMODE = 0662;
12
13 void
14 upasconfig(void)
15 {
16 static int did;
17
18 if(did)
19 return;
20 did = 1;
21 _MAILROOT = unsharp(_MAILROOT);
22 _UPASLOG = unsharp(_UPASLOG);
23 _UPASLIB = unsharp(_UPASLIB);
24 _UPASBIN = unsharp(_UPASBIN);
25 _SHELL = unsharp(_SHELL);
26 _POST = unsharp(_POST);
27 }
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.