maddy

Fork https://github.com/foxcpp/maddy

git clone git://git.lin.moe/go/maddy.git

 1//go:build !docker
 2// +build !docker
 3
 4package maddy
 5
 6var (
 7	// ConfigDirectory specifies platform-specific value
 8	// that should be used as a location of default configuration
 9	//
10	// It should not be changed and is defined as a variable
11	// only for purposes of modification using -X linker flag.
12	ConfigDirectory = "/etc/maddy"
13
14	// DefaultStateDirectory specifies platform-specific
15	// default for StateDirectory.
16	//
17	// Most code should use StateDirectory instead since
18	// it will contain the effective location of the state
19	// directory.
20	//
21	// It should not be changed and is defined as a variable
22	// only for purposes of modification using -X linker flag.
23	DefaultStateDirectory = "/var/lib/maddy"
24
25	// DefaultRuntimeDirectory specifies platform-specific
26	// default for RuntimeDirectory.
27	//
28	// Most code should use RuntimeDirectory instead since
29	// it will contain the effective location of the state
30	// directory.
31	//
32	// It should not be changed and is defined as a variable
33	// only for purposes of modification using -X linker flag.
34	DefaultRuntimeDirectory = "/run/maddy"
35
36	// DefaultLibexecDirectory specifies platform-specific
37	// default for LibexecDirectory.
38	//
39	// Most code should use LibexecDirectory since it will
40	// contain the effective location of the libexec
41	// directory.
42	//
43	// It should not be changed and is defined as a variable
44	// only for purposes of modification using -X linker flag.
45	DefaultLibexecDirectory = "/usr/lib/maddy"
46)