Re: [Perl-unix-users] Accessing mail from the web

2005-03-15 Thread $Bill Luebkert
Humberto Rodriguez wrote: > Dave Baker wrote: > >>Humberto, have you replaced the '/path/to/cgi- >>bin/webmail/modules' with >>the actual path name (in single quotes) to the modules? > > > Yes, i did. The snippet below shows the actual path. > > $Bill Luebkert wrote: > >>So show your latest

Re: [Perl-unix-users] Accessing mail from the web

2005-03-14 Thread Dave Baker
Humberto Rodriguez wrote: Here is the code snippet that does not work: #!/usr/bin/perl -w # folder.cgi use strict; use lib '/path/to/cgi-bin/webmail/modules'; Humberto, have you replaced the '/path/to/cgi-bin/webmail/modules' with the actual path name (in single quotes) to the modules? use Mail::

Re: [Perl-unix-users] Accessing mail from the web

2005-03-14 Thread $Bill Luebkert
Humberto Rodriguez wrote: > Chad Uretsky wrote: > >>Did you try removing the single quotes from the "new" > > statement? > > Yes, Chad; I tried removing the single quotes and leaving no > quotes at all; I tried using double quotes; using only the > folder type literally, with single, double

Re: [Perl-unix-users] Accessing mail from the web

2005-03-14 Thread mario sanchez
humberto - refer to my email about inconsistencies in single/double quotes when using mail best mario On Mon, 14 Mar 2005, Humberto Rodriguez wrote: Thanks Jeff; I tried that and I also tried just connecting with the folder type, without a folder name, which the documentation says may be done sub

RE: [Perl-unix-users] Accessing mail from the web

2005-03-14 Thread Matt Schneider
in / Programmer SKLD Information Services, LLC 303-820-0863 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of mario sanchez Sent: Monday, March 14, 2005 1:50 PM To: Humberto Rodriguez Cc: perl-unix-users@listserv.ActiveState.com Subject: Re: [Perl-unix-users]

RE: [Perl-unix-users] Accessing mail from the web

2005-03-14 Thread Chad I. Uretsky
c: perl-unix-users@listserv.ActiveState.com Subject: Re: [Perl-unix-users] Accessing mail from the web peter, double quotes/single quote usage is variable - incredibly enough. in some cases i use a variable in single other times double around a variable. this practice came about from not being able to be

Re: [Perl-unix-users] Accessing mail from the web

2005-03-14 Thread mario sanchez
peter, double quotes/single quote usage is variable - incredibly enough. in some cases i use a variable in single other times double around a variable. this practice came about from not being able to be consistent without getting an error. why, dont know. hope this helps mario On Mon, 14 Mar 20

RE: [Perl-unix-users] Accessing mail from the web

2005-03-14 Thread Peter Eisengrein
Try changing your 'quotes' to "double quotes" in the open. > -Original Message- > From: Humberto Rodriguez [mailto:[EMAIL PROTECTED] > Sent: Monday, March 14, 2005 12:27 AM > To: perl-unix-users@listserv.ActiveState.com > Subject: [Perl-unix-users] Accessing mail from the web > > > Dea