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 before you ask, I'm not trying to write anot

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 'Outlook'. Perhaps one of t

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 or chat wit

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 an email address that

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

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, because the rule was that it ends at newline,

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 $/; $_ = <>; s/"[^"]*"//g; s/(?<=,)[^",

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] For a

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: [EMAIL PROTECTED] Work

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
On Wed, 2007-05-30 at 13:34 +0530, Laxminarayan G Kamath A wrote: > What I am expecting is help with the variant of the regex I used as the > condition for while loop. I am sure If we modify that regexp a little > bit, then we can just use it on the record like this : > > $_ = $record; > @fields

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 #!/

RE: outlook

2002-11-25 Thread John
PROTECTED] > -Original Message- > From: Rob Dixon [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 25, 2002 12:34 PM > To: [EMAIL PROTECTED] > Subject: Re: outlook > > > Javeed > > If Outlook is connecting to a POP3 server (rather t

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 email directl

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 [mailto:[EM