| Thread | Last Author | Messages read/total | Date |
|---|
| Sort a folder before reading it |
Dmitry Streblechenko |
0 / 4 |
23 Oct 2007 |
| By whatever makes sense in your case - CreationTime, LastModificationTime,
ReceivedTime, SentOn, etc.
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"Samuel" <samuel.shulman@ntlworld.com> wrote in message
news:eqrLhWbFIHA.1168@TK2MSFTNGP02.phx.gbl...
> Sort by what
>
>
> "Dmitry Streblechenko" <dmitry@dimastr.com> wrote in... |
| flag messages that my email is as CC |
Ken Slovak - [MVP - O... |
0 / 2 |
23 Oct 2007 |
| You don't need any code for that, set up a rule to move or flag items where
you are Cc'd.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
"Dan" <Dan@discussions.microsoft.com> wrote in message... |
| MailItem Download Status |
Samuel |
0 / 1 |
23 Oct 2007 |
| Hi
My client complains that in some of the work stations they can't view the
email messages via the application. The application checks the
'DownLoadState' and it lists it only if the values isn't 0 i.e. not header
only
In reality it seems that even if the message is fully downloaded it still
doesn't recognize it as 'downloaded'
In addition, I made tests on my own computer and... |
| Insert another Item in the Context Menu of Outlook 2007 |
Ahmad Jalil Qarshi |
0 / 1 |
23 Oct 2007 |
| Hi,
I have to develop an Addin which will insert a new menu item in the context
menu (Copy, Cut,....) of Outlook 2007, when right clicked on the Body of the
received message.
I am new to the Outlook 2007 automation.
I want to use C# or VC++ 2005 for development of this Addin.
Kindly give me some hints to start this.
Thanks and best regards
Ahmad Jalil Qarshi... |
| hiperlinks in e-mail text |
Sue Mosher [MVP-Outlook] |
0 / 1 |
22 Oct 2007 |
| It depends on the format of the message. If you want to create an HTML-format message, set the MailItem's BodyFormat to olFormatHTML and then use fully tagged HTML (as in a web page) to set the HTMLBody format. If you want to create a plain text message, set BodyFormat to olFormatPlain and just include the URL in the text for the Body property.
--
Sue Mosher, Outlook MVP
Author of... |
| Attachment position in Outlook 2007 |
Sue Mosher [MVP-Outlook] |
0 / 4 |
18 Oct 2007 |
| All my tests put the attachment at the end, too.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
"Glenn" <Glenn@discussions.microsoft.com> wrote in message news:ED694B01-37B0-493F-B18C-D7C04743BE01@microsoft.com...
> Sad thing about it is that It was... |
| Run rules with automation |
Fermon |
0 / 4 |
17 Oct 2007 |
| Sue,
Thanks for your help. Fortunately, I think I can pull that off with this
particular mailbox because it only gets mail from very specific sources so it
will be easy to create my own "rules".
I'll start working on it and looking forward to my company upgrading to
Office 2007 soon!
Thanks again,
Fermon
"Sue Mosher [MVP-Outlook]" wrote:
> What you want to do is not... |
| Scripting Outlook Archive configuration |
Sue Mosher [MVP-Outlook] |
0 / 2 |
17 Oct 2007 |
| As with most other mail profile settings, that's done with a .prf file; see http://support.microsoft.com/kb/222237/
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
"Bjørn R." <BjrnR@discussions.microsoft.com> wrote in message... |
| Outlook Export Calendar to CSV Macro |
Michael Bauer [MVP - ... |
0 / 4 |
17 Oct 2007 |
| james, you're welcome.
#1 no
#2 You can copy that code into Outlook VBA. You might create a new module
(no class module) and copy it into it. For using the functions it's
necessary that the directory already exists.
Another, more powerful, way of dealing with files is the 'Microsoft
Scripting Runtime' library. You might click Tools/References and add that
library to your... |
| switch outlook to offline mode in exchange server .net |
Dmitry Streblechenko |
0 / 4 |
15 Oct 2007 |
| YOu can use IMAPIOfflineMgr interface in C++ or Delphi, but I wouldn't do
that if I were you. Sometjhng is very wrong either with your code or rwith
your client's machine.
Which line of your code raises the error?
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"Ratnesh Raval" <ratneshraval@gmail.com> wrote in message... |
| Outlook message body format |
Ken Slovak - [MVP - O... |
0 / 4 |
13 Oct 2007 |
| I didn't notice it was Outlook 2000, you're correct of course.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
"Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message
news:%23QbVShTDIHA.3848@TK2MSFTNGP05.phx.gbl...... |
| VB6 get Bcc-Addressbook via CDO |
Sue Mosher [MVP-Outlook] |
0 / 2 |
12 Oct 2007 |
| Each Recipient object (oRecipient) has a Type property that will tell you whether it's a To, Cc or Bcc.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
<Patrick.Simons@intecsoft.com> wrote in message news:1192197084.186606.102890@z24g2000prh.googlegroups.... |
| Send meeting update only to new required attendees through VBA |
jknorpp@gmail.com |
0 / 3 |
12 Oct 2007 |
| On Oct 12, 1:01 am, "Michael Bauer [MVP - Outlook]" <m...@mvps.org>
wrote:
> After calling the Send method add a DoEvents. Track the ItemSend event and
> delete every recipient but the new one.
>
> --
> Viele Gruesse / Best regards
> Michael Bauer - MVP Outlook
> Organize eMails:
> <http://www.vboffice.net/product.html?id=2006063&cmd=detail =en&pub=6>
>
> Am Thu, 11 Oct 2007... |
| distributing an outlook 2003 vba to multiple users |
gerryR |
0 / 3 |
12 Oct 2007 |
| that looks like just the job
thanks!
"Michael Bauer [MVP - Outlook]" <mb@mvps.org> wrote in message
news:1jau5xymrm9fp$.1efx63bsi2p29$.dlg@40tude.net...
>
>
> Read this please:
> http://www.outlookcode.com/d/distributevba.htm
>
> --
> Viele Gruesse / Best regards
> Michael Bauer - MVP Outlook
> Organize eMails:
>
> <http://www.vboffice.net/product.... |
| appointment or event data structure |
wb |
0 / 7 |
11 Oct 2007 |
| Thanks for the information.
"Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> wrote in message
news:O5srXq4CIHA.536@TK2MSFTNGP06.phx.gbl...
> Take a look at this page, it has the most complete discussion of
> recurrence pattern, based on original discussions on the MAPI list:
> http://www.geocities.com/cainrandom/dev/MAPIRecurrence.html
>
> --
> Ken Slovak
> [MVP - Outlook]
>... |
| CommandBar Visible and Enable Properties are slow? |
AgapeDisciple |
0 / 2 |
11 Oct 2007 |
| On Oct 5, 10:18 am, "Ken Slovak - [MVP - Outlook]"
<kenslo...@mvps.org> wrote:
> If the user opens an item and Inspector.CurrentItem.EntryID is a null string
> it's a new item. If it has an EntryID it's an existing item. I'd use that in
> addition to or instead of only checking for sent.
>
> To properly handle multiple open Inspectors you really need an Inspector
> wrapper class. The... |
| Weekly Email |
Michael Bauer [MVP - ... |
0 / 2 |
11 Oct 2007 |
| Here's a sample for how to do it with VBA:
http://www.vboffice.net/sample.html?mnu=2&smp=10&cmd=showitem&lang=en?pub=6
Please note, you cannot rely on that Outlook will run 24 hours a day.
Probably most of the times it will work - but Outlook is no server and
sometimes it won't.
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Organize eMails:
<http://www.... |
| looking for fuctionality |
Michael Bauer [MVP - ... |
0 / 2 |
11 Oct 2007 |
| Wil, you can write the tool yourself. With the Win32 API function
FindFirstChangeNotification you can watch for changed files. Parse the
content with Instr, Mid, Right and Left functions.
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Organize eMails:
<http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6>
Am Mon, 24 Sep 2007 20:56:43 +0200... |
| Remove list |
Michael Bauer [MVP - ... |
0 / 2 |
11 Oct 2007 |
| Go the opposite way: Only send mails to recipients who want to receive your
messages.
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Organize eMails:
<http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6>
Am Fri, 28 Sep 2007 16:31:55 -0700 schrieb 2007-User:
> Is it possible to have a list of email addresses of recipients who doesn't
>... |
| How to access message body w/o Security Warning? |
Sue Mosher [MVP-Outlook] |
0 / 13 |
09 Oct 2007 |
| > Do you know anywhere else I
> can check to see if an option has been enabled so that the security
> dialog appears for this?
Outlook 2003 has no simple end-user option to turn the object model prompts on and off.
Look in the Windows registry for keys named HKCU\Software\Microsoft\Security and HKCU\Policies\Software\Microsoft\Security. Report back on any values you find for... |
| Email from outlook |
Sue Mosher [MVP-Outlook] |
0 / 3 |
09 Oct 2007 |
| The Application.CreateItem method used to create a new message in Outlook is documented on MSDN, along with the rest of the Outlook object model.
For WebDAV, start at http://msdn.microsoft.com/exchange/ .
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54... |
| Outlook Mail Item Duplicate "Display Name" Problem |
Albert |
0 / 1 |
08 Oct 2007 |
| Dear all,
I'm currently writing a Persona Menu smart tag in Outlook 2003. I use
dynamic caption and intend to modify the "Additional Actions" sub-menu
depending on the contact(in the MAPIFolder) that the tag is referring
to.
Problem occurs in the mapping of the tag and OL contact. All
information I can find from the smart tag action DLL(with
ISmartTagAction2 interface) is just the... |
| Outlook Security Guard Issue |
Dmitry Streblechenko |
0 / 6 |
05 Oct 2007 |
| You can re-run the Outlook setup and select CDO. But it will besubejct to
tehe security prompts.
cdosys.dll is CDOSYS, which is used for sending messages using SMTP and has
absolutely nothing to do with CDO 1.21.
You might also want to look at http://www.outlookcode.com/article.aspx?id=52
for other options.
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook,... |
| How do I modify a value for each New Mail Message? |
AgapeDisciple |
0 / 20 |
02 Oct 2007 |
| On Oct 2, 2:51 pm, AgapeDisciple <AgapeDisci...@gmail.com> wrote:
> On Oct 2, 2:11 pm, "Ken Slovak - [MVP - Outlook]" <kenslo...@mvps.org>
> wrote:
>
>
>
>
>
> > To repeat once again:
>
> > Public WithEvents newInspector As Outlook.Inspector
>
> > --
> > Ken Slovak
> > [MVP - Outlook]http://www.slovaktech.com
> > Author: Professional Programming Outlook 2007
> > Reminder Manager,... |
| Getting all contact entries using ADO |
Ken Slovak - [MVP - O... |
0 / 2 |
02 Oct 2007 |
| The recordset will only include objects that have an electronic address,
whether it's email or fax or both. It's the same way when you access the
AddressBook in the user interface, a contact with no electronic address
won't show up.
If you need every contact, address or not, then you must use the Items
collection of each contacts folder.
--
Ken Slovak
[MVP - Outlook]... |
| FAx sent over faxmailtransport of server is not recognized as fax |
MIchael |
0 / 1 |
02 Oct 2007 |
| Hello
I want a fax thats sent over the faxmailtransport service of the server to be recognized as a fax and not as an email.
therefore I tried to check the recipient for the word fax with the following simple check
Dim SuchText, SuchZeichen, Pos1
SuchText = itmMail.Recipients ' Zu durchsuchende Zeichenfolge.
SuchZeichen = "Fax" ' Nach "FAx" suchen.
Pos1 = InStr(1, SuchText,... |
| Forward and Delete selected mail |
Mathinirai Selvan |
0 / 1 |
01 Oct 2007 |
| hi,
is there any way to forward deleted mails from outlook to another personal
mail id?
kindly help me... |
| VBA code to link Outlook tasks to journal? |
MIchael |
0 / 5 |
01 Oct 2007 |
| Hello Andrew
I would be happy if you could post your code because I would like to do something similar
Thanks a lot
Michael
<google@aintgotno.com> schrieb im Newsbeitrag news:1188997892.039305.253800@y42g2000hsy.googlegroups.com...
> On Sep 4, 4:50 pm, "Ken Slovak - [MVP - Outlook]" <kenslo...@mvps.org>
> wrote:
>> Have you tried both copying the information from the task and attaching... |
| Printing Appointments |
Sue Mosher [MVP-Outlook] |
0 / 1 |
26 Sep 2007 |
| Outlook doesn't offer any direct way to do that. Perhaps the simplest solution would be to create an email message with the data in it and print that message. See http://www.outlookcode.com/codedetail.aspx?id=24 for a code sample.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.... |
| mailitem.move displays current time as receive time |
Roy van Manen |
0 / 2 |
25 Sep 2007 |
| It's moving from mailboxes to public folders that have the problem
"Roy van Manen" wrote:
> After moving (archiving) emails from inbox and sent items, the displayed
> receivedate on the mails is reset to time of moving.
>
> Seen a lot of questions about this, but nowhere an answer. If I can drag and
> drop and retain all porperties, how do I do that programmatically?... |
| How to forward deleted mails and mails which are not replied for 2 days |
Mathinirai Selvan |
0 / 1 |
25 Sep 2007 |
| Hi,
kindly help me to face this problem.
01.all the deleted mails should go to one particular folder in the server or
to another mail id
02.If i didnt reply to the incoming mail for 2 days,then that mail should go
the particular folder in server or another mail id
thanks in advance..
Warm regards,
Selvan.... |
| Find and replace text in body of 300 emails ... |
Michael Bauer [MVP - ... |
0 / 2 |
24 Sep 2007 |
| Here's a sample for how to get any folder by its path:
www.outlookcode.com/d/code/getfolder.htm
Loop through the folder's Items collection and use the InStr function to
search the word in every item's Body property. The function returns the
word's start position if it's found.
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Organize eMails:
<http://www.... |
| Changing accounts automaticlly... |
Dmitry Streblechenko |
0 / 2 |
21 Sep 2007 |
| See the MailItem.SendUsingAccount property
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"2007-User" <no-email@noemail.com> wrote in message
news:OjW9V$6%23HHA.5160@TK2MSFTNGP05.phx.gbl...
>I am using office outlook 2007, I have many unsent emails in a specific
>folder (let say UNSENT folder), I would like to change the... |
| Access 2000 / Outlook 2007 |
Tim Freeman |
0 / 6 |
19 Sep 2007 |
| "Sue Mosher [MVP-Outlook]" wrote:
> Outlook should be able to resolve IsEmailAddress to a recipient if it is a straight SMTP address, but if you're passing a name that has to be resolved, a login is necessary. Otherwise, Outlook may not know what address lists are available for name resolution. You can add an objOlns.Login statement to either use a specific profile or prompt the user to... |
| Programmatically determine wheher I have received a meeting re |
Mike |
0 / 2 |
19 Sep 2007 |
| Hi Michael,
thanks for the quick reponse. I found that rule and applied it. However I am
not getting it working properly. Which selection do I have to use in order to
select the meeting request for a specific person. I tried message header,
receipient, to name, not to name. Any idea ?
Thanks and best regards, Michael
"Michael Bauer [MVP - Outlook]" wrote:
>
>
> There's a... |
| send email from reminder |
Ken Slovak - [MVP - O... |
0 / 9 |
18 Sep 2007 |
| Do you have macro security set to medium or high? For high you need to sign
your code, for medium you would get prompted each time Outlook starts up.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
"NewToVB" <NewToVB@discussions.... |
| Code for Changing Text Size? |
Ken Slovak - [MVP - O... |
0 / 1 |
18 Sep 2007 |
| If you're using WordMail you can get the Inspector.WordEditor object, which
is a Word.Document object. You can then get the Range for the entire
document and set the font attributes such as size that way. For HTML emails
you can get the HTMLEditor object (not available in Outlook 2007 where you
always use WordEditor) and get the Document from that. Then you'd use HTML
calls to set the... |
| How to quit running outlook application from service without using automation |
Hannes |
0 / 4 |
18 Sep 2007 |
| On Sep 5, 3:11 pm, "Ken Slovak - [MVP - Outlook]" <kenslo...@mvps.org>
wrote:
> It can't be missing in that context or we'd never see people trying to use
> it there, which they do all the time. Something else is going on. At any
> rate an alternative would be to drop into Win32 API coding and find the
> Outlook window and send it a message to close down. You can find the Outlook
> main... |
| Changing location of outlook signature |
Sue Mosher [MVP-Outlook] |
0 / 2 |
17 Sep 2007 |
| No, that's not possible. You could, however, use a login script to copy signature files from a server folder to the local user's folder.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
"Damien" <Dwr@community.nospam> wrote in message... |
| Outllok 2000 automation files |
Ken Slovak - [MVP - O... |
0 / 4 |
17 Sep 2007 |
| It's not available separately, it's not legal to distribute or redistribute
it. If you want a legal copy you need to buy a copy of Office 2000 or at
least Outlook 2000.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
"Samuel"... |
| Getting The Properties Of MSG Files |
Dmitry Streblechenko |
0 / 2 |
13 Sep 2007 |
| Also keep in mind that messages inside the PST stores are *not* stored as
standalone MSG files.
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"Michael Bauer [MVP - Outlook]" <mb@mvps.org> wrote in message
news:79chdficbr11$.1duxdnkilsuq1$.dlg@40tude.net...
>
>
> Read the corresponding object's Size property, e.g. MailItem.... |
| VBA:code does not find all mails from inbox. |
Mario |
0 / 4 |
13 Sep 2007 |
| Hello Sue
Great help . Works like a charm.
We're so lucky having people around with such skills and knowlegde.
Thanks a lot
Mario
"Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message
news:ez%23msNV9HHA.4784@TK2MSFTNGP05.phx.gbl...
Never call Move or Delete inside a For Each loop. Use a countdown loop
instead:
count = Inbox.Items.Count
For i = Count to 1... |
| Outlook Redemption:access body triggers security message |
Mario |
0 / 3 |
12 Sep 2007 |
| Sue ,
I made a mistake in the code. It's as you said , it should just be :
objSMail.body.
I assigned this to a strMSG variable to use it to write it to a textfile.
Works great (Outlook 2002)
Now i can retreive data without having the security prompt.
Thanks for the reply
Mario
"Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message
news:O4KtqWH9HHA.... |
| accessing emails copyied to folders not in a Outlook folder |
Dmitry Streblechenko |
0 / 3 |
10 Sep 2007 |
| What do you mean by "I can open the .msg files when the are in an Outlook
folder"? MSG file is an MSG file is an MSG file.
Do you mean Outlook *messages* (which are not stored as MSG files by the
underlying store provider) in an Outlook folder (such as the Inbox)?
If you mean real files with an MSG extension on teh file system accessible
visible in the Windows Explorer, see my previous... |
| in Access link to Exchange() |
David |
0 / 1 |
09 Sep 2007 |
| Hello all,
I am using Access 2003 and Outlook 2003 on WIN XP machines.
My goal is to link to an exchange Group email inbox from Access to append
new emails to the access table. The access database front end database is
used by many.
The technique I use is good, I use theTony Toes Front End updater that
basically copies the front end mdb to the users c drive and then launches the... |
| AdvancedSearch filter |
Ken Slovak - [MVP - O... |
0 / 2 |
06 Sep 2007 |
| You can't specify a time zone or offset and you shouldn't use an exact time.
Due to rounding errors you're always best filtering on a range of about plus
or minus one minute.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm... |
| Use redemption to get SMTP of sender |
Co |
0 / 28 |
03 Sep 2007 |
| On 31 aug, 23:34, "Dmitry Streblechenko" <dmi...@dimastr.com> wrote:
> The line
> Set objmsg = CreateObject("Redemption.RDOMail")
> will fail - RDOMail object is not creatable, it can only be retrieved from
> some other RDO object (the same is true in the Outlook Object model)
>
> Try the following:
>
> Private Function SMTP_GetSenderAddress()
> Dim objsession As Redemption.RDOSession... |
| How do I attach a signature (html) with pictures? |
Michael Bauer [MVP - ... |
0 / 2 |
03 Sep 2007 |
| see *.outlook.program_vba
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Organize eMails:
<http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6>
Am Fri, 31 Aug 2007 17:38:58 -0700 schrieb Bruce:
> I am trying to write a macro that with send out an email. (This is being
> launched from excel)
> When I run the macro, it puts the signature,... |
| Createing a html message from a worksheet |
Michael Bauer [MVP - ... |
0 / 2 |
03 Sep 2007 |
| The Excel.Column object has a AutoFit method. Maybe that helps? As your
question is Excel and HTML related, this is not the best newsgroup for
getting help.
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Organize eMails:
<http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6>
Am Fri, 31 Aug 2007 17:48:41 -0700 schrieb Bruce:
> I am trying... |
| Running rules in folders by choosing follers in macro |
Michael Bauer [MVP - ... |
0 / 2 |
03 Sep 2007 |
| see *.outlook.program_vba
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Organize eMails:
<http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6>
Am Fri, 31 Aug 2007 17:55:45 -0700 schrieb Bruce:
> I have used Sue Moshers code for running all rules in inbox.
>
> I would like to know how I can modify it so that I can choose which folder... |