Re: Outlook with perl

2008-08-18 Thread Jenda Krynicky
From: "Pat Rice" <[EMAIL PROTECTED]> > Hi all > Just wondering is there any way we can talk to outlook using perl, as > in to look at a users inbox and then do an action on that ? for > example send a mail from a users mail. > > And no befor

Re: Outlook with perl

2008-08-18 Thread Dermot
2008/8/18 Pat Rice <[EMAIL PROTECTED]>: > Hi all > Just wondering is there any way we can talk to outlook using perl, as > in to look at a users inbox and then do an action on that ? for > example send a mail from a users mail. I get about 10 hits if I search cpan for 'Ou

Outlook with perl

2008-08-18 Thread Pat Rice
Hi all Just wondering is there any way we can talk to outlook using perl, as in to look at a users inbox and then do an action on that ? for example send a mail from a users mail. And no before you ask, I'm not trying to write another spamming application :) Pat -- To unsubscribe, e

Re: outlook module

2007-11-20 Thread oryann9
Why not just create a message filter or rule or whatever Outlook calls it (or multiple ones for various criteria)? > > I did and it I cannot get it to work. Be a better pen pal. Text o

Re: outlook module

2007-11-01 Thread oryann9
- Original Message From: oryann9 <[EMAIL PROTECTED]> To: Perl List Sent: Thursday, November 1, 2007 1:02:35 PM Subject: Re: outlook module > I am looking for some humble advice. I keep getting annoying emails using the mail client 'Outlook 2003 SP2.' These message

Re: outlook module

2007-11-01 Thread oryann9
> I am looking for some humble advice. I keep getting annoying emails using the mail client 'Outlook 2003 SP2.' These messages are intended for another > person in my company with the same name as I. Not to my surprise, the email support group decided to give this person

Re: outlook module

2007-11-01 Thread Tom Phoenix
On 11/1/07, oryann9 <[EMAIL PROTECTED]> wrote: > I want to parse these .msg, files look for certain keywords, if these > keywords are found compose a reply email that contains a pre-written > message template to the original sender. > > What module will fit my needs? There's lots of modules on C

RE: outlook module

2007-11-01 Thread Jo for Groups and Lists
It seems to me that your network admins need to correct their faulty procmail routing recipes. It should not be your job to deal with this. Do the network admins have any idea how big a problem this is? Not only for your inconvenience, but for the other person not receiving messages? Jo -- To u

outlook module

2007-11-01 Thread oryann9
All, I am looking for some humble advice. I keep getting annoying emails using the mail client 'Outlook 2003 SP2.' These messages are intended for another person in my company with the same name as I. Not to my surprise, the email support group decided to give this person an ema

Re: Outlook CSV Parser

2007-08-10 Thread Laxminarayan G Kamath A
On Wed, 30 May 2007 12:14:52 -0400, "Chas Owens" <[EMAIL PROTECTED]> wrote: ... > http://www.perl.com/pub/a/2004/06/25/profiling.html > http://search.cpan.org/~nwclark/perl-5.8.8/utils/dprofpp.PL > The following code seems to speed up the parsing by two orders of > magnitude (2.214 seconds

Re: Outlook CSV Parser

2007-05-31 Thread Dr.Ruud
"Mumia W." schreef: > Laxminarayan G Kamath A: >> http://download.deeproot.in/~kamathln/outlook-encrtypted-sample.csv > > Well I asked for it. :-) > > It's impossible to tell where one record ends and another record > begins with that file. Maybe not, becau

Re: Outlook CSV Parser

2007-05-31 Thread Dr.Ruud
Laxminarayan G Kamath A: > Ruud: >> You forgot to supply a link to such a file. Or show a __DATA__ >> section for testing. > > http://download.deeproot.in/~kamathln/outlook-encrtypted-sample.csv OK, lets check how wellformed it is: perl -we' local $/; $_

Re: Outlook CSV Parser

2007-05-31 Thread Mumia W.
On 05/31/2007 02:32 AM, Laxminarayan G Kamath A wrote: http://download.deeproot.in/~kamathln/outlook-encrtypted-sample.csv Well I asked for it. :-) It's impossible to tell where one record ends and another record begins with that file. -- To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Outlook CSV Parser

2007-05-31 Thread Laxminarayan G Kamath A
On Wed, 30 May 2007 10:38:40 +0200, "Dr.Ruud" <[EMAIL PROTECTED]> wrote: > You forgot to supply a link to such a file. Or show a __DATA__ section > for testing. http://download.deeproot.in/~kamathln/outlook-encrtypted-sample.csv -- Cheers, Laxminarayan G Kamath A e-mail:

