blob: 123a7f47e106cbf24be66f51e1a9b85d3fd837d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#
# $FML: main.cf.in,v 1.8 2002/02/04 00:01:50 fukachan Exp $
#
# fml version
# This is important
# Example: fml 5.0
# fml-current YYYYMMDD
# fml-devel YYYYMMDD
fml_version = __fml_version__
fml_owner = @fml_owner@
fml_group = @fml_group@
###
### DIRECTORIES
###
# Example: /usr/local
prefix = @prefix@
exec_prefix = @exec_prefix@
# $config_dir holds the global main configuration and
# several version-dependent default configurations
# Example: /etc/fml
config_dir = @fmlconfdir@
# Example: /etc/fml/defaults/$fml_version
default_config_dir = $config_dir/defaults/$fml_version
# defined for convenience, for example, we need this variable
# at include, include-ctl, which needs expansion of ../libexec/fml/fml.pl
# Example: /usr/local/libexec/fml
executable_prefix = @libexecdir@/fml
# Example: /usr/local/libexec/fml/$fml_version
libexec_dir = @libexecdir@/fml/$fml_version
# Example: /usr/local/lib/fml/$fml_version
lib_dir = @libdir@/fml/$fml_version
# Example: /usr/local/share/fml/$fml_version
share_dir = @datadir@/fml/$fml_version
# site local library location
# which is prepared but not used by fml itself
local_lib_dir = @libdir@/fml/site_local
# ml's home directories
# $ml_home_dir (e.g. /var/spool/ml/elena ) is taken from loader's @ARGV.
# This is compatible with fml 4.0.
# Example: /var/spool/ml
default_ml_home_prefix = /var/spool/ml
###
### CONFIGURATION FILES AND DEFAULT PARAMETERS
###
# default domain
default_domain = fml.org
# version dependent default_config.cf location
# whic holds
# Example: /etc/fml/defaults/5.0/default_config.cf
default_config_cf = $default_config_dir/default_config.cf
# domain specific configurations
# Example: /etc/fml/domains/fml.org/default_config.cf
domain_default_config = $config_dir/domains/$default_domain/config.cf
# virtual format: domain directory
# for example,
# fml.org /var/spool/ml/fml.org
# nuinui.net /var/spool/ml/nuinui.net
virtual_maps = $config_dir/virtual
|