Notify bei EMail in offentlichem Ordner

  • Hallo zusammen


    Ich habe bei uns in der Firma 6 öffentliche Ordner die als E-Mail Empfänger für die Abteilung gelten.


    Nun ist das Problem, dass der Benutzer keine Anzeige hat, ob es dort neue Mails gibt. Er muss regelmässig alle Ordner durchklicken.


    Gibt es eine Variante ähnlich wie die Desktopbenachrichtigung auch einen E-Mail erhalt bei den öffenltichen Ordnern zu erhalten?


    Danke


    Pascal


    Echnage 2003
    Outlook 2003
    Server 2003

  • Hallo,


    suchst Du sowas hier eventuell:


    http://www.infinitec.de/articles/exchange/webdavevents.aspx



    HowTo: Use the SUBSCRIBE Method to get Exchange store notifications
    Show table of contents
    Table of contents
    Hide table of contents
    Affected products
    Summary
    A few more words...
    How it works
    Example code
    Downloads
    Affected products
    Microsoft Exchange 2000
    Microsoft Exchange 2003
    Summary
    Exchange provides a way to notify clients about changes that occour in public folders, as well as in private mailbox folder. This article describes the steps necessary to consume such events.
    A few more words...
    Generally, there are two event systems in place with Exchange: Eventsinks that run as COM+ applications on the server, or remote clients, which are notified via UDP packets. Depending on the task you want to accomplish, you should take the one or the other:


    If you must process items in the store synchronously, you must use conventional eventsinks (OnSyncSave and OnSyncDelete).
    If your task is performance critical, you should also use the conventional eventsinks.
    If you are not allowed to run any code on the Exchange server, the only option you have is the WebDAV event system.
    The WebDAV event system, has the following drawbacks:


    You are only notified that a change (new item, update or delete) has occured. For example, if you monitor a folder for changes, you will get a notification when a change has occured. You won't, however, get the URL of the changed item. Traditionally, this means that you must du a SEARCH and search for all items with the DAV:getlastmodified property set to a greater value than your last search. With Exchange 2003, new promising system has been introduced, namely WebDAV replication.
    The notification packets are sent via UDP. This means that there are difficulties with firewalls and such things. In this case, you can still use the system, but you must use the POLL method frequently to get information on changed items.
    How it works
    The chain of action is the following:


    The client sends a SUBSCRIBE method to the Exchange server and sets up the subscriptions for the specified folder


    The Exchange Server returns a subscription ID to the client that uniquely identifies the subscription.


    An item within the monitored folder is modified.


    The Exchange server sends an UDP packet to the client which contains a list of all triggered subscription IDs. Until the packet is acknowledged, Exchange will continue sending packets with a decreasing frequency.


    After the client has processed the request, it sends a POLL message with the subscription IDs of the events he has handled.


    When the client does not need the subscription any longer, it issues an UNSUBSCRIBE call on the folder specifying the subscription IDs he want to cancel.


    Example code
    The example code attached to this article is a console application that monitors a folder or element on an Exchange server for changes. Full source code is included. Note that this example uses the WebDAVLayer component.

    ----------------------------------------------------
    Axel Junkers
    AD und Exchange Systemadministrator
    MCT
    ----------------------------------------------------