Re: Outlook CSV Parser

2007-05-30 Thread Chas Owens
On 5/30/07, Ken Foskey <[EMAIL PROTECTED]> wrote: snip CSV is a horrible format. Far too unreliable, we have exported CSV from excel that imported differently into excel. snip Just pedantic nitpick, but CSV is an incredibly reliable format, the problem is find programs that actually use CSV r

Re: Outlook CSV Parser

2007-05-30 Thread Chas Owens
On 5/30/07, Laxminarayan G Kamath A <[EMAIL PROTECTED]> wrote: snip Any ways of optimising it further? snip Premature optimization is the root of all evil. Have you profiled the code yet? If not then here is some documentation that will point you in the right direction http://www.perl.com/pu

Re: Outlook CSV Parser

2007-05-30 Thread Ken Foskey
cord; > @fields = /regexp/g; > > I tried a lot of different ways but just could not get the right > regexp :-(. CSV is a horrible format. Far too unreliable, we have exported CSV from excel that imported differently into excel. Is there another option, eg connecting to Outlook v

Re: Outlook CSV Parser

2007-05-30 Thread Mumia W.
On 05/30/2007 03:04 AM, Laxminarayan G Kamath A wrote: [...] I tried a lot of different ways but just could not get the right regexp :-(. I reiterate what the eminent Dr. Ruud said. I need some data to play with before I play with the code you posted. -- To unsubscribe, e-mail: [EMAIL P

Re: Outlook CSV Parser

2007-05-30 Thread Dr.Ruud
Laxminarayan G Kamath A schreef: > The stubling blocks : there are several types of problems in > Outlook's CSV .. You forgot to supply a link to such a file. Or show a __DATA__ section for testing. -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe, e-mail: [EMAIL PROTECTED] For add

Re: Outlook CSV Parser

2007-05-30 Thread Laxminarayan G Kamath A
On Wed, 30 May 2007 01:26:30 -0500, "Mumia W." wrote: > The Perl module Text::CSV_XS would make your work much simpler, and > it might execute a little faster. Thank you for pointing out .. but we have already tried it! Unfortunately, it failed to seperate the records in the right fashion. We h

Re: Outlook CSV Parser

2007-05-30 Thread Mumia W.
On 05/30/2007 12:40 AM, Laxminarayan G Kamath A wrote: Hi PERLers, We here at DeepRoot Linux were trying to parse Outlook's csv so that I can add them to ldap addressbook.. [...] The Perl module Text::CSV_XS would make your work much simpler, and it might execute a little faster. -- To

Re: Outlook CSV Parser

2007-05-29 Thread Laxminarayan G Kamath A
On Wed, 30 May 2007 11:10:00 +0530, Laxminarayan G Kamath A <[EMAIL PROTECTED]> wrote: > The attached file is what I have > come up to.. but it still takes more ... Had forgotten to attach the file.. -- Cheers, Laxminarayan G Kamath A e-mail: [EMAIL PROTECTED] Work URL: http://deeproot.in #!/

Outlook CSV Parser

2007-05-29 Thread Laxminarayan G Kamath A
Hi PERLers, We here at DeepRoot Linux were trying to parse Outlook's csv so that I can add them to ldap addressbook.. After several futile tries around with lots of built in packages, we decided it was up to us to device an algorithm. As time was of importance , we wrote a "well it works!

RE: CSV file that can be loaded to Microsoft Outlook

2006-06-26 Thread Timothy Johnson
an be loaded to Microsoft Outlook hii, thanx a lot for your immediate reply... now i m able to import but after that it is not taking up correct values. Following is the line that i m trying to import. Now if i keep this as a single line in the CSV file (no word wrap), then Outlook is not importi

Re: CSV file that can be loaded to Microsoft Outlook

2006-06-25 Thread Mihir Kamdar
hii, thanx a lot for your immediate reply... now i m able to import but after that it is not taking up correct values. Following is the line that i m trying to import. Now if i keep this as a single line in the CSV file (no word wrap), then Outlook is not importing it. Only if I break the line

RE: CSV file that can be loaded to Microsoft Outlook

2006-06-24 Thread Mr. Shawn H. Corey
On Sat, 2006-24-06 at 10:50 -0400, Ryan Frantz wrote: > 'CSV' means _Comma_ Separated Values. Semicolons won't work. CSV are also doubly escaped. Commas in CSV are escaped by placing them inside double-quotes. Double-quotes, inside double-quotes, are escaped by placing two in a row; but if they'r

RE: CSV file that can be loaded to Microsoft Outlook

2006-06-24 Thread Ryan Frantz
> -Original Message- > From: Mihir Kamdar [mailto:[EMAIL PROTECTED] > Sent: Saturday, June 24, 2006 10:41 AM > To: beginners > Subject: CSV file that can be loaded to Microsoft Outlook > > hi, Howdy, > > I have written a perl script whose output is a CSV

CSV file that can be loaded to Microsoft Outlook

2006-06-24 Thread Mihir Kamdar
hi, I have written a perl script whose output is a CSV file(semicolon seperated) in keeping reference to the Outlook Address Book. But whenever I am importing the file to Outlook, it gives me some data error, and does not get imported. Can anybody help me on this?? thanx, mihir

Accessing Outlook mail via Mail::Outlook

2005-05-25 Thread jason_normandin
Greeting. I am trying to create a script that will search a user's outlook email and move any messages that mtahc a certain subject to a new folder. To accomplish this I found the Mail::Outlook module on CPAN that allows me to easily access the OLE Outlook calls via Win32::Ole. My probl

RE: Controlling bottom posting in outlook

2004-04-26 Thread Bob Showalter
Price, Jason (TLR Corp) wrote: > ... Is > there a utility available that would allow me to bottom post only on > messages I choose? A right click option for bottom posting would be > ideal - anyone know of a utility that can do this? Outlook-QuoteFix can be configured to o

OT: Controlling bottom posting in outlook

2004-04-26 Thread Price, Jason (TLR Corp)
I've sensed that bottom posting is considered proper etiquette for this mailing list. Using Outlook, this is obviously not the default reply behavior. I have seen a link to a utility that allows bottom posting in Outlook, but it replaces the default reply format for all messages. Being

RE: How to parse Microsoft Outlook Inbox

2004-01-09 Thread Bradley A. Brown
You can also export emails into .txt files as well... At least you can on 2000 and XP. You can also get an add-on for Outlook that will automatically do this for you. Since the one I use is a commercial program I will just say do a google search on automatically saving emails in outlook and you

RE: How to parse Microsoft Outlook Inbox

2004-01-09 Thread Bill Akins
> -Original Message- > From: Tassilo von Parseval > [mailto:[EMAIL PROTECTED] > Sent: Friday, January 09, 2004 12:24 AM > To: Wiggins d'Anconia > Cc: PerlDiscuss - Perl Newsgroups and mailing lists; > [EMAIL PROTECTED] > Subject: Re: How to parse Microsoft

Re: How to parse Microsoft Outlook Inbox

2004-01-08 Thread Tassilo von Parseval
On Thu, Jan 08, 2004 at 10:37:02PM -0500 Wiggins d'Anconia wrote: > PerlDiscuss - Perl Newsgroups and mailing lists wrote: > >Hi, > >I am trying to write a script that will parse Microsoft outlook Inbox > >to a .txt file. Please let me know if there a way to do that.

Re: How to parse Microsoft Outlook Inbox

2004-01-08 Thread Wiggins d'Anconia
PerlDiscuss - Perl Newsgroups and mailing lists wrote: Hi, I am trying to write a script that will parse Microsoft outlook Inbox to a .txt file. Please let me know if there a way to do that. Thanks in advance for your help. I know very little about this specific subject, but Mail::Box has

How to parse Microsoft Outlook Inbox

2004-01-06 Thread PerlDiscuss - Perl Newsgroups and mailing lists
Hi, I am trying to write a script that will parse Microsoft outlook Inbox to a .txt file. Please let me know if there a way to do that. Thanks in advance for your help. Ron -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <h

RE: outlook

2002-11-25 Thread John
Javeed, You might want to take a look at: http://www.microsoft.com/office/previous/outlook/SuprEasy.asp It should give you a leg up on using Perl to get at the guts of Outlook -- at least it shows a bit of an Outlook "road map". John-- [EMAIL

Re: outlook

2002-11-25 Thread Rob Dixon
Javeed If Outlook is connecting to a POP3 server (rather than IMAP) then all the messages it has received are already on your local disk drive. I think you need to explain more about what you're trying to do. Do you already have a Perl program which processes mail? Using Perl to read

outlook

2002-11-22 Thread Javeed SAR
Hi All, I am working on win2000( outlook), i have a question,depending on the message contents i need to do some further processing , is it possible to automatically copy the contents of the mail( i.e body contents) to your local drive or is it possible to take it in an array in PERL. Regards

Re: Want to know about outlook

2002-10-23 Thread Stephen Mayes
As others have pointed out outlook is purely a client connecting to, usually exchange. For the purposes of firing off an email the only M$ option is an exe called mapisend.exe which is a command line smtp mailer - it is part of the back office resource kit. However that is charged for

RE: Wants to know about outlook with perl

2002-10-23 Thread Michael Hooten
You can do this from Perl if you wish. What follows is VBA code that does almost everything you want. You will have to convert it to Win32 Perl. (Hey, I can't do everything for you.) What is excluded is info regarding the username and password. This info is definitely in the Outlook VBA help

RE: Wants to know about outlook with perl

2002-10-22 Thread Beau E. Cox
(pop,pop3,smtp,imap, etc.). Good luck! Aloha => Beau. -Original Message- From: Hello Buddy [mailto:hello_buddy_001@;yahoo.com] Sent: Tuesday, October 22, 2002 4:32 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: Wants to know about outlook with perl Thanks Beau,

RE: Wants to know about outlook with perl

2002-10-22 Thread Timothy Johnson
depends on how much security your Network Admin has on the Exchange server. Trying to automate Outlook would be a lengthy and complicated task that I wouldn't recommend for anybody. There is a Win32::Exchange module out there that you can use to interface with the Exchange directory services,

RE: Wants to know about outlook with perl

2002-10-22 Thread Hello Buddy
platform. My main objective is to send mail users according to server mail log file. Best regards Aung --- "Beau E. Cox" <[EMAIL PROTECTED]> wrote: > Wow - > > First, I don't think you want to go to/from > Outlook - rather you want to access the mail > server th

RE: Wants to know about outlook with perl

2002-10-22 Thread Beau E. Cox
Wow - First, I don't think you want to go to/from Outlook - rather you want to access the mail server that Outlook accesses. Check the tools-> accounts area to see what outlook is accessing. Next, you _can_ use perl, by way of some modules available on CPAN (www.cpan.org). You will mos

Wants to know about outlook with perl

2002-10-22 Thread Hello Buddy
Hi, I am totally beginner in Perl and programming. I have no experience before. I want to know that "is it possible to do with perl script to write and send the mail for outlook without opening outlook application?". What I mean is I just enter user name and password for outlo

Re: Word and Outlook

2002-08-27 Thread Paul Tremblay
On Tue, Aug 27, 2002 at 03:50:56PM -0400, Robin Norwood wrote: > Kirby_Sarah <[EMAIL PROTECTED]> writes: > > > Hi all, > > > > I was wondering, can Perl create and format a Word document using a I don't think there is any module to convert directly to Word. However, there might be a module

Re: Word and Outlook

2002-08-27 Thread Robin Norwood
Kirby_Sarah <[EMAIL PROTECTED]> writes: > Hi all, > > I was wondering, can Perl create and format a Word document using a > template and can Perl create draft copies of Emails with (or without) > attachments? I want to automate a report process so that perl generates the > reports (which

RE: Word and Outlook

2002-08-27 Thread Timothy Johnson
addresses and forward it on from there. -Original Message- From: Kirby_Sarah [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 27, 2002 11:49 AM To: [EMAIL PROTECTED] Subject: Word and Outlook Hi all, I was wondering, can Perl create and format a Word document using a template

Word and Outlook

2002-08-27 Thread Kirby_Sarah
Hi all, I was wondering, can Perl create and format a Word document using a template and can Perl create draft copies of Emails with (or without) attachments? I want to automate a report process so that perl generates the reports (which I do right now into HTML format that I then save a

Help ..trying to send HTML Email to clients on outlook 2k with MIME-Lite-HTML-1.8

2002-03-27 Thread FLAHERTY, JIM-CONT
I trying to send HTML Email to clients on outlook 2k with MIME-Lite-HTML-1.8 I want to send reports html enabled mail intead of the old text mail . I was working with this module from CPAN , help our am I going about it the wrong way Code #!/usr/bin/perl -w ### Get Date

How to send html email from a linux box to recipents who use outlook 2k

2002-02-19 Thread FLAHERTY, JIM-CONT
Hello , I have a perl script thats sends dept managers active adp trouble calls to there email, is there a way I can send them in HTML format instead of text . I use redhat 7.1 , my users use outlook 2k on win 2k thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Import Appointments into Outlook using Perl and vCalendar

2002-01-08 Thread Booher Timothy B 1stLt AFRL/MNAC
documents and create some time of vCalendar file so I can automatically import all of these dates into a personal information manager (such as Outlook or Palm). As it is everyone is laboriously adding these things to their respective calendars or manually inputting this information into Outlook. Does

Outlook Contacts

2001-12-11 Thread Akens, Anthony
Is there a Module available that will let me read in a contacts list from an outlook .pst file, or off of an exchange server, make changes to it, and write it back? The area code in my state is changing, and it would be nice to be able to script this using a regex. Thanks in advance for any

RE: Extracting messages from Outlook

2001-11-21 Thread Chris Spurgeon
I've had good success using Perl to connect to a MS Outlook mail server by using the MAIL::IMAPClient module and talking to the server via the IMAP protocol. The O'Reilly book "Programming Internet Email" ( http://www.oreilly.com/catalog/progintemail/ ) has a good section o

Re: Extracting messages from Outlook

2001-11-21 Thread Casey West
On Nov 22, 2001 at 09:11 +1300, Clive Lansink took the soap box and proclaimed: : Hi. I would like to be able to retrieve messages using a Perl script from : an Outlook 2000 mailbox. I am currently searching for anything to give me a : head start. I've found something that claims to do

Re: Extracting messages from Outlook

2001-11-21 Thread Etienne Marcotte
I don't know, but at worst, you could parse the (often REALLY huge) data file from your mailboxes. As the unix script does. With outlook express it's .mbx, I don't know for outlook Etienne Clive Lansink wrote: > > Hi. I would like to be able to retrieve messages using a

Extracting messages from Outlook

2001-11-21 Thread Clive Lansink
Hi. I would like to be able to retrieve messages using a Perl script from an Outlook 2000 mailbox. I am currently searching for anything to give me a head start. I've found something that claims to do this for Outlook Express but on further investigation it seems this is designed to r

RE: Reading an Outlook "PST" file?

2001-07-06 Thread blowther
go along.)" - Cross Platform Perl OpenAuto Lead Micron Technology, Inc. Boise, Idaho [EMAIL PROTECTED] -Original Message- From: Jos I. Boumans [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 2:45 PM To: Wine, Michael; [EMAIL PROTECTED] Subject: Re: Reading an Outlook

Re: Reading an Outlook "PST" file?

2001-07-06 Thread Luke Bakken
PST files are the native Outlook export format for Outlook folders. Unfortunately, they are binary files, and a quick peek shows that they might be tough to munge. I'd suggest exporting to something more text-friendly. On Fri, 6 Jul 2001, Jos I. Boumans wrote: > forgive the ignorance

Re: Reading an Outlook "PST" file?

2001-07-06 Thread Jos I. Boumans
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 9:23 PM Subject: Reading an Outlook "PST" file? > I need to write a script that will read an Outlook "PST" file (WIN32) so > that I can write each mail message out to a flat file. I have to be

Reading an Outlook "PST" file?

2001-07-06 Thread Wine, Michael
I need to write a script that will read an Outlook "PST" file (WIN32) so that I can write each mail message out to a flat file. I have to believe that this is a simple thing! Can anyone help? Thanks in Advance!

Re: Perl & Outlook/Exchange

2001-07-06 Thread paul
<[EMAIL PROTECTED]> I'd like to write a Perl application that will tell me how many messages are sitting in an Exchange mailbox. Implementations of both POP3 and IMAP can query a mailbox given the username and password. The problem is that I have several mailboxes all using the

Perl & Outlook/Exchange

2001-07-05 Thread Gross, Stephan
I'd like to write a Perl application that will tell me how many messages are sitting in an Exchange mailbox. Implementations of both POP3 and IMAP can query a mailbox given the username and password. The problem is that I have several mailboxes all using the same user account. Outlook c

RE: Outlook Rules (was Subject Prefix)

2001-06-19 Thread John Edwards
You can set a rule in Outlook to look for [EMAIL PROTECTED] in the message header, then move the message to a new folder. You don't have to worry about the address being in the To: or CC: field. Outlook will scan the whole header. John -Original Message- From: Brett W. McCoy [m

How to read OutLook E-Mails?

2001-04-24 Thread Helio S. Junior
Hello, I have a WebPage here in our intranet and i would like to know if it's possible to look for specific Outlook e-mails when the user 'refreshes' the Page. When one user clicks on the Refresh Button, i have to read e-mails from a specific folder in OutLook 2000 and update a