1//go:build !docker2// +build !docker34package maddy56var (7 // ConfigDirectory specifies platform-specific value8 // that should be used as a location of default configuration9 //10 // It should not be changed and is defined as a variable11 // only for purposes of modification using -X linker flag.12 ConfigDirectory = "/etc/maddy"1314 // DefaultStateDirectory specifies platform-specific15 // default for StateDirectory.16 //17 // Most code should use StateDirectory instead since18 // it will contain the effective location of the state19 // directory.20 //21 // It should not be changed and is defined as a variable22 // only for purposes of modification using -X linker flag.23 DefaultStateDirectory = "/var/lib/maddy"2425 // DefaultRuntimeDirectory specifies platform-specific26 // default for RuntimeDirectory.27 //28 // Most code should use RuntimeDirectory instead since29 // it will contain the effective location of the state30 // directory.31 //32 // It should not be changed and is defined as a variable33 // only for purposes of modification using -X linker flag.34 DefaultRuntimeDirectory = "/run/maddy"3536 // DefaultLibexecDirectory specifies platform-specific37 // default for LibexecDirectory.38 //39 // Most code should use LibexecDirectory since it will40 // contain the effective location of the libexec41 // directory.42 //43 // It should not be changed and is defined as a variable44 // only for purposes of modification using -X linker flag.45 DefaultLibexecDirectory = "/usr/lib/maddy"46)