lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Oops. Should be as below (Item.Save line added)


Sub LuaListMailMessageRule(Item As Outlook.MailItem)
  Item.Subject = "[Lua-list] " & Item.Subject
  Item.Save
End Sub

-----Original Message-----
From: lua-bounces@bazar2.conectiva.com.br
[mailto:lua-bounces@bazar2.conectiva.com.br] On Behalf Of Paul Hudson
Sent: 26 September 2006 16:20
To: 'Lua list'
Subject: [Lua-list] RE: Why doesn't the lua list get replaced with a forum ?


>It's not an issue of filtering.  I agree that if I wanted to split out
>the messages to some other folder there's already enough header data
>to do that.  The problem comes when you want all new mail in one
>place:

Write a filter that adds [Lua-list] to the subject line?

Looks like Outlook would need a script to do this, but other mail readers
are more capable.

For Outlook, Alt-F11 then paste this into the form that opens, File/Return
to outlook, and set up a suitable rule that uses the script. Meeting rule
seems to be required according to this
http://support.microsoft.com/?kbid=306108 but it doesn't do anything here.

Sub LuaListMeetingRequestRule(Item As Outlook.MeetingItem)
   MsgBox "Meeting request arrived: " & Item.Subject
End Sub