Lotus Domino 點解無IRM / RMS 架??

最近好好好忙,有客問緊係MS 的RMS 方案,係AD 係有一個RMS server , 人地好先進架....


001


係office 2007 / 2010 , 只要按個制,可以唔比其他人睇,

E-mail 都係,可以用RMS / IRM 唔比其他人睇信,例如好多老闆,個秘書可以睇老闆D信,但係可以用IRM 加密左封,要老闆自己個login 先開到

咁Lotus Domino 有無架.....

好簡單之嘛....

係Lotus Domino 有個encrypt 功能,可以用你個Lotus Notes 的User ID 加密資料,咁咪得相關收件人先見到 ....

係send E-mail 時,按 Delivery Options , 再按 Encrypt 可以了 (sign 係電子簽名, 確保對方收到的電郵無比人修改過...) , 仲可以用 'prevent copying' 唔比人係lotus notes client 用copy 抄內容 ... 


002

不過你唔可以阻止人地用print screen , 或者人手抄寫data 啦... 全世界的RMS / IRM 都係咁...

你咁玩我點block 你呀... 一係唔好比我睇....


005

Reminder :

  1. subject 係不會encrypt 的
  2. 只限Lotus Notes 的user. 如果你比其他internet user , 佢會提你,對方會收到無encrypt 的電郵

    003
  3. 如果對方用mobile device , 係iOS 要用Lotus Notes Traveler Companion ,係android的lotus traveler client,同埋upload張user ID係lotus traveler server上,由Lotus traveler代為decrypt E-mail

咁如果你想係你自己寫的application 加密, 可以試下以下的code (唔係我寫的.... )

Dim item1 as notesitem
Dim item2 as notesitem
Dim item3 as notesitem

Set item1 = doc.getFirstItem("Password")
Set item2 = doc.getFirstItem("Att")
Set item3 = doc.getFirstItem("Filert")

item1.IsEncrypted = True
item3.IsEncrypted = True
item3.IsEncrypted = True
doc.EncryptionKeys = newKey
success = doc.computewithform(True, False)
Call doc.Encrypt
Call doc.Save(True, True)
remark :

ref:

Code example:

http://www-10.lotus.com/ldd/nd6forum.nsf/4d21f120f5a2cf4985256a150076d0d5/dda433ffae336e838525772a0038523a?OpenDocument

Add comment


Security code
Refresh