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

Lotus Notes/Domino -- продукт и инструмент. Выпуск: 18


Lotus Notes/Domino -- продукт и инструмент. Выпуск: 18

2008-11-05
Поиск по сайтам о Lotus Notes

Содержание:

CodeStore. Коды Примеры Шаблоны (5)

How to configure SSO with LTPA for IBM Lotus Connections 2.0
LotusScript accesses clipboard to view copied Notes documents
Open database listed in an email ( like GSX errors )
Modify or Remove any field in the current view
Get Your Enterprise NAB from the current database ( shorten your code )

Интенет эфир о Lotus Notes. Блоги и форумы (14)

Foreign SMTP Domain
Exploring New Features in IBM Lotus Notes 8 web seminar
Moving from Microsoft Outlook® 2003 to IBM Lotus Notes 8 web seminar
Using IBM Lotus Notes 8: Productivity Series web seminar
Customization: How to tell if the mode is Full or Lite
How to configure SSO with LTPA for IBM Lotus Connections 2.0
Secure your IBM Lotus Forms-based application with digital signatures
Requesting your list of 6.5.x - 8.0 app upgrade issues
засада с профилем
Sametime 7.5 под Ubuntu
Lotus Notes и Intellimirror (windows)
Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 13" от 03 ...
Р"С"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС ...
QueryClose annoyances

Вакансии для специалистов (10)

Jr Lotus Notes Administrator
Lotus Notes Developer
Lotus Notes Developer with PHP
Lotus Notes Domino Developer
Lotus Notes Support
Lotus Notes/Domino Developer
Lotus Notes Developer
Lotus Notes Developer
LOTUS NOTES DEVELOPER
Lotus Notes Developer

RTFM Читаем Справку (help.nsf) (28)

Документ не содержит поля "SendTo". Воспользуйтесь командой "Переслать" меню "Действия". | Справка Lotus Notes 7
Документ был удален | Справка Lotus Notes 7
Добавьте почтовый файл <имя файла базы данных> в рабочую область | Справка Lotus Notes 7
Добавление, переименование и удаление изображений | Справка Lotus Notes 7
Добавление цвета в таблицу | Справка Lotus Notes 7
Данные, реплицируемые через сервер роуминг-пользователя | Справка Lotus Notes 7
Данные Notes | Справка Lotus Notes 7
Группы и роли | Справка Lotus Notes 7
Выход из службы экспресс-сообщений | Справка Lotus Notes 7
Вырезание и вставка данных в таблицах | Справка Lotus Notes 7
Включение режима автоматических оповещений | Справка Lotus Notes 7
Включение отладки Java | Справка Lotus Notes 7
Включение SwiftFile | Справка Lotus Notes 7
Включение Java-программ в среде Notes | Справка Lotus Notes 7
Пространство, отведенное в базе данных под представления, формы, агенты и общие поля, исчерпано. Удалите часть компонентов: <имя базы данных>. | Справка Lotus Notes 7
Просмотр файлов | Справка Lotus Notes 7
Просмотр списка агентов | Справка Lotus Notes 7
Просмотр сведений о документах | Справка Lotus Notes 7
Просмотр сведений о действиях пользователя и сервера | Справка Lotus Notes 7
Печать представления | Справка Lotus Notes 7
Печать наборов рамок | Справка Lotus Notes 7
Печать календаря | Справка Lotus Notes 7
Печать задач | Справка Lotus Notes 7
Печать документов | Справка Lotus Notes 7
Вы не можете удалить эту базу данных | Справка Lotus Notes 7
Вы не имеете права создавать базы данных на этом сервере <имя сервера> | Справка Lotus Notes 7
Вы не имеете права на доступ к этой базе данных | Справка Lotus Notes 7
Вы не имеете права на доступ к серверу | Справка Lotus Notes 7

Закладки о Lotus Notes (9)

