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

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

  Все выпуски  

Mailfile Owner's Inbox Unread Counter does not increase when new mail arrives for Delegated user


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

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

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

comp.soft.prog.lotuscodesrore

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

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

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

Англ. сервер. 8.5.1фп1, база с FT-индексом (аттачи включены в индекс в любом из вариантов - с фильтрами или без). База работает под DAOSом (но и без него была ерунда).
Вложения - файлы ворда-2003/2007 с кириллическим содержимым. Текстовые пока не проверял...
Полный Поиск не ищет внутри вложений sad.gif Когда-то работало, долгое время никому не надо было, а теперь пробую - и ничего нет. Поиск по самим документам работает отлично по любым полям. Индексы уже как только не перестраивал - без результата.

Не проходила ли информация о каких-либо ограничениях по поиску в типах файлах/виду содержимого вложений?
Интересные темы:
Список форумов:

Tips. Советы

CommonTime has announced release of its mobile application design environment, mDesign Studio. CommonTime mDesign Studio uses a drag and drop interface for users to design, develop, and customize applications for mobile devices.

Read | Permalink
Jake Howlett provides some quick instruction on using the SharedObject in Flex much as you'd use a cookie with a web browser. He's also provided a link to a ZIPPed download of source code.

Read | Permalink

Michael Urspringer explains the difference between copying a link to files in Quickr and actually copying the file attachment to your mail.

Read | Permalink
EclipseSource announced its participation in the Eclipse Foundation's Eclipse Training Series. EclipseSource will offer RCP Development, Advanced RCP and Equinox and OSGi courses at special rates.

Read | Permalink

Try this:

  1. Open the Contact Manager app.
  2. Change the columns that are visible by using the "column chooser" button, as below:
     image
  3. Quit the browser.
  4. Re-open the browser and visit the app again.
  5. Notice how the visible columns are the same ones as before you closed the browser!

The View component I've been developing recently now uses the Flex equivalent to the cookie - the SharedObject - to remember your choice of columns across sessions.

Note that the same column preferences are shared across all browsers on your PC as the SharedObject is per Flash player install rather than per browser.

For now it won't remember your preferred order of columns (did you know you can drag and drop columns to change the order!?). I'll work on that. Nor does it remember the width of them. I'll work on that too.

In the mean time here's the updated source code for both the Domino database and the Flex source code. Enjoy. More to come...

...can anybody think of anything else this View component is lacking before I can consider it a universal solution for all your Notes-to-Flex migration tasks?

Click here to post a response

Keith Strickland has been fighting with the onClick event code under XPages. He's posted some examples of the code, what it does, how he's worked around the problem, and is now looking for something to ease his headache.

Read | Permalink
This is the official TechNote listing the fixes and a link to Fix Central. If you're running DAOS on 8.5.1, IBM advises you to install the fixes.

Read | Permalink


MARK YOUR CALENDAR FOR IN-DEPTH LOTUS TRAINING, MAY 12-14, 2010, BOSTON
Register by December 31, 2009 to save $350.

Kevin Pettitt lost his DDE working set information while testing something. He managed to restore it from backup, but has posted information on what to do in case you run into the same problem.

Read | Permalink

Anybody remember what's going on here?

 image

How time flies...

Click here to post a response

Whether DDM is completely new to you, you need a recap on configuration, or you're looking for a few pointers on Notes.ini variables and console commands -- you'll find what you need in this tutorial.


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

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

Author: Andrew Luder
Tags: Tombstone a Domino server after its Domino Directory is more than 90 days old
Idea:
A previous employer had the problem that a Domino server could be disconnected from its domain for up to six months and the other domain server's Domino Directory and AdminP replicas on the would only contain deletion stubs for all documents deleted since the last 90 days (standard). Consequently, there is always the possibility that old documents can come back into domain even when the old server is in a deny access group and desktop replication is used, or just even through other human error....  
 
