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

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

  Все выпуски  

Sent By field is missing when message is forwarded or replied


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

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

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

comp.soft.prog.lotuscodesrore

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

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

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

Доброго времени суток.
Только начинаю разрабатывать приложения под Lotus Notes/Domino. Есть такая задача:
Есть форма для добавления ордера. На ней есть поля для заполнения реквизитов организации.
Есть форма для добавления организации.
Должна быть возможность вызова справочника организаций для добавления в него новой организации и ввода добавленных реквизитов в ордер из справочника организаций.


Мысль крутится вокруг того, чтобы как-нибудь передать uidoc ордера форме добавления организации, но как это сделать или вообще-то как-то по другому лучше реализовать...
Только в версии 8.5. Не уверен есть ли такая функциональность в 8.0, но в более ранних точно нет. Администратор может удалить письмо напрямую из почтового ящика получателя. Пользователь, отправивший письмо не может ни как, за исключением случая см. выше.
Есть ActiveX библиотека, которую необходимо использовать в Лотус, есть работающий пример на Delphi, которым cтроятся набор панелей и элементов.
...
Добрый день.
Появилась новая задача.
У меня сервер обслуживает несколько почтовых доменов (aaa.com, bbb.com, ccc.com)
Вся почта приходит и уходит исправно.
Задача:
пользователи домена bbb.com находятся далеко и должны работать со своим сервером.
Пользователи домена ccc.com находятся еще дальше и тоже должны работать со своим почтовиком - но у них предполагается Exchange SRV.

Это как-то возможно реализовать? Очень важно чтобы вся почта обрабатывалась на моем сервере, а как настроить, чтобы для отдельных доменов почта переадресовывалась на другие сервера? Есть документация или опыт у кого-нибудь?

Спасибо.
Только в версии 8.5. Не уверен есть ли такая функциональность в 8.0, но в более ранних точно нет. Администратор может удалить письмо напрямую из почтового ящика получателя. Пользователь, отправивший письмо не может ни как, за исключением случая см. выше.
Есть ActiveX библиотека, которую необходимо использовать в Лотус, есть работающий пример на Delphi, которым cтроятся набор панелей и элементов.
...
Есть ActiveX библиотека, которую необходимо использовать в Лотус, есть работающий пример на Delphi, которым cтроятся набор панелей и элементов.

Пример кода на Object Pascal

CODE
создаем активную форму InfinityCCCoreObj
Core:= TInfinityCCCoreObj.Create(Self);
вызывем метод авторизации
Core.Logon;
создаем панель управления звонками с помощью метода Init,
передавая в качестве единственного аргумента ссылку на интерфейс InfinityCCCoreObj
CallManagement:= TInfinityCCCallManagementObj.Create(Self);
CallManagement.Parent:= Panel2;
CallManagement.Align:= alClient;
CallManagement.Show;
CallManagement.Init(Core.ControlInterface);


После выполнения этого кода в Panel2 появляется элемент управления звонками, с которым можно работать.

Необходимо проделать тоже но в LotesNotes7.0
Вот какой код у меня получился:

CODE
Sub Click(Source As Button)
‘создаем активную форму InfinityCCCoreObj
Set oCCore = CreateObject("InfinityCCCore.InfinityCCCoreObj")
oCCore.SetLogLevel(1)
‘вызывем метод авторизации. Появляется окошко авторизации, вводим логин пароль, авторизация проходит успешно.
oCCore.LogOn
создаем панель управления звонками
Set oCallManagement=CreateObject("InfinityCCCallManagement.InfinityCCCallManagementObj")


с помощью метода Init,
передавая в качестве единственного аргумента ссылку на интерфейс. SelfReference сделана самими разрабочиками ActiveX, вызвращает ссылку на себя. Является аналогом Core.ControlInterface из примера на делфи
oCallManagement.Init(oCCore.SelfReference)

Ошибок не возникает, код отрабатывает. После этого можно обращаться к объекту oCallManagement, читать/писать свойства, НО панель не появляется.

Наверно все дело в том, что аналоги следующим строкам на делфи у меня найти не получилось.
CallManagement.Parent:= Panel2; - в лотусе у объекта oCallManagement свойства Parent нет. Возникает ошибка Instance member PARENT does not exists
CallManagement.Align:= alClient;
CallManagement.Show; в лотусе у объекта oCallManagement метода Show нет. Возникает ошибка Instance member SHOW does not exists.

Попытки добавить в код следующие строки ошибок не вызывают, но все-равно ничего не появляется:
oCallManagement.Visible=True
oCallManagement.AutoSize=True
Интересные темы:
Список форумов:

