PC MAPI: Err Msg: MAPI ERROR: Unknown Recipient

Last reviewed: October 25, 1994
Article ID: Q93176
The information in this article applies to:
  • Microsoft Mail for Windows, versions 3.0, 3.0b, and 3.2

SYMPTOMS

If you follow the directions on the MAPI technical reference disk (included with Microsoft Mail for Windows versions 3.0, 3.0b and 3.2) to create and use HELPREQ.EXE, you may receive the following error after you try to send a help request to yourself:

   MAPI ERROR: Unknown Recipient

CAUSE

HELPREQ.EXE does not deliver the help request correctly because the code in the HELPREQ.C F ProcessHelpRequest section interchanges the recipient name and the recipient address values. It doesn't work when you send Mail to an address such as /network/postoffice/johndoe. It does work correctly when you send Mail to a resolved name (such as John Doe), contrary to what is listed on page 40 of the Microsoft Mail 3.0 "Technical Reference."

The Microsoft Mail "Technical Reference" also shows incorrect syntax for the address, omitting "ms:". It should be "ms:network/postoffice/johndoe" instead of "/network/postoffice/johndoe".

STATUS

Microsoft has confirmed this to be a problem in Microsoft Mail for Windows versions 3.0, 3.0b, and 3.2. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

RESOLUTION

You can resolve this problem by interchanging the values for "recip.lpszName" and "recip.lpszAddress" in the following section of code in HELPREQ.C. The value assignments shown below are correct.

Partial Section of Code for HELPREQ.C

   BOOL FProcessHelpRequest(HWND hDlg, BOOL fSend, BOOL fReadDialog)

   // Now we need to create a message with this file as the attachment
   recip.ulReserved = NULL;
   recip.ulRecipClass = MAPI_TO;
   GetDlgItemText(hDlg, IDD_TO, szValue, cbValue);
-> recip.lpszName = NULL; -> recip.lpszAddress = szValue;


Additional reference words: 3.00 3.00b 3.20 ErrMsg DocErr
KBCategory: kbprg kbbug3.00 kbbug3.00b kbbug3.20 kbdocerr
KBSubCategory: MailPCMAPI


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 25, 1994
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.