forked from Proxmox/proxmox
7c42752690
This plugin uses the 'sendmail' command to send an email to one or more recipients. Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
24 lines
681 B
TOML
24 lines
681 B
TOML
[package]
|
|
name = "proxmox-notify"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
exclude.workspace = true
|
|
|
|
[dependencies]
|
|
handlebars = { workspace = true, optional = true }
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
openssl.workspace = true
|
|
proxmox-schema = { workspace = true, features = ["api-macro", "api-types"]}
|
|
proxmox-section-config = { workspace = true }
|
|
proxmox-sys = { workspace = true, optional = true }
|
|
regex.workspace = true
|
|
serde = { workspace = true, features = ["derive"]}
|
|
serde_json.workspace = true
|
|
|
|
[features]
|
|
default = ["sendmail"]
|
|
sendmail = ["dep:handlebars", "dep:proxmox-sys"] |