Skip to content
Snippets Groups Projects

DDMsgReader: Refactored how email replies are done (passing the header to the appropriate functions, not using ungetstr() when prompting for the message subject

Merged Eric Oulashin requested to merge dd_msg_reader_email_reply_update into master
2 unresolved threads

DDMsgReader v1.55: Refactored how email replies are done (passing the header to the appropriate functions, not using ungetstr() when prompting for the message subject

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
9894 if (pMsgHdr.from_net_type == NET_INTERNET)
9895 emailAddr = pMsgHdr.from_net_addr;
9896 else
9897 emailAddr = pMsgHdr.from + "@" + pMsgHdr.from_net_addr;
9897 if (typeof(pMsgHdr.from_net_addr) === "string" && pMsgHdr.from_net_addr.length > 0)
9898 {
9899 if (pMsgHdr.from_net_type == NET_INTERNET)
9900 emailAddr = pMsgHdr.from_net_addr;
9901 else
9902 emailAddr = pMsgHdr.from + "@" + pMsgHdr.from_net_addr;
9903 }
9898 9904 // Prompt the user to verify the receiver's email address
9899 9905 console.putmsg(bbs.text(Email), P_SAVEATR);
9900 console.ungetstr(emailAddr);
9906 if (emailAddr.length > 0)
9907 console.ungetstr(emailAddr);
  • Rob Swindell
    Rob Swindell @rswindell started a thread on an outdated change in commit 1c749ca2
  • 9916 9922 }
    9917 9923 if (replyLocally)
    9918 9924 {
    9925 //console.print("\x01n\r\nHere!\x01p"); // Temporary
  • Eric Oulashin added 1 commit

    added 1 commit

    Compare with previous version

  • Rob Swindell approved this merge request

    approved this merge request

  • Rob Swindell mentioned in commit bf125f60

    mentioned in commit bf125f60

  • merged

  • Rob Swindell mentioned in commit 2baca58c

    mentioned in commit 2baca58c

  • Please register or sign in to reply
    Loading