Отправляет email-рассылки с помощью сервиса Sendsay

Бюллетень "Lotus Notes CodeStore"

  Все выпуски  

Pushing custom or supplied settings from policy to notes.ini or plugin_customization.ini files


Рассылку ведет: Программист на Lotus NotesLotus CoderВыпуск No 197 от 2009-06-26
рассылка о программировании на Lotus Notes/Domino
Обсуждения на форумах, блогах. Примеры программного кода на LotusScript,@formula, Java

рассылка:выпускархивлентаблогсайт

Бюллетень "Lotus Notes CodeStore" Выпуск 13 от 21.04.2008

comp.soft.prog.lotuscodesrore

CodeStore. Примеры кодов

Еще примеры:
Больше кодов на сайтах:

Форумы.Свежи темы и обсуждения

Добрый день!

Знает ли кто-нибудь, как решить эту проблему?
|#^#]>http://www-01.ibm.com/support/docview.wss?...uid=swg21386382|#^#]>

|#^#]>Здесь|#^#]> сказано, что индусы сделали для нее фикс, но по той ссылке его уже скачать нельзя sad.gif

Заранее спасибо!
Всем привет!
Есть вот какая задачка: нужно определить кому из пользователе дана какая роль? Не @UserRoles!!!!!!!!!!!!!
Т.е. грубо говоря... функции надо скормить Lotus-имя пользователя и получить его возможные роли.

задача усложнилась!
Если вдруг пользователя нет в АЦЛ - надо просмотреть все группы в АЦЛ на предмет вхождения в них этого пользователя smile.gif
Интересные темы:
Список форумов:

Tips. Советы

Stephan H Wissel reminds us that a poorly planned upgrade can leave us with a less-than-optimal installation. He lists a number of items to help you clean up your existing installation before starting on an upgrade.

Read | Permalink


SOPHISTICATED MEETS SIMPLE FOR DOCUMENT MANAGEMENT
Share. Control. Manage.
Documents, emails, and content in the context of how work is done. Native to Lotus Domino. The User Experience unseen for Lotus Domino. Do more with less. Really.

See the possibilities Docova unleashes for Lotus Domino.

Tim Tripcony offers a quick tip for adding elements to the OneUI CSS template by wrapping the links. He provides screen shots and code to help you get started.

Read | Permalink
Mainsoft SharePoint Integrator for Lotus Notes version 2.0. introduces support for Lotus Notes 8.5.

Read | Permalink
The 7.5 releases of MyEclipse Enterprise Workbench Professional Edition and MyEclipse Enterprise Workbench Blue Edition, for IBM WebSphere application development have added a Java profiler and speedier response time.

Read | Permalink


NEW!!! NOTES AND DOMINO 8.5 UPDATE COURSES FOR DEVELOPERS AND ADMINSTRATORS
Try a free course at www.tlcc.com/dompower85.

There are a lot of things you can accomplish using the List data type in Lotus Notes. But it doesn't allow you to sort objects alphabetically. This LotusScript code will do the trick.


Mitch Cohen writes about using Javascript to manipulate data in a database, using the Lotus Connections Profiles as an example, with an emphasis on case.

Read | Permalink
Roland Reddekop saw the ID Vault presentation at Lotusphere, read the documentation, and did the testing. Now he has some practical information to share with you before you start your installation.

Read | Permalink

Mikkel Heisterberg heard about a problem with plug-in development that seemed a little strange. Closer investigation found a simple fix.

Read | Permalink

Rob Shaver replied to yesterday's post about using the LastRun property of Scheduled Notes Agents with an another, even better, alternative.

It turns out that Scheduled Agents have their own document/storage area that you can add to and read from. I never knew that!

You get to it via the SavedData property of the Session object (in LotusScript). See help page on it for more.

With a bit of tweaking I re-wrote the code I mentioned yesterday to more accurately find the documents created since it last ran, which is posted below.

This gets round the fact that the agent's LastRun property is the time it last finished. Any documents created while it ran won't ever get processed. Using the agents "saved data" area we can add a more reliable time to state when it began.

 

