Skip to content
Snippets Groups Projects

DDMsgReader: Fix for #499 (error when replying to emails from 'All' or unknown sender)

Closed DDMsgReader: Fix for #499 (error when replying to emails from 'All' or unknown sender)
1 unresolved thread
Closed Eric Oulashin requested to merge dd_msg_reader_unknown_sender_reply_fix into master
1 unresolved thread

DDMsgReader: Fix for #499 (closed) - When replying to an email with an unknown sender (empty or "All"), no longer gives the error "Invalid user field: 0"; also, if the sender is unknown, prompts the user for a user name/number/email address to send the reply to.

Merge request reports

Pipeline #3652 passed

Pipeline passed for ab22faa2 on dd_msg_reader_unknown_sender_reply_fix

Closed by Eric OulashinEric Oulashin 2 years ago (Jan 22, 2023 7:30pm UTC)

Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
10083 10089 }
10084 10090 else
10085 10091 {
10086 retObj.sendSucceeded = false;
10087 console.crlf();
10088 console.print();
10089 var errorMsg = "\x01n\x01h\x01yThe recipient (\x01w" + pMsgHdr.from + "\x01y) was not found";
10090 if (wasNetMailOrigin)
10091 errorMsg += " and no network address was found for this message";
10092 errorMsg += "\x01n";
10093 console.crlf();
10094 console.pause();
10092 // If the 'from' username is "All" or blank (which can be the case if a guest sent the email), then
10093 // ask the user where or to whom they want to send the message
10094 if (pMsgHdr.from.length == 0 || pMsgHdr.from.toUpperCase() === "ALL")
  • closed

  • Please register or sign in to reply
    Loading