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

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


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

2008-10-12
Поиск по сайтам о Lotus Notes

Содержание:

Новости о ПО Lotus Notes (1)

Новое в информационной безопасности: BioLink IDenium интегрирует технологии биометрии и смарт-карт - itguide.ru (пресс-релиз)

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

Taking Ajax Logins A Little Further | Blog

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

Разительно федеральный DDoS
TECHLABS Software Digest #66'08
Ваш шанс начать свое дело!
работа Lotus Domino 7 на Vista Sp1
работа Lotus Domino 7 на Vista Sp1
Кликнете отложи началото на унифицирани комуникации технология продукти, като _
Выпуск рассылки Бюллетень Lotus Notes CodeStore No 83 от 2008-10-10 от 10-10 ...
Кликнете отложи началото на унифицирани комуникации технология продукти, като _
Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 3" от 10-10 ...
Есть Lotus Notes, есть MS Exchange, итд.
mSuite5 совершил революцию на рынке программ для мобильных устройств
Шо в мире таки произошло за последние месяцы
Как узнать что завис Агент?
Р"С"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС ...
Как узнать что завис Агент?
Как автоматом создать письмо и отправить?
Domino 8 Enablement Links
A list of LotusScript error numbers and descriptions

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

Ведущий специалист (Lotus Domino)

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

IBM - How to rerun setup on a Notes client
LepoLand - A Blog by Alan Lepofsky - Alan's blog about software, technology, travel, and the occasional golf post.
lizkeogh.com " If...
Formul8 for IBM Lotus Notes 8
SideLog for IBM Lotus Notes 8
developerWorks Lotus : forums & community
developerWorks Lotus : Lotus Notes and Domino 8 technical content

Lotus Notes. Видео и изображения (1)

