<div class="content" name="FAX_SetMessage" uuid="86a77f77-07d5-4a8b-97a4-057f9d682d4f"><p>The fax client application calls the <b>FAX_SetMessage
(Opnum 103)</b> method to set the specific message properties for the message
identified by its ID.<a id="Appendix_A_Target_162"></a><a aria-label="Product behavior note 162" href="056171e7-80bc-45ff-8107-66ba3abb2023#Appendix_A_162" data-linktype="relative-path">&lt;162&gt;</a> The <i>dwlMessageId</i>
parameter specifies a particular message and can be obtained using the <b>FAX_EnumMessages</b> (section
<a href="365c2295-c0f9-44bd-a72b-6db0b16c0f8f" data-linktype="relative-path">3.1.4.1.24</a>) method or
the <b>FAX_EnumMessagesEx</b> (section <a href="43cf8eed-1cf3-4240-80c5-6f8d1d082084" data-linktype="relative-path">3.1.4.1.25</a>) method.</p><p>In response, the server MUST validate whether the client&#39;s
fax user account has access to set the message properties. The server MUST also
confirm if the dwlMessageId specified by the client refers to a valid message
and the client&#39;s fax user account has access to this message in the specified
folder. On success, the server MUST set the specified message properties,
enabled using the <b>dwValidityMask</b> member of the <b>FAX_MESSAGE_PROPS</b> (section
<a href="f7328ae4-0a62-4381-9e6b-14c306a3b065" data-linktype="relative-path">2.2.15</a>) structure, for
the fax message.</p><p>Protocol version FAX_API_VERSION_0 (0x00000000),
FAX_API_VERSION_1 (0x00010000), and FAX_API_VERSION_2 (0x00020000) fax servers
SHOULD NOT implement this call. The fax client MUST NOT call this method if the
protocol version reported by the server is FAX_API_VERSION_0 (0x00000000),
FAX_API_VERSION_1 (0x00010000), or FAX_API_VERSION_2 (0x00020000). For more
information, see <b>FAX_ConnectFaxServer</b> (section <a href="5cbfd38d-7a14-4560-ad24-9ed78f19a3bb" data-linktype="relative-path">3.1.4.1.10</a>).</p><dl>
<dd>
<div><pre> error_status_t FAX_SetMessage(
   [in] handle_t hFaxHandle,
   [in] DWORDLONG dwlMessageId,
   [in] FAX_ENUM_MESSAGE_FOLDER Folder,
   [in, ref] PFAX_MESSAGE_PROPS lpMessageProps
 );
</pre></div>
</dd></dl><p><b>hFaxHandle: </b>The RPC binding handle for this
call. The client SHOULD reuse the RPC binding handle used as an input <i>hBinding</i>
argument for the <b>FAX_ConnectFaxServer</b> or <b>FAX_ConnectionRefCount</b> (section
<a href="a92941ac-bd07-4a71-af85-c2c157c97cf9" data-linktype="relative-path">3.1.4.1.11</a>) method call
used to connect to the fax server. </p><p><b>dwlMessageId: </b>The unique ID number of the fax
message.</p><p><b>Folder: </b>Identifies the location of the fax
message. The value in this parameter MUST come from the <b>FAX_ENUM_MESSAGE_FOLDER</b>
(section <a href="1c7a6f3f-1e5b-40a2-bc48-0729f3a6cf0d" data-linktype="relative-path">2.2.2</a>)
enumeration. It can be set to the FAX_MESSAGE_FOLDER_INBOX or
FAX_MESSAGE_FOLDER_SENTITEMS constant.</p><p><b>lpMessageProps: </b>This MUST be a pointer to a <b>FAX_MESSAGE_PROPS</b>.
Contains the property settings for the fax message identified by dwlMessageId.</p><p><b>Return Values: </b>This method MUST return
0x00000000 (ERROR_SUCCESS) for success; otherwise, it MUST return one of the
following error codes, one of the fax-specific errors that are defined in
section <a href="cbe6c4fb-4dda-4f6c-9701-0d490ba0d105" data-linktype="relative-path">2.2.52</a>, or one
of the other standard errors defined in <a href="../ms-erref/1bc92ddf-b79e-413c-bbaa-99a5281a6c90" data-linktype="relative-path">[MS-ERREF]</a>
section <a href="../ms-erref/18d8fbe8-a967-4f1c-ae50-99ca8e491d2d" data-linktype="relative-path">2.2</a>.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Return value/code</p>
   </th>
   <th>
   <p>Description</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>ERROR_ACCESS_DENIED 0x00000005</td>
  <td>Access is denied. The client&#39;s fax user account does not have the ALL_FAX_USER_ACCESS_RIGHTS access rights required for this operation.</td>
 </tr><tr>
  <td>ERROR_INVALID_PARAMETER 0x00000057</td>
  <td>The parameter is incorrect. This error code is returned if any of the following conditions are met: § The structure pointed to by the lpMessageProps argument contains invalid data. § The Folder argument has an invalid value (a value other than FAX_MESSAGE_FOLDER_INBOX or FAX_MESSAGE_FOLDER_SENTITEMS). § The dwlMessageId parameter is zero. § In the structure pointed at by the lpMessageProps argument, the dwValidityMask field contains the FAX_MSG_PROP_FIELD_MSG_FLAGS, and the dwMsgFlags field does not contain the FAX_MSG_ALL_FLAGS flag.</td>
 </tr><tr>
  <td>FAX_ERR_MESSAGE_NOT_FOUND 0x00001B61</td>
  <td>The fax message specified by the dwlMessageId argument cannot be found by the fax server in the folder specified by the Folder argument.</td>
 </tr></tbody></table>
</dd></dl><p><b>Exceptions Thrown:</b> No exceptions are thrown
except those that are thrown by the underlying <a href="46aba9c4-ebb1-4b10-86ac-4bb3025657b9#gt_8a7f6700-8311-45bc-af10-82e10accd331" data-linktype="relative-path">RPC</a> protocol <a href="../ms-rpce/290c38b1-92fe-4229-91e6-4fc376610c15" data-linktype="relative-path">[MS-RPCE]</a>.</p></div>