lotus-notes

How to fetch message body and attachments in XML format using php/linux from Lotus Domino server?

家住魔仙堡 提交于 2019-12-12 12:29:20
问题 Has anybody some information about accessing Lotus Domino server to fetch entire mail contents by http(s) requests from php linux server? The article by Andrei Kouvchinnikov describes well how to fetch message list in notes mail folders; after obtaining session id during login one can for example select top 100 messages by calling: https://your.server.domain/mail_db/mailbox.nsf/($Inbox)?ReadViewEntries&Start=1&Count=100 And this works perfectly. The problem arises when I am trying to get

How to do Exact match in FT search in xpages

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-12 06:47:47
问题 I used exact match search in in xpage view panel(Version 8.5.2). But I could not get it to work. I used the following code Field EmpName="Kumar" . When I search Kumar, The ft search returning Empname contains "Kumar Vijay". 回答1: That's the way FT indexing and search work. The word you searched for is found in the item and that's why it is returned. You'll need to use for example the keys property in View Panel for exact match. 来源: https://stackoverflow.com/questions/20097791/how-to-do-exact

xPages don't work after design update

核能气质少年 提交于 2019-12-12 06:47:05
问题 Load any xPage Refresh db design Reload the xPage by either F5 or Ctrl+F5. then almost all functions stop working without any errors. E.g. nothing happen if you click buttons or menu items. After restarting web browser some functions come back but some still doesn't work. After cleaning browser's cache almost 90% UI start working but some still need to reload the page few times. Is there any xPage app properties or Domino properties to adjust to fix that problem and make xPage app work smooth

How to specify agent / formula to retrieve documents by criteria

馋奶兔 提交于 2019-12-12 06:16:11
问题 The form contains "searchInputField" and simple button for it. Below the button, there is a view. How can i specify SELECT formula in VIEW according to searchInputCriteria? I want to refresh VIEW when button is clicked after setting "searchInputField". It should be like simple custom search. On button click i have done: @SetEnvironment("criteria", "searchInputField"); @Command([RunAgent];"searchAgent"); @Command([ViewRefreshFields]); My agent does: SELECT @Like(propertyA, @Environment(

Clickable format to email links in lotus notes

送分小仙女□ 提交于 2019-12-12 05:34:08
问题 I am working on an application with xpages.I would like to send emails with that contain links. When I send the link, it does not appear in clickable format.Can someone help me to have clickable format? Thank you var db = session.getCurrentDatabase(); var memo = db.createDocument(); memo.appendItemValue("Body","http://www.my_link.com"); memo.appendItemValue("Form", "Memo"); memo.appendItemValue("Subject", "New task !"); var t = mail.getValue(); memo.send(t); 回答1: If you do it like this, the

How to prevent local replication of a company database

戏子无情 提交于 2019-12-12 05:20:02
问题 I have a big Lotus Notes company database containing sensitive data and I want to prevent normal users to replicate this database locally. Explanation of the main problems : sensitive data on laptop server deleted documents reappear if the purge interval is more frequent than local replications server deleted documents reappear if users modify them locally These solutions are NOT working in my context : uncheck the "replicate or copy documents" in the ACL for users. If done, users cannot copy

Launch xpages application in home screen

拟墨画扇 提交于 2019-12-12 04:59:26
问题 I am trying to launch a XPage(web) mobile application from a email(Lotus traveller). When I use a simple HREF in email body (using stream and MIME), xpage(web) mobile application opens in a new window on ipad ( which I believe is expected from Ipad) and displays address bar. The same page when opened from homescreen does not display address bar. I have used following on my mobile page <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style"

Lotus Notes: Replication conflict caused by agent and user running on the document at same time

廉价感情. 提交于 2019-12-12 04:58:51
问题 In one of the lotus notes db, too frequent replication/save conflicts are caused reason being a scheduled agent and any user working on the document at the same time. is there any way to avoid this. Thanks, H.P. 回答1: Several options in addition to merging conflicts: Change the schedule The best way to avoid it is to have your scheduled agents running at times when users are not likely to be accessing the system. If the LastContact field on a Client document is updated by an agent every hour

Manage ACL for the entire users in domino

十年热恋 提交于 2019-12-12 04:56:22
问题 Is it be possible to have a common ACL rule to the list of users? basically this rule will be for the mail access (read and write documents with no access)).We would able to achieve it my managing the ACL at a point of time. But later if any new user is onboarded, is it possible to force to be with the same ACL. Suggestions please.. 回答1: If you want to create a set of standard ACL entries you can do so by creating ACL entries in the design template with names in square brackets. For example

lotus script to get register use OU and O?

坚强是说给别人听的谎言 提交于 2019-12-12 04:55:19
问题 i am trying to get the OU and O from a user ID which is newly created TestUser1.id Question: i want to get full path of the new register ID. 1) Without login to that account to return the user ID Information ? Full path = CN=TestUser1/OU=Software/O=pcs Sub Initialize Dim session As New NotesSession Dim adminp As NotesAdministrationProcess Set adminp = _ session.CreateAdministrationProcess(mailsvr) noteid$ = adminp.SetUserPasswordSettings( _ "CN=TestUsesr1/OU=Software/O=pcs", PWD_CHK_LOCKOUT,