windows Outlook在对数字签名/加密邮件执行“保存为”时提示用户

5cg8jx4n  于 2023-11-21  发布在  Windows
关注(0)|答案(1)|浏览(140)

保存(保存为)数字签名邮件时,Outlook会向用户提示一个消息框问题“您即将以不安全的格式保存数字签名电子邮件。是否继续?"。
我需要Outlook在不显示消息框的情况下保存该消息。是否有任何方法可以通过Outlook设置、注册表项或编程方式抑制此消息?
另一个复杂的是,Outlook是通过服务执行.我可以成功地以编程方式响应消息框是各种方式,但没有一个工作时,作为一个服务运行. SendKeys,SendMessage,PostMessage和SendInput都工作时,在桌面上运行,但失败时,作为一个服务运行.

  1. Process p = Process.GetProcessesByName("OUTLOOK").FirstOrDefault();
  2. if (p != null)
  3. {
  4. IntPtr h = p.MainWindowHandle;
  5. SetForegroundWindow(h);
  6. // SendKeys works when running on the desktop, but not when running as a service.
  7. SendKeys.SendWait("y");
  8. // SendMessage works when running on the desktop, but not when running as a service.
  9. SendMessage(h, WM_KEYDOWN, 0x59, 0);
  10. // PostMessage works when running on the desktop, but not when running as a service.
  11. PostMessage(h, WM_KEYDOWN, 0x59, 0);
  12. // SendInput works when running on the desktop, but not when running as a service.
  13. Input[] inputs = new Input[]
  14. {
  15. new Input
  16. {
  17. type = (int)InputType.Keyboard,
  18. u = new InputUnion
  19. {
  20. ki = new KeyboardInput
  21. {
  22. wVk = 0,
  23. wScan = 0x15, // Y
  24. dwFlags = (uint)(KeyEventF.KeyDown | KeyEventF.Scancode),
  25. dwExtraInfo = GetMessageExtraInfo()
  26. }
  27. }
  28. },
  29. new Input
  30. {
  31. type = (int)InputType.Keyboard,
  32. u = new InputUnion
  33. {
  34. ki = new KeyboardInput
  35. {
  36. wVk = 0,
  37. wScan = 0x15, // Y
  38. dwFlags = (uint)(KeyEventF.KeyUp | KeyEventF.Scancode),
  39. dwExtraInfo = GetMessageExtraInfo()
  40. }
  41. }
  42. }
  43. };
  44. SendInput((uint)inputs.Length, inputs, Marshal.SizeOf(typeof(Input)));
  45. }

字符串
这是一种抑制或响应对话框的方法吗?Outlook加载项可以检测到对话框并将其关闭吗?

llycmphe

llycmphe1#

只有当您从outlook.exe地址空间外部访问OOM时,才会显示签名/加密邮件的提示。提供给Outlook Outlook Explorer或COM/VSTO加载项的Outlook.Application对象是受信任的,不会显示该提示。
如果可以选择使用Redemption,(我是它的作者),赎回不会显示任何提示:您可以使用GetMessageFromIdGetRDOObjectFromOutlookObject重新打开消息。注意,对于签名/加密的消息,结果将是不同的-因为OOM非常努力地将所有签名/加密的消息表示为常规邮件项目,GetRDOObjectFromOutlookObject将产生未签名/解密的消息,而GetMessageFromId处理存储在父消息存储中的消息,生成的MSG文件将以原始形式存储消息-签名/加密。

  1. set Application = CreateObject("Outlook.Application.16")
  2. set item = Application.ActiveExplorer.Selection(1)
  3. 'item.SaveAs "c:\temp\signed.msg", olMsgUnicode
  4. set rSession = CreateObject("Redemption.RDOSession")
  5. rSession.MAPIOBJECT = Application.Session.MAPIOBJECT
  6. set rItem = rSession.GetRDOObjectFromOutlookObject(item)
  7. rItem.SaveAs "c:\temp\unsigned.msg", olMsgUnicode
  8. set rItem = rSession.GetMessageFromID(item.EntryID)
  9. rItem.SaveAs "c:\temp\signed.msg", olMsgUnicode

字符串

展开查看全部

相关问题