This commit is contained in:
rsc 2006-02-08 22:39:54 +00:00
parent 5a1e9de7b1
commit 605c0ea102
11 changed files with 132 additions and 386 deletions

View file

@ -9,3 +9,19 @@ char *SHELL = "#9/bin/rc";
char *POST = "#9/sys/lib/post/dispatch";
int MBOXMODE = 0662;
void
upasconfig(void)
{
static int did;
if(did)
return;
did = 1;
MAILROOT = unsharp(MAILROOT);
UPASLOG = unsharp(UPASLOG);
UPASLIB = unsharp(UPASLIB);
UPASBIN = unsharp(UPASBIN);
SHELL = unsharp(SHELL);
POST = unsharp(POST);
}