blob: c7ff9890541d2823643346276344cb500aa06432 (
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
|
package config
const (
ApplicationDirectory = "dove"
ConfigDirectoryPermissions = 0755
ConfigFileName = "config.toml"
ConfigFilePermissions = 0644
CurrentDirectory = "."
GoBuildAltIndicator = "go_build"
GoBuildPathIndicator = "go-build"
LogPrefix = "Config"
BindAddress = "127.0.0.1"
HttpPort = 80
DnsPort = 53
SmtpPort = 25
SmtpsPort = 465
SubmissionPort = 587
ImapPort = 143
ImapsPort = 993
Pop3Port = 110
Pop3sPort = 995
S3Port = 9000
)
|