A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Mail Enabled Public Folder



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 29th 08, 05:52 PM posted to microsoft.public.outlook.program_vba
[email protected]
external usenet poster
 
Posts: 1
Default Mail Enabled Public Folder

Hello everyone,

I am running server 2003 enterprise x64 with exchange 2007. I setup
couple of public folders and i have a general email address routing
mail to public folders based on outlook rules that i have created.
There are a few moderators for each PF.

Here is the scenario: User A checks PF-1 and see's a new email, he
deals with that email. 5 minutes later User B checks PF-1 and notices
an email there, but has no idea if it was dealt with or not.

I am looking at changing the view in the PF and add a field that shows
exactly who opened it. This way an email comes in its marked unread
until someone opens it, under the View field (ex. Opened By) displays
the username of the person who opened the message.

Has anyone does this before or can anyone point me in the right
direction of what needs to be done.

Thank you in advance for all your help.

Jason
Ads
  #2  
Old May 30th 08, 06:12 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Mail Enabled Public Folder



Maybe VBScript behind the form is an option, which you have to publish then
so that every user uses it:

Function Item_Open()
Dim UserProps
Dim Prop
Set UserProps=Item.UserProperties
If UserProps("OpenedBy") Is Nothing Then
Set Prop=UserProps.Add("OpenedBy", 1)
Else
Set Prop=UserProps("OpenedBy")
End If
If Len(Prop.Value)=0 Then
Prop.Value=Item.Session.CurrentUser.Name
Item.Save
End If
End Function


--
Best regards
Michael Bauer - MVP Outlook

: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool:
: http://www.vboffice.net/product.html?pub=6&lang=en


Am Thu, 29 May 2008 09:52:07 -0700 (PDT) schrieb :

Hello everyone,

I am running server 2003 enterprise x64 with exchange 2007. I setup
couple of public folders and i have a general email address routing
mail to public folders based on outlook rules that i have created.
There are a few moderators for each PF.

Here is the scenario: User A checks PF-1 and see's a new email, he
deals with that email. 5 minutes later User B checks PF-1 and notices
an email there, but has no idea if it was dealt with or not.

I am looking at changing the view in the PF and add a field that shows
exactly who opened it. This way an email comes in its marked unread
until someone opens it, under the View field (ex. Opened By) displays
the username of the person who opened the message.

Has anyone does this before or can anyone point me in the right
direction of what needs to be done.

Thank you in advance for all your help.

Jason

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
access mail from public folder mithilesh Add-ins for Outlook 3 February 27th 08 02:35 PM
Mail Enabled groups Sly Outlook - Using Contacts 0 June 29th 07 06:04 AM
Email contents of mail-enabled contacts public folder rocko Outlook - Using Contacts 1 February 21st 07 07:07 PM
mail merge and Public Folder Contacts Tom K Outlook - Using Contacts 2 November 22nd 06 03:21 AM
Mail Enabled Calendars AndrewZ1978 Outlook - Calandaring 1 October 27th 06 03:22 PM


All times are GMT +1. The time now is 06:54 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.