Commit 017184f457f3fa4139953e85cbe154b562a13587
1 parent
3f935a99
global
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
src/services/globald.lua
... | ... | @@ -69,7 +69,8 @@ local function mailQuene() |
69 | 69 | "attachments", email.attachments, |
70 | 70 | "endtime", email.endTime, |
71 | 71 | "mid", email.mid, |
72 | - "timestamp", now | |
72 | + "timestamp", now, | |
73 | + "delayType", email.delayType | |
73 | 74 | ) |
74 | 75 | else |
75 | 76 | redisproxy:hmset(string_format("globalEmail:%s", gid), |
... | ... | @@ -80,7 +81,8 @@ local function mailQuene() |
80 | 81 | "content", email.content, |
81 | 82 | "attachments", email.attachments, |
82 | 83 | "endtime", email.endTime, |
83 | - "timestamp", now | |
84 | + "timestamp", now, | |
85 | + "delayType", email.delayType | |
84 | 86 | ) |
85 | 87 | end |
86 | 88 | end | ... | ... |