Tips. Советы

This week's post is something a little bit different-- a tip with a request for your feedback! Archiving is a really great way to reduce the size of your mail file, and to keep things from getting cl
The workshop offered in May was so popular it's being offered again on June 24-25, 2009. The workshop is free, but you do need to register.

Read | Permalink
Bob Balfes has posted a 10-minute video demoing Project BONES a Notes 8 application using a Foundations server and Eclipse Java. He's also provided a list of some of the things you need to build such an amazing application.

Read | Permalink


PISTOLSTAR: LOTUS NOTES AUTHENTICATION THAT BREAKS THE STATUS QUO
Password Power's complete integration with the Microsoft Active Directory password enables Notes client access, ends time-consuming Notes ID password recovery and addresses known issues with Notes 8.5:
  • Passwords are encrypted in volatile memory - not stored on user's hard drive
  • Notes roaming capabilities are fully functional - not limited
  • Password checking is honored - no decreased security or failed compliance
  • All Notes ID file copies are synched automatically with Active Directory password - no remembering old passwords or restoring ID files


Download white paper to learn more: "Myths & Realities of Lotus Notes and Domino 8.5 Security"

Mary Beth Raven and her team are again asking for your input. Do your users use the "Mark All" feature in Notes often?

Read | Permalink


POWER TOOLS 4.0 - GET THE MOST OUT OF NOTES AND DOMINO
Tap here to learn more about this set of 73 administrative utilities for Lotus Notes & Domino.

Peter Presnell discussed the concept of a dataset in part 1. In part 2 he continues the discussion with the NotesDocumentCollection.

Read | Permalink
The release notes for Symphony 1.3 list a number of new features along with bug fixes, enhancements to existing features, and more. A free download is available from this page.

Read | Permalink


NEW WEBSITE, NEW CONTENT, CHECK IT OUT!
We are pleased to announce the launch of the new Teamstudio website--complete with a library of resources to help you implement good practices throughout your Notes application lifecycle. Drop by the site for free utilities, industry white papers, policy guides for Notes development and deployment, and more.

Tap here to stop by and see what's new!

A new article on the Lotus Domino wiki covers how to write Java to integrate into Domino.

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

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

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

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

The Sent By field no longer displays in a message thread when using Forward or Reply
After upgrading your server to7.04, you will find the following messages appear on the console: Error updating view '#994' in ddm.nsf: Entry not found in index Error updating view '#590' in ddm.nsf: Entry not found in index This error message usually pertains to ddm.nsf but is not limited to only this database as it may include names.nsf, eve
The symbol "Not Allowed" appears when you attempt to drag and drop mail into folders using Lotus Notes 8 Basic and Windows Vista.
Attempting to launch your Lotus Notes 8.5 client results in the error "Anonymous - Cant find view", and you cannot start your client.
Lotus Domino scheduled replication of some databases fails with the error "The object store that is used by this note was not found or is not a Notes database".
This technote describes how to rerun setup of a Lotus Notes client as a troubleshooting technique.
A Lotus Notes database view has its Form Formula and HelpRequest properties deleted if the view has been created or updated using LotusScript.
If the Preview pane is open, deleting a mail document from a local mail database may impact the Notes 8.x (Standard) client performance.
The total number of characters from a parent view or folder to its farthest descendent child cannot be greater than 130 characters. This number includes a backslash character for each parent child level.
Notes 8.x (Standard or Basic) crashes during initial setup when connecting to a specific server. The crash occurs immediately after you enter your password.
You minimize some sidebar components and for others you select the option 'Minimize to Icon', which minimizes the component to an icon at the top of the sidebar. When you restart Notes, the minimized components are again maximized, and the 'minimize to icon' components are restored to the sidebar.
Views in the frameset of databases created in Notes 6.x or 7.x and then burned to a CD do not display correctly when opened in Notes versions 8.0.1 or 8.0.2.
Lotus Notes users accessing a BlackBerry server find duplicate contacts in their address book. Why are so many duplicate contacts listed in the $Contacts view?
Person documents currently keep historical Notes client versions detail. Administrators would like the ability to purge old data. An enhancement request for this new functionality has been submitted to Quality Engineering as SPR# MCMA7RTH4H
When you attempt to access the Archive Settings in an Archive database (Actions > Archive > Settings), the following error occurs: "All of the required fields in your archive settings have not been properly signed.Please re-save your archive settings to correct this problem".
This technote describes how you can create an event handler to receive notifications when the Compact server task starts or stops.
Также почитатай:
Найти документацию можно на сайтах:

В избранное