AMAZING! rescue of a GIRL in a machine of toys
Спонсоры рассылки:
Поиск по сайтам о Lotus Notes/Domino
Полнотекстовый поиск по тематическим сайтам о Lotus Notes
Хостинг на Lotus Domino















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

    1. Новое в информационной безопасности: BioLink IDenium интегрирует технологии биометрии и смарт-карт - itguide.ru (пресс-релиз)


    Новое в информационной безопасности: BioLink IDenium интегрирует технологии биометрии и смарт-карт
    itguide.ru (пресс-релиз) - 3 окт 2008
    Не менее востребованное рынком направление применения сервиса IDenium — биометрическая идентификация пользователей прикладных решений — от платформы 1С:Предприятие до SAP, Lotus Notes и т.д. В состав новой версии включен IDenium SDK, с помощью которого громоздкий и уязвимый механизм распознавания пользователей по логинам и паролям заменяется быстрой и надежной идентификацией по отпечаткам пальцев. Изображения отпечатков пальцев преобразуются в цифровые модели, и при очередном обращении пользователя к ...
    Компания ПУЛ - разработка приложений на Lotus Notes/Domino

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

    1. Taking Ajax Logins A Little Further | Blog

    Getting back to Wednesday's topic of logging in via Ajax I decided to see if I could take it beyond the basics.

    The basics being that we use Ajax to POST login details to /names.nsf?login and wait to see if there's a Domino session cookie attached to the response.

    The trouble with this basic approach is that it only caters for authentication and not authorisation. What if the login details supplied are ok, but they're not allowed access to the page being requested in the RedirectTo field? With the code I showed you the other day it would assume all was ok as a DomAuthSessId cookie is returned and it would simply reload the page. At this point you'd see a standard login form with a message explaining that you're not allowed in.

    How Can We Cater for Authorisation Issues?

    Even if there's a session cookie returned we still need to examine the actual page itself to check it's not another login form. I've seen various ways of doing this, which all seem to rely on finding certain text (such as "You are not authorized") within the HTML of the page itself. 

    Now, you know me, I'm just not going to be happy with that solution am I. I wanted something more universal/stable, so I looked in to using HTTP headers to convey the actual state of the login request.

    What I came up with is a header I've called Domino-Auth-Response. You can see an example of it here in the headers received from Domino following an Ajax login request:

    login1

    Foolishly I'd tried to login to as a user (called One Test) with no access to the database (Anonymous = Author. Default = None. Changed for purposes of this demo). Instead of reloading the page, which, in effect, locks the user out I can trap the above scenario by inspecting the headers of the returned page, using a line like this in the "onSuccess" function for the Ajax call:

    if (transport.getResponseHeader("Domino-Auth-Response")){ //problem

    No need to try and search the page. If the above header is found we can handle it in a much more graceful manner, which I'll discuss in a mo. First, about the header.

    How To Add a Custom Header to Login Forms

    Let's assume you have a domcfg.nsf on your server and you have the right to make changes to the $$LoginUserForm within it.  Open the form and it will look like this by default:

    login2

    Beautifully designed.

    Look inside the Computed Value I've pointed to and you'll see a formula like this:

    login3

    Although I removed some bits, you get the idea? Depending on the value of the Domino-set field called reasonType a message is shown to the user. This is where you'd be able to internationalise the server if needs be.

    Now let's look at the code again and see how we can use it add our new header:

    login4

    As simple as that! Whatever message is shown to the user we can find this out without having to look inside the HTML. We also know the "reason type" code. This in itself could replace the need for returning the text of the message. On its own the reason code is useful for processing the login in our JavaScript.

    Dealing With Unauthorised Logins

    If the response is to say "you're not allowed to do that" then it's a fair bet that the user doesn't want to remain logged in as that user if they don't have access. We could log them out simply by over-writing the cookie we just received. Either we log the user out completely by setting its value to "" or (if they were already logged in) we can keep them logged in as the previous user by remembering the old value of the cookie and resetting it to that.

    You can give this a go from the DEXT homepage. First login as Dext User (password=dext) . Once logged in notice there's now a "re-login" link up there. Use the login form to re-authenticate as One Test (username and password are both test1).

    One Test has no access to the application so you should see a message to that effect. Now refresh the page. Notice you're still logged in as Dext User!

    We can do this because the DEXT JavaScript object records all the cookie values when the page loads. We can look to it for the previous session code and reset the cookie to that.

    A much more sensible approach. No?

    In Summary

    This whole exercise has been as much of a proof of concept as anything else. How much use it would be in a real world application I don't know. What it doesn't do is trap any request from the server for the user to login. It only works when the user chooses to login.

    The only way we could create a system that relied on it would be to have the onclick of any link/button check the current user's access before opening a form or editing a document. If the current user has access then just carry on. If not then we can display our Ajax login form and set its RedirectTo field to the href value of the link clicked.

    Still, whether or not is has a true practical use, it's a good example of using the @SetHTTPHeader function if nothing else and it's been fun playing. Hopefully it's of use to somebody.

    Click here to post a response


    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. Разительно федеральный DDoS

    Проблема была вызвана переходом администрации Буша с почты на основе Lotus Notes к использованию Microsoft Exchange.

    2. TECHLABS Software Digest #66'08

    Google Message Discovery coвмecтим c Microsoft Exchange и IBM Lotus Domino, cдeлaннoe пocлaблeниe нaвeрнякa привлeчeт нa cтoрoну Google мнoжecтвo нoвых клиeнтoв.

    3. Ваш шанс начать свое дело!

    Надоело считать копейки?
    Ваш шанс начать свое дело!
    Заходите сюда и вы все об этом узнаете ГЛАВНОЕ НЕ ПОЛЕНИТЕСЬ И ПРОЧИТАЙТЕ ВСЕ ДО КОНЦА.

    4. работа Lotus Domino 7 на Vista Sp1

    Сервер Lotus Domino 7.0.3 работает под Microsoft Vista SP1
    После завершения (или рестарта) сервера он всегда завершается с ошибкой и запускает диагностику.
    И потом в следующий свой запуск начинает работу с проверки целостности баз данных.
    Кто-нибудь сталкивался с подобной проблемой?
    Решается ли данная проблема или же некая проблема совместимости Domino с Vista ?

    5. работа Lotus Domino 7 на Vista Sp1

    Сервер Lotus Domino 7.0.3 работает под Microsoft Vista SP1
    После завершения (или рестарта) сервера он всегда завершается с ошибкой и запускает диагностику.
    И потом в следующий свой запуск начинает работу с проверки целостности баз данных.
    Кто-нибудь сталкивался с подобной проблемой?
    Решается ли данная проблема или же некая проблема совместимости Domino с Vista ?

    6. Кликнете отложи началото на унифицирани комуникации технология продукти, като _

    2006, IBM Lotus Notes ще бъде в бизнес Sametime IM като отделен модул, софтуерни продукти, стартира официално IBM Lotus Sametime 7,5. От Microsoft и IBM, две водещ доставчик на софтуер за предприятието, единна платформа за обмен на съобщения има две основни продукти: Така например, Microsoft Exchange Server и офис съобщенията на сървъра с операции, докато IBM Lotus Notes и Lotus Sametime, са два-pronged подход.

    7. Выпуск рассылки Бюллетень Lotus Notes CodeStore No 83 от 2008-10-10 от 10-10 ...

    Вышел новый выпуск рассылки "Бюллетень "Lotus Notes CodeStore" No 83 от 2008-10-10".

    8. Кликнете отложи началото на унифицирани комуникации технология продукти, като _

    2006, IBM Lotus Notes ще бъде в бизнес Sametime IM като отделен модул, софтуерни продукти, стартира официално IBM Lotus Sametime 7,5. От Microsoft и IBM, две водещ доставчик на софтуер за предприятието, единна платформа за обмен на съобщения има две основни продукти: Така например, Microsoft Exchange Server и офис съобщенията на сървъра с операции, докато IBM Lotus Notes и Lotus Sametime, са два-pronged подход.

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

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

    10. Есть Lotus Notes, есть MS Exchange, итд.

    ... некой коммуникационной платформы. Есть Lotus Notes, есть MS Exchange, итд. Нет ...

    11. mSuite5 совершил революцию на рынке программ для мобильных устройств

    Компания CommonTime и российский разработчик решений для мобильных устройств на базе Lotus Notes - ITDT Ltd объявили о выпуске новой 5-ой версии популярного продукта mSuite на российский рынок.

    12. Шо в мире таки произошло за последние месяцы

    Но работала с Lotus Notes, а когда Белый дом перешёл на Microsoft Exchange, заставить нормально заработать старую систему не удалось, и в качестве "временного" решения, которое длится годами, был предложен ручной труд.

    13. Как узнать что завис Агент?

    На Lotus Domino 6.5.3 стоит Босс-Референт, есть агент который "толкает" договора по маршруту, известно что он запускается раз в 10мин.

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

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

    15. Как узнать что завис Агент?

    На Lotus Domino 6.5.3 стоит Босс-Референт, есть агент который "толкает" договора по маршруту, известно что он запускается раз в 10мин. Где можно посмотреть что он завис, когда последнийраз запускался, вобщем надо как-то проанализировать причины сбоев в работе. То что он завис я и так знаю, из того что договора не уходят со стадии обработки сервером, но не знаю средств Lotus позволяющих получить тербуемую информацию. Извените за возможно неграмотный вопрос, подскажите хотябы в каком направлении двигатся.

    16. Как автоматом создать письмо и отправить?

    Здравствуйте, господа админы!
    Помогите, пожалуйста, создать батничек или скрипт, который бы создавал в Lotus Notes письмо и отправлял. Заранее известны адрес, тема, текст и вложение. Вроде как есть утилиты командной строки, только я пока толкового ничего не нашел.
    Заранее благодарю.

    17. Domino 8 Enablement Links

    Here's a handy set of links that will help you train yourself - or others on Domino.

    18. A list of LotusScript error numbers and descriptions

    Below is a list of non "user-defined errors" with a description. Ideally, people will add best practices on troubleshooting some of these errors.Error 3: RETURN without GOSUBError 5: Illegal function
    Блиц-опрос
    Давай знакомиться. В каких отношениях с Lotus Notes?
    (голосование возможно только из письма рассылки)
  • Lotus Администратор
  • Lotus Программист
  • Lotus Пользователь
  • С Lotus Note не знаком
  • Хочу познакомиться с Lotus Notes/Domino
  • Вакансии для специалистов

    1. Ведущий специалист (Lotus Domino)

    Украинская компания по производству алкогольных и безалкогольных напитков
    ООО «Союз-Виктан» объявляет конкурс на вакансию:

    Ведущий специалист (Lotus Domino)

    Основные требования:
    ∙ Опыт работы в области информационных технологий не менее 2 лет;
    ∙ Образование: высшее (техническое);
    ∙ Навыки работы с Postfix;
    ∙ Опыт администрирования и разработки в среде Lotus Domino;
    ∙ Навыки администрирования MS AD (желательно);
    ∙ Владение ПК на уровне опытного пользователя (MS Office, Internet);
    ∙ Английский — технический;
    ∙ Ответственность;
    ∙ Дисциплинированность;
    ∙ Организованность;

    Функциональные обязанности:
    ∙ Администрирование и сопровождение системы корпоративной электронной почты на базе Lotus Domino R6, R7;
    ∙ Техническая поддержка пользователей и удаленных подразделений, разработка и модификация существующих приложений на базе Lotus Domino;
    ∙ Разработка средствами Lotus Designer;
    ∙ Регистрация и сопровождение учетных записей пользователей/серверов/доменов;
    ∙ Анализ системных журналов, предупреждение и устранение неисправностей;
    ∙ Установка и наладка клиентского и серверного программного обеспечения.
    Мы гарантируем:
    ∙ Конкурентное базовое вознаграждение – от 1400 у.е.;
    ∙ Профессиональный и карьерный рост;
    ∙ Соблюдение КЗоТ Украины;
    ∙ Социальные гарантии.

    Резюме высылайте по адресу: Elena.Tarasenko@sv.ua

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


    "Красные книги" 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. Видео и изображения

    1. AMAZING! rescue of a GIRL in a machine of toys

    girl very crossbeam is obstructed in a machine of toys to her in a while rescues it mother of anguish,this happened in January of the 2008. today news: US Lawmakers Spurn Pleas From Leadership in Rejecting Bailout. new report lays out in breathtaking detail the politics behind the firing of federal prosecutors. Comments that include profanity or personal attacks or other inappropriate comments or material will be removed from the site. AFP Fatalities in India temple crush CNET News IBM Offers Lotus Notes For Apple's IPhone Depression risk high for heart patients. By JEFFREY GETTLEMAN NAIROBI, Kenya —American warships on Monday surrounded an arms-laden freighter hijacked by pirates, sealing off any possible escape in a standoff near the craggy Somalia coastline. McCain, Palin, Letterman and SNL - what a week. Heather Locklear's DUI arrest 'sad,' 'Flying By' director Jim ...By LAUREN SHER "This was a man who lived a life that really meant something and will for some time to come," Redford said about his late friend and co-star, Paul Newman. Tina Fey Tries Another Palin Spoof. On energy drinks Terrell Owens is not your doctor. By Barry Svrluga When the Washington Redskins reconvene tomorrow at Redskins Park to begin preparations for another road trip to play another division opponent, they may have taken what could have been a severe handicap -- three road games against ... Sources: Dallas Cowboys' Owens complained to Romo Dallas Morning News

    Author: befoz
    Keywords: blog de video comunidad personales
    Added: September 29, 2008

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

    В избранное