aboutsummaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-04-01 13:27:26 +0800
committerRunxi Yu <me@runxiyu.org>2025-04-01 13:29:14 +0800
commita8eee4110fe52e132411e4d171e3e08d22fb0079 (patch)
treee09781c31212628dcae8732cdc7087df7f435d54 /config.go
parentStub LMTP listener (diff)
downloadforge-a8eee4110fe52e132411e4d171e3e08d22fb0079.tar.gz
forge-a8eee4110fe52e132411e4d171e3e08d22fb0079.tar.zst
forge-a8eee4110fe52e132411e4d171e3e08d22fb0079.zip
Basic debugging LMTP handler
Diffstat (limited to 'config.go')
-rw-r--r--config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.go b/config.go
index 97e2588..7870a63 100644
--- a/config.go
+++ b/config.go
@@ -32,7 +32,8 @@ var config struct {
Execs string `scfg:"execs"`
} `scfg:"hooks"`
LMTP struct {
- Socket string `scfg:"socket"`
+ Socket string `scfg:"socket"`
+ MaxSize int64 `scfg:"max_size"`
} `scfg:"lmtp"`
Git struct {
RepoDir string `scfg:"repo_dir"`