This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| reference:user_routing_script [2018/11/14 10:45] – external edit 127.0.0.1 | reference:user_routing_script [2023/03/27 10:32] (current) – paul | ||
|---|---|---|---|
| Line 42: | Line 42: | ||
| < | < | ||
| --Don' | --Don' | ||
| - | if (string.find(Sender, | + | if string.find(Sender, |
| ShouldForward = false; | ShouldForward = false; | ||
| end | end | ||
| </ | </ | ||
| - | ====If | + | ====If the sender is user@domain.com forward to person@mycompany.com==== |
| < | < | ||
| --If the sender is user@domain.com forward to person@mycompany.com | --If the sender is user@domain.com forward to person@mycompany.com | ||
| - | if (string.lower(Sender) == " | + | if string.lower(Sender) == " |
| Forwards = " | Forwards = " | ||
| UseForwards = true; | UseForwards = true; | ||
| Line 59: | Line 59: | ||
| </ | </ | ||
| + | ====If the time is currently in the morning, override the assistant to send to someone else==== | ||
| + | |||
| + | < | ||
| + | now = os.date(" | ||
| + | if now.hour < 12 then | ||
| + | Assistants = " | ||
| + | end | ||
| + | </ | ||
| + | |||
| + | ====If the current time is between 10:00 on 2nd March 2023 and 17:00 on 5th March 2023, then forward==== | ||
| + | |||
| + | < | ||
| + | now = os.date(" | ||
| + | if (now >= " | ||
| + | Forwards = " | ||
| + | UseForwards = true; | ||
| + | ShouldForward = true; | ||
| + | end | ||
| + | </ | ||