Guys on the 2nd level became so desperate to ensure that "zombie" documents (old documents reserrected from the grave) wouldn't be added back to current replicas,  they changed each Domino Directory replica's "Remove documents not modified in the last (days)"  setting from the standard 90  to 9999 days in an attempt to keep every deletion stub in the replica's history. The only problem was this involved more than 300000 deletion stubs and this blew the 64Kb limit on each  Domino Directory's UNK table and the "Database cannot allocate space" error occurred on server consoles and the domain stopped... :- (  
 
Thankfully in 656 the fixup -i option was introduced to increase the size of the UNK table past the 64Kb limit. The UNK table contains entries (pointers) for both current and deleted documents.  
 
So how do you 100% ensure that zombie documents do not come back to life in the Domino Directory and Adminp databases? 
 
In Active Directory it tombstones (turns off) a domain controller after 60/90 days and I would recommend doing the same thing to a Domino server after its Domino Directory and Adminp replicas haven't been modified within 90 days. To resolve would require replacing the old server's replicas with a file copy of the domain's current "names.nsf" and "admin4.nsf" databases or using a nicer GUI method to achieve this.

Author: Andrew Luder
Tags: Tombstone a Domino server after its Domino Directory is more than 90 days old
Idea:
A previous employer had the problem that a Domino server could be disconnected from its domain for up to six months and the other domain server's Domino Directory and AdminP replicas on the would only contain deletion stubs for all documents deleted since the last 90 days (standard). Consequently, there is always the possibility that old documents can be added back into the domain even when the old server is in a deny access group and desktop replication is used, or just even through other human error....  
 
Guys on the 2nd level became so desperate to ensure that "zombie" documents (old documents reserrected from the grave) wouldn't be added back to current replicas,  they changed each Domino Directory replica's "Remove documents not modified in the last (days)"  setting from the standard 90  to 9999 days in an attempt to keep every deletion stub in the replica's history. The only problem was this involved more than 300000 deletion stubs and this blew the 64Kb limit on each  Domino Directory's UNK table and the "Database cannot allocate space" error occurred on server consoles and the domain stopped... :- (  
 
Thankfully in 656 the fixup -i option was introduced to increase the size of the UNK table past the 64Kb limit. The UNK table contains entries (pointers) for both current and deleted documents.  
 
So how do you 100% ensure that zombie documents do not come back to life in the Domino Directory and Adminp databases? 
 
In Active Directory it tombstones (turns off) a domain controller after 60/90 days and I would recommend doing the same thing to a Domino server after its Domino Directory and Adminp replicas haven't been modified within 90 days. To resolve would require replacing the old server's replicas with a file copy of the domain's current "names.nsf" and "admin4.nsf" databases or using a nicer GUI method to achieve this.

Author: Andrew Luder
Tags: Tombstone a Domino server after its Domino Directory is more than 90 days old
Idea:
A previous employer had the problem that a Domino server could be disconnected from its domain for up to six months and the other domain server's Domino Directory and AdminP replicas would only contain deletion stubs for all documents deleted within the last 90 days (default). Consequently, there is always the possibility that old documents can be added back into the domain even when the old domino server is in a deny access group and desktop replication is used, or just even through other human error....  
 
Guys on the 2nd level became so desperate to ensure that "zombie" documents (old documents resurrected from the grave) wouldn't be added back to current replicas,  they changed each Domino Directory replica's "Remove documents not modified in the last (days)"  setting from the standard 90 to 9999 days in an attempt to keep every deletion stub in the replica's history. The only problem was this produced more than 300000 deletion stubs replicating around and this blew the 64Kb limit on each  Domino Directory replica's UNK table and the "Database cannot allocate space" error occurred on all server consoles and the domain stopped... :- (  
 
Thankfully in 656 the fixup -i option was introduced to increase the size of the UNK table past the 64Kb limit. The UNK table contains entries (pointers) for both current and deleted documents.  
 
So how do you 100% ensure that zombie documents do not come back to life in the Domino Directory and Adminp databases? 
 
In Active Directory it tombstones (turns off) a domain controller after 60/90 days and I would recommend doing the same thing to a Domino server when its Domino Directory and Adminp replicas haven't been modified after 90 days. To resolve would require replacing the old server's replicas with a file copy of the domain's current "names.nsf" and "admin4.nsf" databases or using a nicer GUI method to achieve this.

Earlier this week I asked some developers at Entwicklercamp what they think about ...
The project Cebulon is some kind of a sandbox to try (and sometimes fail) advanced techniques to use the C-API core functions of Lotus Notes and Domino from Lotusscript. There are a lot of code snippets you can find on the web to open a file dialog or ...
Еще записи:
Интересные блоги специалистов:

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

Mail database owner delegates access to another user. When the mail db owner receives a new message, the message arrives but the inbox unread counter does not increment by one until the inbox is refreshed manually.
A series of DAOS (Domino Attachment and Object Service) issues have been identified and fixed by IBM. We recommend any customer running DAOS to apply this interim fix or release that addresses these issues. Domino 8.5.1 Fix Pack 1 Interim Fix 1 is available that addresses these DAOS issues.
IBM Lotus Domino Server 8.5.1 Fix Pack 1 Interim Fix 1 for Linux/ Type: Incremental Installer / Release Date: 9 March 2010. See 'More Information' link above for additional information.
IBM Lotus Domino Server 8.5.1 Fix Pack 1 Interim Fix 1 for W64/ Type: Incremental Installer / Release Date: 9 March 2010. See 'More Information' link above for additional information.
IBM Lotus Domino Server 8.5.1 Fix Pack 1 Interim Fix 1 for Solaris/ Type: Incremental Installer / Release Date: 9 March 2010. See 'More Information' link above for additional information.
IBM Lotus Domino Server 8.5.1 Fix Pack 1 Interim Fix 1 for zLinux64/ Type: Incremental Installer / Release Date: 9 March 2010. See 'More Information' link above for additional information.
1. how to identify process involved? ( detect the process pid) ps auxw sort r +2 head 10 Shows top 10 cpu usage by process. OS tools like topas or tops can be also used to isolate the process id pid. 2. How to identify highest thread usage by CPU in a certain process? AIX ...
External recipients receiving emails from the Lotus Notes Traveler device may not be able to reply to the email. For example, the Lotus Notes email address John_Doe/Raleigh/IBM arrives as <John_Doe/Raleigh%Raleigh@ibm.com>, rather than arriving correctly as john_doe@ibm.com.
Interim Fixes are available on Fix Central for Lotus Domino Server Release 8.0.2 FP1 and 8.5 IMAP crashes.
How do you prepare a Lotus Notes client and Lotus Domino server for changes in the daylight saving time (DST) rules, effective 2010, for Chile?
Chile is extending their observance of daylight saving time (DST) in 2010 from March 14th to April 4th. Any existing calendar entry that falls within the previous DST period will appear incorrectly (an hour later than expected) after corrective action against the operating system has been taken. Calendar entries created after corrective action against the operating system has been taken will display correctly, barring additional corrective action required for Notes 8.x and 8.5.x clients (Standard Configurat
Также почитатай:
Найти документацию можно на сайтах:

В избранное