Debianization, and minor fixes.
[fastforward] / hier.c
1 #include "auto_qmail.h"
2
3 void hier(char *home)
4 {
5 if (!home)
6 home = auto_qmail;
7 h(home,-1,-1,0755);
8
9 d(home,"bin",-1,-1,0755);
10 d(home,"doc",-1,-1,0755);
11 d(home,"doc/fastforward",-1,-1,0755);
12 d(home,"man",-1,-1,0755);
13 d(home,"man/man1",-1,-1,0755);
14 d(home,"man/cat1",-1,-1,0755);
15
16 c(home,"bin","fastforward",-1,-1,0755);
17 c(home,"bin","printforward",-1,-1,0755);
18 c(home,"bin","setforward",-1,-1,0755);
19 c(home,"bin","newaliases",-1,-1,0755);
20 c(home,"bin","printmaillist",-1,-1,0755);
21 c(home,"bin","setmaillist",-1,-1,0755);
22 c(home,"bin","newinclude",-1,-1,0755);
23
24 c(home,"doc/fastforward","ALIASES",-1,-1,0644);
25
26 c(home,"man/man1","fastforward.1",-1,-1,0644);
27 c(home,"man/man1","printforward.1",-1,-1,0644);
28 c(home,"man/man1","setforward.1",-1,-1,0644);
29 c(home,"man/man1","newaliases.1",-1,-1,0644);
30 c(home,"man/man1","printmaillist.1",-1,-1,0644);
31 c(home,"man/man1","setmaillist.1",-1,-1,0644);
32 c(home,"man/man1","newinclude.1",-1,-1,0644);
33
34 c(home,"man/cat1","fastforward.0",-1,-1,0644);
35 c(home,"man/cat1","printforward.0",-1,-1,0644);
36 c(home,"man/cat1","setforward.0",-1,-1,0644);
37 c(home,"man/cat1","newaliases.0",-1,-1,0644);
38 c(home,"man/cat1","printmaillist.0",-1,-1,0644);
39 c(home,"man/cat1","setmaillist.0",-1,-1,0644);
40 c(home,"man/cat1","newinclude.0",-1,-1,0644);
41 }