Set thisAgent = Session.currentAgent
Set agentDoc = Session.SavedData Dim query As String, datepart As String 'Default date string
datepart = "@Adjust(["+Cstr(thisAgent.LastRun) +"];0;0;0;0;0;-30)" If thisAgent.HasRunSinceModified Then If Not agentDoc Is Nothing Then If agentDoc.HasItem("LastBeganAt") Then datepart = "["+Cstr(agentDoc.LastBeganAt(0))+"]" End If End If
Else datepart = "@Adjust(@Now; 0; 0; -1; 0; 0; 0)" 
End If query = {Form="post" & @Created>=}+datepart+{ & Approved="0"} agentDoc.LastBeganAt = Now 'Set this after query is built! Set collection = db.Search(query, Nothing, 0) 'do stuff here agentDoc.Save(True, True)

Forever Learning

How long have I been using Notes now!? Must be getting on for, if not more than, ten years. How this nugget passed my by I don't know. Going back to Monday's whine this is an example of one of the things I do love about this site. Without it I wouldn't know half what I do. The learning process is two-way! Thanks Rob.

Click here to post a response

Now that LotusLive is publically available, Notes/Domino customers are trying to decide if they should make the move to hosted email services. See what the benefits are and what you need to know before moving to hosted email services in this article from industry analyst Karen Hobert.


On the topic of web-form spam and the ever-evolving ways in which I deal with it, I made a change to Rockalldesign.com's Contact Us page so that it sends me a daily digest of the entries made. It gets used so little for the purpose it was intended that it's safe to check once a day if a real person has used it. Most won't mind waiting 24 hours for a reply, I'm sure.

Anyway, here are the email addresses of the "people" who posted on Rockall's contact "us" page over the last 24 hours. Rather kindly, I always think, the spammer make it pretty obvious it's spam.

The Challenge

Your challenge is to make a short story that includes all of the words used below and in the order they appear!

present@rain.com
system@claim.com
shine@sheet.com
five@such.com
milk@tail.com
ground@character.com
fruit@safe.com
island@search.com
difficult@during.com
problem@felt.com
carry@size.com
pick@warm.com
while@wind.com
believe@back.com
bell@difficult.com
decimal@invent.com
since@state.com

Extra point for anybody who can make it topical and about Michael Jackson (the word "five" is in there, how hard can it be!?). The less extra words you use to pad out those above the better.

Click here to post a response

Еще советы:
Смотри советы на сайтах:

Блоги. Что обсуждают и пишут

Author: Brad Heaton
Tags: follow-up
Idea:
I have a request for improvement on the follow-up flagging in Lotus Notes. This is one feature where Outlook 2003-2007 has a much better model and the feature I probably miss most in Notes.

Currently (even in version 8.5), Notes is limited to three hard-coded flag priorities and only a "Quick Flag" option on the toolbar and right-click menus. Outlook allows multiple priority flags and makes it easy to flag an email with a priority from either the toolbar or the right-click menu. Notes seems to have the foundation to be able to do this as well without a major overhaul of the feature - and possibly even do it better. Used properly, this feature in Outlook improves productivity and makes it easy to quickly prioritise email for later review and response.

Therefore, I propose that the follow-up flagging feature in Lotus Notes be extended as follows:
  • Allow the color and priority of flags to be editable by users or at least by the Domino administrator via a policy setting
  • Provide more than three priorities of flags, preferably configurable by the end-user or Admin, but at least increase the number available to five (5)
  • Improve both the toolbar and the right click menu in Notes to allow for the selection of the priority of flag to be set on a document rather than just the "Quick Flag" option, which allows only one default priority setting. The user should not have to set and then edit the flag to change the priority to what they want.
  • Extend the new right-click menu in Notes 8.5 to include the "Follow-up / New Notices / To Do"window in the left lower-hand corner of Notes. This currently uses the old mechanism.
  • Set flags using metadata tags to provide for more flexibility in the use of the flag data (see related Idea)

Author: Alan Hamilton
Tags: Notebook Mail Calendar Contacts
Idea:
I often need to access my mail / notebook / contacts from a web browser on a machine that is not my own, but often find that something I know is in my Notebook on my PC has not synchronised into the Mail file for it to be shown in the iNotes Notebook presentation.  The same goes for Contacts.
 
Why not abandon the issue of having separate databases for Contacts and Notebook and simply use the mail file so that we can always be in sync and not need to worry.  Right now all we're doing is duplicating the data with a risk it's not up to date.

Author: Alan Hamilton
Tags: quickr connections sametime
Idea:

Many customers find the overlap between Quickr & Connections difficult to fathom and we know that they all play better together with Sametime.  I think a single installable combo offering which could be offered to any customer - not just a Notes/Domino one - would be a runaway success - and would make putting solutions together so much easier....assuming the installation was easy!!


Author: Frédéric Fanchamps
Tags: private mail public calendar
Idea:
There is no way to prevent user seeing folder names from the mail, if you give access to your calendar.
The mail in the folder will not be seen, but the folder names can, and their names only is confidential for management.
These folder are not private because some secretaries must acces them.
Management is very unhappy with that.

Author: Frédéric Fanchamps
Tags: DB2 parameters stored procedure
Idea:
Calling DB2 stored procedures works great, but there are "string" statement, not prepared statement with "?" parameters allowing to get the value from inout and out parameters after the call.
We need that.

Author: Peter Presnell
Tags: xpages
Idea:
For Designer client, when I have an XPage which includes other xPages, it would be nice if when I double click on the included XPage control Designer then opens up that XPage in a new window.  This would mirror the functionality of double clicking on a subform inside a form.

Author: Keith Collyer
Tags: event repea
Idea:
I have to change various passwords every ninety days. The observant will notice that this just a shade under three months, so you would think you could set a reminder to repeat every twelve weeks. But you can't, the maximum allowed is eight weeks. Why? This seems an unnecessary restriction.
 
And why must you enter a limit on the number of repeats. Please don't anyone tell me that it is because Notes creates an instance of each, I know that and I don't care. Why should I care about the rather dumb way this has been implemented? Not my problem - and this causes all sorts of other problems for users as well, such as the repeating events I can't delete because for some reason (bug?) there are no instances in the database. My Palm doesn't have this restriction, nor does Palm Desktop, nor does (hateful comparison) Outlook. None of these suffer from the first restriction mentioned here either.

Author: Keith Collyer
Tags: event repeat
Idea:
I have to change various passwords every ninety days. The observant will notice that this just a shade under three months, so you would think you could set a reminder to repeat every twelve weeks. But you can't, the maximum allowed is eight weeks. Why? This seems an unnecessary restriction.
 
And why must you enter a limit on the number of repeats. Please don't anyone tell me that it is because Notes creates an instance of each, I know that and I don't care. Why should I care about the rather dumb way this has been implemented? Not my problem - and this causes all sorts of other problems for users as well, such as the repeating events I can't delete because for some reason (bug?) there are no instances in the database. My Palm doesn't have this restriction, nor does Palm Desktop, nor does (hateful comparison) Outlook. None of these suffer from the first restriction mentioned here either.

Еще записи:
Интересные блоги специалистов:

Статьи и Документация

You can push custom or supplied notes.ini and/or Eclipse managed settings to Notes users using the Custom Settings tab on Domino desktop policy page.
Explanation: notes.ini SERVER_MAX_CONCURRENT_TRANS and notes.ini SERVER_POOL_TASKS settings work together to determine how many NRPC threads can be actively processing server transactions. In most en
We all know how to use Lotus Notes against a Lotus Domino server, but this time I took some time to configure Lotus Notes like a POP3 client without connecting to a Lotus Domino server.Installation &a
Local vs Remote Consideration This was taken from the original comparison created by Narla Vasudevamurthy on 08/17/2008 updated to include functional and other consideration. Remote Co
Widget发布指南1.点击下面的链接访问Notes/Domino中文wiki2.选择最后面的"Widget Catalog" category3.点击 "Log on" 登录wiki:3.1.如果您没有Lotus developerwork id, 请在Lotus Registration先注册一个:4.点击 "Add an article" 4.1 按照下面的注释进行填写:5. 点击"Widg
功能:该Widget可以提供北京地图搜索,选中一段地名,右击鼠标,在上下文菜单中选择“Google地图搜索”,就会弹出一个窗口显示北京地图,并且搜出你刚选中的地名。
A Lotus Domino server running on Solaris is regularly crashing on the IMAP task while processing an iCal meeting invite.
The Domino server crashes with the following panic: "PANIC: CheckMarkers: Memory following object has been destroyed"
In Lotus Notes, if you use a large Resource & Reservations (R&R) database when scheduling meetings, is there a way to set a date limit (how far in advance you can book the room or resource) without having to edit each Resource Document?
Fault notifications are not being generated during an outage.
Также почитатай:
Найти документацию можно на сайтах:

В избранное