Skip to content
Snippets Groups Projects
Commit 3debdf8c authored by rswindell's avatar rswindell
Browse files

Look-up 'to' and 'from' user numbers automatically if not specified on the

command-line (the 'to' is only looked-up for the 'mail' base).
parent fdb86052
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,10 @@ if(!hdrs.from)
hdrs.from = prompt("From User name");
if(!hdrs.subject)
hdrs.subject = prompt("Subject");
if(!hdrs.to_ext && sub_code == 'mail')
hdrs.to_ext = system.matchuser(hdrs.to);
if(!hdrs.from_ext)
hdrs.from_ext = system.matchuser(hdrs.from);
if(!msgbase.save_msg(hdrs, body)) {
alert("Error saving message: " + msgbase.last_error);
exit();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment