fix mail.ensure_new_format() (had lead to wrong TO field when using Reply All), remove player from CC when using Reply All
This commit is contained in:
parent
93d1af947c
commit
0d937711aa
16
gui.lua
16
gui.lua
@ -79,7 +79,7 @@ function mail.show_inbox(name)
|
|||||||
|
|
||||||
if messages[1] then
|
if messages[1] then
|
||||||
for _, message in ipairs(messages) do
|
for _, message in ipairs(messages) do
|
||||||
mail.ensure_new_format(message)
|
mail.ensure_new_format(message, name)
|
||||||
if message.unread then
|
if message.unread then
|
||||||
if not mail.player_in_list(name, message.to) then
|
if not mail.player_in_list(name, message.to) then
|
||||||
formspec[#formspec + 1] = ",#FFD788"
|
formspec[#formspec + 1] = ",#FFD788"
|
||||||
@ -320,6 +320,7 @@ end
|
|||||||
function mail.replyall(name, message)
|
function mail.replyall(name, message)
|
||||||
mail.ensure_new_format(message)
|
mail.ensure_new_format(message)
|
||||||
local replyfooter = "Type your reply here.\n\n--Original message follows--\n" ..message.body
|
local replyfooter = "Type your reply here.\n\n--Original message follows--\n" ..message.body
|
||||||
|
|
||||||
-- new recipients are the sender plus the original recipients, minus ourselves
|
-- new recipients are the sender plus the original recipients, minus ourselves
|
||||||
local recipients = message.to or ""
|
local recipients = message.to or ""
|
||||||
if message.sender ~= nil then
|
if message.sender ~= nil then
|
||||||
@ -333,7 +334,18 @@ function mail.replyall(name, message)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
recipients = mail.concat_player_list(recipients)
|
recipients = mail.concat_player_list(recipients)
|
||||||
mail.show_compose(name, recipients, "Re: "..message.subject, replyfooter, message.cc)
|
|
||||||
|
-- new CC is old CC minus ourselves
|
||||||
|
local cc = mail.parse_player_list(message.cc)
|
||||||
|
for k,v in pairs(cc) do
|
||||||
|
if v == name then
|
||||||
|
table.remove(cc, k)
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
cc = mail.concat_player_list(cc)
|
||||||
|
|
||||||
|
mail.show_compose(name, recipients, "Re: "..message.subject, replyfooter, cc)
|
||||||
end
|
end
|
||||||
|
|
||||||
function mail.forward(name, message)
|
function mail.forward(name, message)
|
||||||
|
@ -49,8 +49,8 @@ function mail.player_in_list(name, list)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function mail.ensure_new_format(message)
|
function mail.ensure_new_format(message, name)
|
||||||
if message.sender then
|
if message.to == nil then
|
||||||
message.to = name
|
message.to = name
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user