Module components

Source
Expand description

组件解析器模块

包含所有Postfix组件的专用解析器,每个组件对应一个解析器实现。 这些解析器负责将原始日志消息转换为结构化的事件数据。 组件解析器模块

每个Postfix组件都有对应的解析器,负责解析该组件产生的日志

Re-exports§

pub use bounce::BounceParser;
pub use cleanup::CleanupParser;
pub use error::ErrorParser;
pub use local::LocalParser;
pub use master::MasterParser;
pub use postfix_script::PostfixScriptParser;
pub use postmap::PostmapParser;
pub use postsuper::PostsuperParser;
pub use qmgr::QmgrParser;
pub use relay::RelayParser;
pub use smtp::SmtpParser;
pub use smtpd::SmtpdParser;
pub use virtual_parser::VirtualParser;

Modules§

anvil
Anvil 连接统计组件解析器
bounce
Bounce 退信处理组件解析器
cleanup
清理(cleanup)组件解析器
discard
Discard 邮件丢弃组件解析器
error
Error 错误处理组件解析器
local
本地投递(local)组件解析器
master
Master 主控进程组件解析器
pickup
Pickup 邮件拾取组件解析器
postfix_script
Postfix Script 系统脚本组件解析器
postlogd
Postlogd 日志服务组件解析器
postmap
Postmap 映射表管理组件解析器
postsuper
Postsuper 邮件队列管理组件解析器
proxymap
Proxymap 映射代理组件解析器
qmgr
队列管理器(qmgr)组件解析器
relay
Relay 邮件中继组件解析器
sendmail
Sendmail 兼容接口组件解析器
smtp
SMTP 邮件投递组件解析器
smtpd
SMTPD 邮件接收服务组件解析器
trivial_rewrite
Trivial Rewrite 地址重写组件解析器
virtual_parser
虚拟投递(virtual)组件解析器

Traits§

ComponentParser
组件解析器trait