Lotus Notes/Domino 7 application performance: Part 1: Database properties and document collections
Lotus Notes/Domino 7 application performance: Part 2: Optimizing database views
http://www.templatekit.com/lotusnotes1.php
Badkey Corner | Lotus Notes 8 and NOMAD installation
IBM business email solution - Lotus Notes
developerWorks : Lotus updates, fixes, and utilities
IBM developerWorks : Lotus Notes on a Stick
Mein TiddlyWikiServer - in Probe !
Lotus Connections wiki
Спонсоры рассылки:
Поиск по сайтам о Lotus Notes/Domino
Полнотекстовый поиск по тематическим сайтам о Lotus Notes
Хостинг на Lotus Domino















Блиц опрос
Материалы на английском
(голосование возможно только из письма рассылки)
  • Нормально. Могу читать
  • Не годиться. Хочу только на русском
  • Компания ПУЛ - разработка приложений на Lotus Notes/Domino

    CodeStore. Коды Примеры Шаблоны

    1. How to configure SSO with LTPA for IBM Lotus Connections 2.0

    This article explains how to configure single sign-on (SSO) with Lightweight Third-Party Authentication (LTPA) for IBM® Lotus® Connections 2.0. Learn the basics of SSO and LTPA and the detailed steps for configuring SSO in a stand-alone environment.

    2. LotusScript accesses clipboard to view copied Notes documents

    Find out how to access copied Lotus Notes documents on your clipboard with this downloadable LotusScript code. This tip is helpful when using queryPaste events to determine what content is being pasted into a Lotus Notes database.

    3. Open database listed in an email ( like GSX errors )

    Sub Initialize
    ' posted to http://www.openntf.org/projects/codebin/codebin.nsf/CodeByDate/BB07663266C769D2862574F60054154B
    ' written by Mike Mortin, 20070830 Dim ws As New NotesUIWorkspace
    Dim uiDoc As NotesUIDocument
    Dim nServer As NotesName
    Dim tempStr As String, fileList As String, server As String
    Dim tempVar As Variant
    Dim index As Integer
    Const kDelim = " " ' get email content
    Set uiDoc = ws.CurrentDocument
    tempStr = uiDoc.FieldGetText("body") ' split and join to remove unwanted characters
    tempVar = Split(tempStr, Chr(13)) ' new line characters
    tempVar = Join(tempVar, kDelim)
    tempVar = Split(tempVar, "'") ' single quotes
    tempVar = Join(tempVar, kDelim) ' lastly, split into words
    tempVar = Split(tempVar, kDelim) ' spaces ' server name is the next entry
    Set nServer = New notesName(tempVar(3))
    server = nServer.Common ' then parse through remaining entries to get all mailfiles listed
    For index = Lbound(tempVar) To Ubound(tempVar)
    Print tempVar(index)
    If Instr( tempVar(index), ".nsf" ) > 0 Then
    ' add it to the list
    tempStr = Left( tempVar(index), Instr( tempVar(index), "nsf") +2 )
    fileList = fileList & tempStr & ","
    End If
    Next index ' now, did we find any mail files? If Len(fileList) > 0 Then
    ' make the list and tighen it up
    tempVar = Split( fileList, "," )
    tempVar = Arrayunique(tempVar)
    tempVar = Fulltrim(tempVar) ' present and open the db
    tempStr = ws.Prompt(4, "Select the database on " & server & " that you want to open.", "Click 'Cancel' to exit.", "", Split( fileList, "," ))
    If tempStr <> "" Then Call ws.OpenDatabase(server, tempStr)
    Else
    Msgbox "No mailfiles detected"
    End If
    End Sub

    4. Modify or Remove any field in the current view

    Sub Initialize
    ' from the current view, removes a field or modifies a field in every document
    ' posted to http://www.openntf.org/Projects/codebin/codebin.nsf/CodeBySubCategory/A37FAED4F7480160862574F10071BAAA
    ' written by Mike Mortin 20081029
    On Error Goto ErrorHandler
    Dim s As NotesSession
    Dim ws As New NotesUIWorkspace
    Dim currentDb As NotesDatabase
    Dim uiView As NotesUIView
    Dim view As NotesView
    Dim coll As notesViewEntryCollection
    Dim entry As NotesViewEntry
    Dim doc As NotesDocument
    Dim field As String, newValue As String, msg As String, action As String
    Dim items As Variant
    Const kActionRemove = "remove"
    Const kActionReplace = "replace"
    Const kActionNone = ""
    Const kMsgNoActionDone = "No changes made." ' setup
    Set uiView = ws.CurrentView
    Set view = uiView.View
    Set coll = view.AllEntries ' get a list of all items
    Set doc = coll.GetFirstEntry.Document
    Forall item In coll.GetFirstEntry.Document.items
    items = items & item.name & ","
    End Forall ' tighten up the list
    items = Split(items, ",")
    items = Fulltrim(items)
    items = Arrayunique(items) ' find out what action we are doing
    If Msgbox("Click 'No' to replace values or to exit.", MB_YESNO, "Are you going to REMOVE a field?") = IDYES Then
    action = kActionRemove
    Elseif Msgbox("Click 'No' to exit.", MB_YESNO, "Then you must be REPLACING data in a field?") = IDYES Then
    action = kActionReplace
    Else
    action = kActionNone
    End If ' prompt for the item to change
    If action <> kActionNone Then field = ws.Prompt(PROMPT_OKCANCELEDITCOMBO, "Please select the field you wish to " & action, "or enter a field manually.", "", items) Select Case action
    Case kActionRemove
    ' verify the action
    If Msgbox("Click 'No' to cancel.", MB_YESNO, "Are you sure you want to REMOVE " & field & " from all document in this view?") = IDYES Then
    ' loop through all docs in view and remove the item in question
    Set entry = coll.GetFirstEntry
    While Not entry Is Nothing
    Set doc = entry.Document
    ' Call doc.RemoveItem(field)
    ' Call doc.Save(True,False)
    Set entry = coll.GetNextEntry(entry)
    Wend
    msg = "Finished removing '" & field & "' from all documents at " & Time()
    Else
    msg = kMsgNoActionDone
    End If
    Case kActionReplace
    If Msgbox("This might take a few minutes as each document will be examined.", MB_YESNO, "Do you want see all the current values or type one in manually?") = IDYES Then
    ' grab all current entries
    items = ""
    Set entry = coll.GetFirstEntry
    While Not entry Is Nothing
    Set doc = entry.Document
    items = items & doc.GetItemValue(field)(0) & ","
    Set entry = coll.GetNextEntry(entry)
    Wend ' tighten up the list
    items = Split(items, ",")
    items = Fulltrim(items)
    items = Arrayunique(items) ' prompt for a new value
    newValue = ws.Prompt(PROMPT_OKCANCELEDITCOMBO, "Please select the value you want to use", "or enter a value manually.", "", items)
    Else
    ' prompt for a new value
    newValue = Inputbox("Please enter the new value for '" & field & "")
    End If ' verify the action
    If Msgbox("Currently setting '" & field & "' = '" & newValue &"'.", MB_YESNO, "Are you sure you want to set " & field & " = " & newValue & " for all documents in this view?") = IDYES Then
    ' Call coll.StampAll(field, newValue)
    msg = "Finished stamping all documents with " & field & " = " & newValue & " at " & Time()
    Else
    msg = kMsgNoActionDone
    End If
    Case kActionNone
    msg = kMsgNoActionDone
    End Select ' fall through to print a message
    ErrorHandler: If msg = "" Then msg = "Your action did not complete successfully. Please investigate. (" & Now() & ")" Msgbox msg
    Exit Sub ' gets around "No Resume" error
    End Sub

    5. Get Your Enterprise NAB from the current database ( shorten your code )

    Function GetEnterpriseNAB( default As String ) As NotesDatabase
    ' returns the NAB from the server the current Db is on
    ' posted to http://www.openntf.org/projects/codebin/codebin.nsf/CodeBySubCategory/808CDC4680D8BF37862574EF006EDD01
    ' written by Mike Mortin
    Dim s As New NotesSession
    Dim db As NotesDatabase
    Dim server As String
    Dim nname As NotesName ' set the default
    If default = "" Then default = "Admin01/Operations/CA" ' get our parent server to get the NAB
    Set db = s.CurrentDatabase
    Set nname = New NotesName(db.Server)
    server = nname.Common ' now, use default server if we are local
    If server = "" Then server = default ' finally, grab names.nsf from that server
    Set GetEnterpriseNAB = New NotesDatabase(server, "names.nsf")
    End Function

    developerWorks  >  Lotus  >  Forums & community  >  Lotus Sandbox

    Lotus Sandbox

    developerWorks

    Go back

    Show details for [<a href=/ldd/sandbox.nsf/PrintView/349636f5bd64583785256c5c00482cd1?OpenDocument>2 Extended Attachment Editio2 Extended Attachment Edition
    Edit and handle Attachments in Notes 4 the same way as in Notes 6
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/71c7bb2310a15bc385256d17005a6d68?OpenDocument>A new Approach - Web-based DA new Approach - Web-based Date Picker
    Web-based date picker that displays company sponsored holidays
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/2e808c6e7f2abc6585256d17005a701f?OpenDocument>A new approach - Web-based NA new approach - Web-based NAB
    A Web-based NAB with simple search function
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/67f76112ed2e136c852571db0054f760?OpenDocument>A self-guided tour of DominoA self-guided tour of Domino Domain Monitoring (DDM)
    The attached presentation (ddm.ppt) is a self-guided tour of Domino Domain Monitoring (DDM).
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/ccb30b2fead6c2288525690a0048c83b?OpenDocument>A simple method to use File A simple method to use File Upload Controls on the Web.
    For identifying/using file upload controls on the Web.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/255e4fcdbd8a951385256c940075e28e?OpenDocument>Access Level</a>][<br>]DisplAccess Level
    Displays User Access Level in DB - no need to know your group membership.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/ae043110f5e4e7338525688d006a5081?OpenDocument>Accidents Reports</a>][<br>]Accidents Reports
    Simple application for reporting and monitoring industrial accidents.
    Account Manager
    Manages accounts, profiles, and contacts.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/fe6574162e6c1b6a852567ca006e79f1?OpenDocument>Account Manager</a>][<br>]MaAccount Manager
    Manages accounts, profiles, and contacts.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/11f736c9d472b15885256996006d7458?OpenDocument>ACL Audit Tool</a>][<br>]TooACL Audit Tool
    Tool to perform an ACL audit of databases/templates on a Domino server.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/81deffed8f49e561852568d4006c98e4?OpenDocument>ACL backup and restore functACL backup and restore functions in LotusScript
    LotusScript agents saving ACLs in NotesDocuments and restoring them back to DBs ACL
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/9290c5e7654f34ea85256a1e0050bc55?OpenDocument>ACL Scanner</a>][<br>]CreateACL Scanner
    Creates reports about ACLs on all databases on one server, and recurses groups.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/ac1ba5645421b7e285256c940075ef53?OpenDocument>ACL Setter</a>][<br>]Allows ACL Setter
    Allows you to modify a database ACL without manager access on a server.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/80a0129b9d0b965485256a700048ae65?OpenDocument>ACL &quot;Modificator&quot; ACL "Modificator" 1.0
    Add ACL entries in multiple databases.
    Acme Standard Interface and Acme News databases
    Sample databases from the Iris Today article Building standard interfaces without changing your applications.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/d8bd2253eef9d9918525684a006d1c5a?OpenDocument>Acme.nsf and Zippy.nsf</a>][Acme.nsf and Zippy.nsf
    Sample databases Acme.nsf and Zippy.nsf referenced in the Iris Today article "Exercising XML with Domino Designer."
    Action button to initiate replication on server
    This Action code uses defined Connection documents to start immediate replication through remote console on source server
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/0a41daba7017450685256a3e00524375?OpenDocument>Action Button to set InterneAction Button to set Internet Password
    Action Button to set Internet Password
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/0e3afa9908928a378525699e004e8fc8?OpenDocument>Add business holidays to theAdd business holidays to the user's calendar
    Quick and dirty code to add business holidays to the user's calendar using front end classes.
    Add sound to a Notes form
    Add Sound Recorder to your e-mail template.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/d94d651dcd540b2485256949006e27db?OpenDocument>Add System DBs</a>][<br>]AddAdd System DBs
    Adds MAIL.BOX, SMTP.BOX, LOG.NSF, etc. from every available server to your workspace.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/69008d904a1ca3ab85256c940075f963?OpenDocument>Address Book Servlet v1.0</aAddress Book Servlet v1.0
    Address Book servlet provides an interface similar to address book dialog box in Lotus Notes client
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/95afbd0f93c19c858525688d006a57b5?OpenDocument>Admin-Dev Tools 2.0</a>][<brAdmin-Dev Tools 2.0
    Tools for day to day admin tasks. Updated from the original version.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/f51807e42918e33e00256c090044738f?OpenDocument>Admin ACL 2</a>][<br>]AdminAAdmin ACL 2
    AdminACL is an application that allows you to add any ACL entry with any level to any database you want even if you do not have access to it.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/ca69e90dbf829253852567f3007c4b70?OpenDocument>Admin Helper</a>][<br>]Find Admin Helper
    Find Orphan mail files, check the Out of Office agent owner and the Calendar Profile owner of mail file for existing users.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/80beb21669da8d3185256b1400745b63?OpenDocument>AdminACL</a>][<br>]This toolAdminACL
    This tool allows you, the administrator, to add any group, user, and server to any databases in you organization (in one agent).
    Advanced Settings sample database
    This database includes an advanced version of the Application Settings tool described in the Iris Today article "Application settings tool: an alternative to profiles" by Jonathan Coombs.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/7147feda3a9094ed85256b9f00725761?OpenDocument>Advanced Settings sample datAdvanced Settings sample database
    This database includes an advanced version of the Application Settings tool described in the Iris Today article "Application settings tool: an alternative to profiles" by Jonathan Coombs.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/530cf440b8deb01300256bde0031a0ff?OpenDocument>Advanced View Techniques</a>Advanced View Techniques
    Interesting ways to display views using applets & print selected documents from View Applet
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/770532e1a86fbf1385256f0a00637edc?OpenDocument>Advanced XML for Notes</a>][Advanced XML for Notes
    Advanced XML techniques with Domino using data binding and Notes queries
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/b1176bb4b31fada8852567f300753b47?OpenDocument>Advertising server</a>][<br>Advertising server
    Serves advertisements from an internally maintained list.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/0385bf0f95d0c98885256989005a29dc?OpenDocument>Agent to Compare 2 DocumentsAgent to Compare 2 Documents in R5
    Agent to Compare 2 Documents in R5 (works with RTF fields, too).
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/f38057887f500e43852567c300660362?OpenDocument>Agentless thread map databasAgentless thread map database sample
    Demonstrates a technique for generating thread maps in an application without the use of a background agent.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/7967df8d95f585a485256c940076012b?OpenDocument>agentShowInternetHeaders</a>agentShowInternetHeaders
    LotusScript agent to show Internet "received" headers
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/70f703dd400f97d500256bd000318722?OpenDocument>Alarm/Reminder setting from Alarm/Reminder setting from another application
    Set an alarm or reminders in a user's calendar from another application
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/f710dcdf7214e953852569e60054fe7a?OpenDocument>Alex & Dilbert Cartoon RetriAlex & Dilbert Cartoon Retrieval Agent
    Database to retrieve and email Dilbert and Alex Cartoons
    Allow value not in list
    To improve Allow value not in list on the WEB
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/7b7eff84bd6eeff600256bd8003960e8?OpenDocument>Allow values not in list comAllow values not in list combo for web
    Combo box with allow values not in list for IE5 and above, Netscape 6 and above
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/98176455ff90e2d500256c38004a5f0c?OpenDocument>Alternate Color Rows View inAlternate Color Rows View in a Web Browser - Version 3
    Alternate Color Rows View Version 3 - More features
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/78ad87650e8e6d8085256818007202c2?OpenDocument>AntiSpamFilter Agent</a>][<bAntiSpamFilter Agent
    Anti-spam agent and design elements to enhance spam mail filtering in the standard Notes mail template.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/b376f26b8cbd9f1b8525694d004e24c3?OpenDocument>API Goodies for Lotus Notes<API Goodies for Lotus Notes
    Control various Win API settings from inside Notes.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/e6621c730727e8a3852567f4007eaba1?OpenDocument>AppleScript code examples foAppleScript code examples for Notes
    This database contains additional programming examples for AppleScript in Notes.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/7d55dec173045350852568a4005d0497?OpenDocument>Application Development DocuApplication Development Documentation Library
    Allows developers of a systems group to store their documentation.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/0af99983727460a000256bd4003996c6?OpenDocument>Archive on CD-ROM</a>][<br>]Archive on CD-ROM
    Agent to archive on CD-ROM.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/9dc708521fd73a43852568a40069cf02?OpenDocument>Archive Options</a>][<br>]ArArchive Options
    Archive your mail db by dates or by sizes.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/86cf1eb52622488f85256d51004eeb72?OpenDocument>ArraySort</a>][<br>]An arrayArraySort
    An array sort using a fast shell sort algorthim
    Article "Notes application strategies: Document rating" sample database
    Sample database that accompanies the article, "Notes application strategies: Document rating"
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/f5da0954a65348b985256e39004d1583?OpenDocument>Article &quot;Notes applicatArticle "Notes application strategies: Interactive search" sample database
    Sample database to accompany the article, "Notes application strategies: Interactive search."
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/2e00b11f20d7446b85256e47006624c1?OpenDocument>Article &quot;Notes applicatArticle "Notes application strategies: Mail Processor" sample database
    Sample database to accompany the article, "Notes application strategies: Mail Processor."
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/a687d600ae1001e985256e550058c84e?OpenDocument>Article &quot;Notes applicatArticle "Notes application strategies: User activity tracking" sample database
    Sample database to accompany the article "Notes application strategies: User activity tracking"

    Go back


    Интенет эфир о Lotus Notes. Блоги и форумы

    1. Foreign SMTP Domain

    Здравствуйте!
    Вопрос такой:
    4 сервера Lotus, один домен. Нужно сделать так, чтобы 3 сервера отправляли почту во "внешку" с одного.
    Foreign SMTP Domain - занимается этим. Я никак не могу найти, где его настроить или добавить. Читал, что надо делать в адресной книге, но такого названия я там не увидел.

    2. Exploring New Features in IBM Lotus Notes 8 web seminar

    The Exploring New Features in IBM Lotus Notes 8 web seminar is a versatile seminar that quickly shows current Notes users how to use the new Notes 8 client to be more productive, highlighting changes

    3. Moving from Microsoft Outlook® 2003 to IBM Lotus Notes 8 web seminar

    The Moving from Microsoft Outlook 2003 to IBM Lotus Notes 8 web seminar is a brief, versatile seminar that quickly shows current Microsoft Outlook 2003 users how to use the Lotus Notes 8 client to be

    4. Using IBM Lotus Notes 8: Productivity Series web seminar

    The Using IBM Lotus Notes 8: Productivity Series web seninar is a versatile set of seminar materials that quickly shows new Notes users how to use the Notes 8 client to be more productive in their job

    5. Customization: How to tell if the mode is Full or Lite

    If you're adding some customization code and need to be able to tell if you're in full or lite mode, you can do it like this: In 8.0.x: Check the value of window.AAA. In lite mode, it should poin

    6. How to configure SSO with LTPA for IBM Lotus Connections 2.0

    This article explains how to configure single sign-on (SSO) with Lightweight Third-Party Authentication (LTPA) for IBM® Lotus® Connections 2.0. Learn the basics of SSO and LTPA and the detailed steps for configuring SSO in a stand-alone environment.

    7. Secure your IBM Lotus Forms-based application with digital signatures

    In this article, learn how to use digital signature technology to prevent tampering during transmission. Follow the example provided in this article to design the form, sign the form, and verify the signature.

    8. Requesting your list of 6.5.x - 8.0 app upgrade issues

    For those of you who've been doing server updates and having to deal with any resulting application issues, I'm seeking to compile a document to help developers and admins size this task and know what ...

    9. засада с профилем

    В общем прохожусь по колекции профайлов
    нахожу нужный
    удаляю
    НО
    в последствии взяв профайл по имени я попадаю на удаленный со всеми итемсами .isDeleted = True
    и флаг при f = Doc.Remove(True) возвращает всё время False
    как же удалить профайл и не попадать на удаленный?

    10. Sametime 7.5 под Ubuntu

    Я - новичок в Ubuntu... Пытаюсь проинсталить Sametime 7.5 под Linux (ну очень нужно).
    ...

    11. Lotus Notes и Intellimirror (windows)

    Добрый вечер или день!!!
    У меня возник вопрос, на который я надеюсь получить ответ - Как сделать так, что-бы при инсталяции клиентской части Lotus Notes "для всех пользователей компьютера" даные пользователя (*\lotus\notes\data) ложились не в C:\Documents and Settings\%USERNAME%\Local Settings\Application Data\Lotus\Notes\Data, а в C:\Documents and Settings\%USERNAME%\Application Data\Lotus\Notes\Data ? Где находиться файл настройки в котором прописано куда закидывать даные и настройки пользователя по умолчанию?

    PS: Нужно найти файл (скорее всего находиться в C:\Program Files\lotus\notes), потому что клиетнская часть устанавливаеться, и создаеться папка откуда по умолчанию будут браться шаблоны C:\Documents and Settings\All Users\Application Data\Lotus\Notes\Data\Shared\ А уже потом, при первом запуске лотуса настраиваються свойства пользователя... и создаеться папка C:\Documents and Settings\%USERNAME%\Local Settings\Application Data\Lotus\Notes\Data, а надо чтобы создавалась в C:\Documents and Settings\%USERNAME%\Application Data\Lotus\Notes\Data...

    Большое спасибо за помощь!!!!

    12. Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 13" от 03 ...

    Вышел новый выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент.

    13. Р"С"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС ...

    Р"С"СРѭР" РѬРѭРІС"Р№ РІС"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС"СѬСгРѭРѭРѬС".

    14. QueryClose annoyances

    Versions 8.0 and later of Notes have a bug (SPR #AGUD7DSU3Q) where if there's a Queryclose event on a form, and the document is not "dirty," the Eclipse environment closes the document tab first, and ...
    Блиц-опрос
    Давай знакомиться. В каких отношениях с Lotus Notes?
    (голосование возможно только из письма рассылки)
  • Lotus Администратор
  • Lotus Программист
  • Lotus Пользователь
  • С Lotus Note не знаком
  • Хочу познакомиться с Lotus Notes/Domino
  • Вакансии для специалистов

    1. Jr Lotus Notes Administrator

    Comtech LLC is an award winning, customer-oriented, full-service IT solutions provider serving the Federal Government, Department of Defense and other contractors.Job Title: Junior/Mid Level - Lotus N...

    2. Lotus Notes Developer

    Lotus Notes Developer, CT Job # 5983 Job Type: Full Time, regular direct position Local candidates Requirements; Four year college degree in IT related discipline 5 - 7 years experience in systems ana...

    3. Lotus Notes Developer with PHP

    --Description--Responsibilities: Kforce is seeking a Lotus Notes Developer for a direct hire position with a local Cincinnati client.This position will:Develop and implement software systems or enhanc...

    4. Lotus Notes Domino Developer

    --Description--Responsibilities: As a Lotus Notes/Domino Developer, you will be a key part of the group, working individually and as part of a team involved in the design and development of custom app...

    5. Lotus Notes Support

    --Description--Venturi Staffing is currently assisting their client Downtown Pittsburgh fulfill their need for a 6 month to 12 month temporary Lotus Notes Support Tech. Qualified candidate must have a...

    6. Lotus Notes/Domino Developer

    --Description--GO! Systems Inc, a Miami-based software firm is seeking experienced Lotus Notes/Domino Application Developers. GO! Systems is a premier services firm engaged in providing technology sol...

    7. Lotus Notes Developer

    Sr. and Mid-level Lotus Notes Developers needed for an upcoming project in downtown Sacramento. This is State Project and will begin in/around early December. Qualified candidates please apply, no thi...

    8. Lotus Notes Developer

    Domino 7 lotus notes application* DB2* RPG* AS400Project: They want someone to scope out and do the design and development. All work to be completed on-site in Tallahassee, Fl.

    9. LOTUS NOTES DEVELOPER

    Need Lotus Notes Developer with Web client Exp.Duration 6months plus Rate 45/hr IMMEDIATE INTERVIEW . PLEASE CALL IF YOU HAVE ANY QUESTIONS .Thanks.AhsanAhsan@sonsoftinc.com781-821-3678.

    10. Lotus Notes Developer

    One of the Major Financial Institutions in Phoenix,AZ is looking for a Lotus Notes Developer with following skills and experience:Will work in small motivated teams to analyze, design, code, test, and...

    RTFM Читаем Справку (help.nsf)

    1. Документ не содержит поля "SendTo". Воспользуйтесь командой "Переслать" меню "Действия". | Справка Lotus Notes 7

    2. Документ был удален | Справка Lotus Notes 7

    3. Добавьте почтовый файл &lt;имя файла базы данных&gt; в рабочую область | Справка Lotus Notes 7

    4. Добавление, переименование и удаление изображений | Справка Lotus Notes 7

    5. Добавление цвета в таблицу | Справка Lotus Notes 7

    6. Данные, реплицируемые через сервер роуминг-пользователя | Справка Lotus Notes 7

    7. Данные Notes | Справка Lotus Notes 7

    8. Группы и роли | Справка Lotus Notes 7

    9. Выход из службы экспресс-сообщений | Справка Lotus Notes 7

    10. Вырезание и вставка данных в таблицах | Справка Lotus Notes 7

    11. Включение режима автоматических оповещений | Справка Lotus Notes 7

    12. Включение отладки Java | Справка Lotus Notes 7

    13. Включение SwiftFile | Справка Lotus Notes 7

    14. Включение Java-программ в среде Notes | Справка Lotus Notes 7

    15. Пространство, отведенное в базе данных под представления, формы, агенты и общие поля, исчерпано. Удалите часть компонентов: &lt;имя базы данных&gt;. | Справка Lotus Notes 7

    16. Просмотр файлов | Справка Lotus Notes 7

    17. Просмотр списка агентов | Справка Lotus Notes 7

    18. Просмотр сведений о документах | Справка Lotus Notes 7

    19. Просмотр сведений о действиях пользователя и сервера | Справка Lotus Notes 7

    20. Печать представления | Справка Lotus Notes 7

    21. Печать наборов рамок | Справка Lotus Notes 7

    22. Печать календаря | Справка Lotus Notes 7

    23. Печать задач | Справка Lotus Notes 7

    24. Печать документов | Справка Lotus Notes 7

    25. Вы не можете удалить эту базу данных | Справка Lotus Notes 7

    26. Вы не имеете права создавать базы данных на этом сервере &lt;имя сервера&gt; | Справка Lotus Notes 7

    27. Вы не имеете права на доступ к этой базе данных | Справка Lotus Notes 7

    28. Вы не имеете права на доступ к серверу | Справка Lotus Notes 7

    Источники знаний. Сайты с книгами


    "Красные книги" IBM

    Книги компании IBM по специализированным тематикам о Lotus Software. Основной язык - английский форматы pdf и html

    Книги компании "Интертраст"

    Для администраторов разработчиков и пользователей. Настройка и администрирование, разработка и программирование, пользование системой Lotus Notes
    Документация. YellowBook
    Оригинальная документация по продуктам Lotus Software. Язык англыйский. Форматы pdf html nsf
    IBM Пресс
    Книги от компании IBM. Книги и брошуры на заказ и на бесплатную скачку в формате pdf
    КУДИЦ-ПРЕСС
    Просмотр и заказ книг. Некоторые книги возможно скачать в формате pdf для свободно чтения и просмотра.
    Книги о Lotus Notes в Интернете
    Ссылки на книги и методички находящиеся в свободном пользовании. Ветки форумов обсуждения книг и материалов. Поисковый сервер по хелпам Lotus Notes книги от Google для свободного просмотра

    В избранное о Lotus Notes/Domino В подготовке выпуска использовались материалы и знания
    По вопросам спонсорства, публикации материалов, участия обращайтесь к ведущему рассылку LotusDomiNotes

    В избранное