Недавно было замечено, что если в web интерфейсе Яндоксовского почтовика используя IE8 вставить текстовый файл, то в тело письма вставляется содержимое этого файла и сам файл как-то прикрепляется к письму. При получении такого письма Батом или при просмотре в web интерфейсе проблем не возникает, а вот если получить такое письмо Lotus'ом, то аттача нет, есть только содержимое этого файла.
Возможно ли сказать Lotus'у чтоб он полностью получал письма и на экран выводил не "урезанный" вариант письма?
ЗЫ. Причём если к письму прикрепляют не текстовый файл, а например архив, то Lotus всё нормально получает. (видимо яндекс как то криво аттачит текстовые файлы)
INTEGRA FOR NOTES - THE AWARD WINNING LOTUS NOTES TO MICROSOFT OFFICE & LOTUS SYMPHONY INTEGRATION SOLUTION Integra generates Notes data to Microsoft Word, Excel, and Lotus Symphony, allowing end users to analyse and present data using Graphs, Pivot Tables, Filters, etc. Supports Mail Merge and Labels. No installation required, on the end user's workstation.
Through the optional use of Integra's event driven model, it provides a depth of access to data & computational capability, which is unique in the industry.
The other day I mentioned Lists in LotusScript. By coincidence yesterday I found myself using them again.
As part of helping a customer migrate from Domino to Exchange I've written them an agent to export all people from their NAB in to a CSV file, which will then be imported to Exchange's address book.
For reasons I'm not entirely clear on they needed an extra column adding to the CSV called "Initial". For most people this would simply be "1". If the export found a name that had already exported for another user then the "Initial" column needed to increment to 2 - even though there was a "unique ID" column in the CSV - and so on.
So the CSV would look like (ignoring lots of missing columns):
It turned out doing this was really simple in LotusScript using Lists. Here's how:
Dim NameCount List As IntegerDim NameFull As String'this bit inside a loop of all Person documents (doc)
NameFull=LCase(Trim(doc.FirstName(0))+" "+Trim(doc.LastName(0)))If IsElement(NameCount(NameFull)) Then NameCount(NameFull)=NameCount(NameFull)+1Else NameCount(NameFull)=1End IfPrint #fileNum%, doc.FirstName(0)+{,}+doc.LastName(0)+{,}+ CStr(NameCount(NameFull))
In fact it turns out you can simplify that code even further to:
Dim NameCount List As IntegerDim NameFull As String'this bit inside a loop of all Person documents (doc)
NameFull=LCase(Trim(doc.FirstName(0))+" "+Trim(doc.LastName(0)))
NameCount(NameFull)=NameCount(NameFull)+1Print #fileNum%, doc.FirstName(0)+{,}+doc.LastName(0)+{,}+ CStr(NameCount(NameFull))
There you go. LotusScript still standing the test of time...
In the last couple of months we've extended
the OpenNTF web site significantly and provided several new services. There
is a new project management UI, fixed full text search, more visibility
for contributors, carousel component for featured projects, ...
On a server with a lot of users, the log file can get very big. It's possible to archive the log.nsf file, but it doesn't reduce the file-size, and it's most of the time impossible to compact the log.nsf while the server is running.
The solution as proposed by IBM: shutdown the server and compact the log file manually via ncompact.exe
I'm proposing a new system for log file archiving, similar to how mail journaling is handled in Domino:
After a certain period, or when the log reaches a certain size, move the log to a another location and create a new empty log.nsf file.
Customers have reported that their Windows 2008 64bit servers have stopped responding at the OS level after shutting down the Domino server or using the Domino Dbcache Flush command.
If you check "in views or folders" without selecting a template server and template you get the error "Directory Local!! does not exist". You may get an error or just a blank check box below the "in views or folders" checkbox.
Question This document provides stepbystep instructions for installing Lotus Domino Access for Microsoft Outlook (DAMO) 8.0.2. These instructions also apply to installing interim fixes for DAMO 8.0.2. Answer Before you begin Note the following requirements before you begin: You must be running ...