#smtp-server #toml-config #plugin-system #list #dynamic #config-file #mailing

app 邮件列表

具有 TOML 配置和动态插件系统的 SMTP 服务器

2 个不稳定版本

0.4.0 2024 年 8 月 5 日
0.3.1 2024 年 7 月 4 日

#38电子邮件

Download history 94/week @ 2024-06-29 17/week @ 2024-07-06 1/week @ 2024-07-13 14/week @ 2024-07-27 113/week @ 2024-08-03 7/week @ 2024-08-10

每月 134 次下载

GPL-3.0 许可证

33KB
822

邮件列表

邮件列表是一个支持插件和广泛配置的 SMTP 服务器

配置

配置的默认位置是 /etc/mailing-list/daemon.toml

示例 daemon.toml

hostname = "example.com"
port = 25

# Load plugins
plugins = [
    "libplugin.so",
]

# Dynamically load other list
[lists."<[email protected]>".Remote]
location = "members.toml"

# List directly in this file
[lists."<[email protected]>".Local]
members = ["[email protected]", "[email protected]"]

# If no defined users, send to another server
[forwarding]
enable = true
server = "[127.0.0.1]"
server_tls = "example.org"
port = 2525

members.toml

[[medlemmar]]
namn = "Foo"
mail = "[email protected]"

[[medlemmar]]
namn = "Bar"
mail = "[email protected]"

依赖关系

~25–37MB
~660K SLoC