0

我们的团队(企业环境)需要监控几个匿名帐户的 Outlook 收件箱,以查找特定类型的退回电子邮件。

WebDAV(使用 C# 2.0)是我们已经走过的路径之一,我们几乎到了那里,除了一个小问题:我们收到以下电子邮件正文元素的响应

<a:propstat>
  <a:status>HTTP/1.1 404 Resource Not Found</a:status> 
- <a:prop>
  <a:htmldescription /> 
  <a:textdescription /> 
  </a:prop>
  </a:propstat>  

唯一真正的共同点是它只发生在我们的 Exchange 服务器以“无法投递”的形式返回给我们的邮件上。注意:所有其他电子邮件都很好。

有什么想法吗?

4

1 回答 1

1

It looks like undeliverable messages in Exchange have a content-type of "multipart/report; report-type=delivery-status". Probably because they don't have a body, just a summary of the delivery attempt which can actually all be gathered from the Headers of the message. Perhaps the WebDAV access (I don't have access to an OWA account right now to check) doesn't know what to do with that, i.e. is just thinks the e-mails don't have a body.

于 2008-09-05T10:32:42.373 回答