如何将 Lotus *.shb 文件映射到电子邮件

发布于 2024-08-12 01:17:22 字数 120 浏览 4 评论 0原文

我有来自 Lotus Notes 的 *.shb 文件(可能是文档链接),我需要以某种方式将其映射到具体的电子邮件,然后对其进行处理。如何接收来自 *.shb 的邮件?

注意:我使用 C#,但它可以是任何语言。

I have *.shb file (probably document link) from Lotus Notes and I need to map it somehow to concrete e-mail and then process it. How can I receive mail from *.shb?

Note: I use C#, but it could be in any language.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖乖 2024-08-19 01:17:22

shb是Windows中双击打开特定文档的快捷方式;由 Windows Shell 废料对象处理程序 (shscrap.dll) 执行。
它类似于 .LNK 文件,但不那么常用;也称为“Windows 文档快捷方式”。

看到这里,也许这个线程会提供更多信息:
http://blogs.msdn.com/b/oldnewthing /archive/2007/11/12/6122832.aspx

因此,显然,当您将 Notes 文档拖放到 Windows 上下文中时,就会创建 shb 文件。

当您在文本编辑器中打开 shb 文件时,您会看到什么?
如果您可以看到类似这样的一些格式

-链接描述:

应用程序“MailDb”,视图“收件箱”,文档“文档主题”

-数据库副本ID:

C125722E: 00342CBB

- 查看 id / 文档 ID:

OF38D45BF5:E8F08834-ON852564B5:00129B2C

您可以构建可在 Web 浏览器或 Lotus Notes 客户端中打开的 URL,并打开数据库 >查看>将此文档附加到 Domino 服务器的 url(对于 Web 浏览器)或“notes://server”(对于 Notes 客户端):

/Database/View/Document?OpenDocument

有关 Lotus Domino URL 构造规则的更多信息,请参阅此处:
http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=/com.ibm.designer.domino.main.doc/H_ABOUT_DOMINO_URL_COMMANDS_4332.html

shb is a shortcut that opens a specific document in Windows when double-clicked; executed by the Windows Shell Scrap Object Handler (shscrap.dll).
It's similar to a .LNK file, but not as commonly used; also known as a "Windows Shortcut into a Document."

See here, maybe this thread will provide more info:
http://blogs.msdn.com/b/oldnewthing/archive/2007/11/12/6122832.aspx

So, apparently, the shb file is created when you drag-and-drop a Notes document into a Windows context.

What do you see when you open a shb file in text editor?
If you can see some of the formats like this

- Link description:

Application 'MailDb', View 'Inbox', Document 'Doc Subject'

- db replica ID:

C125722E:00342CBB

- View id / Document ID:

OF38D45BF5:E8F08834-ON852564B5:00129B2C

you could construct URLs that would open in either web browser or Lotus Notes client and open the database > view > document by appending this to your Domino server's url (for web browser) or to "notes://server" (for Notes client) :

/Database/View/Document?OpenDocument

See here for more info on Lotus Domino URL construction rules:
http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=/com.ibm.designer.domino.main.doc/H_ABOUT_DOMINO_URL_COMMANDS_4332.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文