mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
18 lines
395 B
Plaintext
18 lines
395 B
Plaintext
require ["envelope","notify","variables"];
|
|
# rule:[from]
|
|
if envelope :matches "from" "*"
|
|
{
|
|
set "env_from" " [really: ${1}]";
|
|
}
|
|
# rule:[subject]
|
|
if header :matches "Subject" "*"
|
|
{
|
|
set "subject" "${1}";
|
|
}
|
|
# rule:[from notify]
|
|
if address :matches "from" "*"
|
|
{
|
|
set "from_addr" "${1}";
|
|
notify :method "sms" :options "1234567890" :message "${from_addr}${env_from}: ${subject}";
|
|
}
|