mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
25 lines
515 B
Plaintext
25 lines
515 B
Plaintext
require ["variables"];
|
|
set "honorific" "Mr";
|
|
set "vacation" text:
|
|
Dear ${HONORIFIC} ${last_name},
|
|
I am out, please leave a message after the meep.
|
|
.
|
|
;
|
|
set :length "b" "${a}";
|
|
set :lower "b" "${a}";
|
|
set :upperfirst "b" "${a}";
|
|
set :upperfirst :lower "b" "${a}";
|
|
set :quotewildcard "b" "Rock*";
|
|
if string :matches " ${state} " "* pending *"
|
|
{
|
|
set "test1" "*";
|
|
}
|
|
if string ["aaa","bbb"] ["aaa","bbb"]
|
|
{
|
|
set "test2" "*";
|
|
}
|
|
if string :is :comparator "i;octet" "bbb" "bbb"
|
|
{
|
|
set "test3" "*";
|
|
}
|