diff options
author | Runxi Yu <me@runxiyu.org> | 2025-09-14 22:28:12 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-09-14 22:28:12 +0800 |
commit | 01e4fd482ebcc827d3c76c00910529abbf666454 (patch) | |
tree | 300156b866864a07a0ed7680e6572ae97c20e325 /forge.scfg | |
parent | Update dependencies (diff) | |
download | forge-01e4fd482ebcc827d3c76c00910529abbf666454.tar.gz forge-01e4fd482ebcc827d3c76c00910529abbf666454.tar.zst forge-01e4fd482ebcc827d3c76c00910529abbf666454.zip |
Add basic mailing listspre-refactor
Diffstat (limited to 'forge.scfg')
-rw-r--r-- | forge.scfg | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -99,6 +99,28 @@ lmtp { write_timeout 300 } +smtp { + # Outbound SMTP relay configuration for mailing list delivery + + # What network transport to use (e.g. tcp, tcp4, tcp6)? + net tcp + + # Relay address + addr 127.0.0.1:25 + + hello_name forge.example.org + + # One of "plain", "tls", "starttls". + transport plain + + # Allow invalid certs + tls_insecure false + + # SMTP auth credentials + username "" + password "" +} + pprof { # What network to listen on for pprof? net tcp |