Re: Email text encoding

2004-02-12 Thread Owen
On Wed, 11 Feb 2004 15:21:24 -0600
Camilo Gonzalez <[EMAIL PROTECTED]> wrote:

> 
> Eek! I've been told by my ISP that my Perl script to email myself and 
> the user of my form the contents on my contact form has been hijacked by 
> a spammer. My ISP has been deluged by recipients with complaints. Where 
> have I gone wrong? Please be kind, this is a beginners' list after all.

I am not alltogether certain what you are doing, but I suggest you look at 
http://www.gunnar.cc/cgi-bin/contact.pl and then download the latest version of 
CGI::ContactForm

It is a "pure" perl module so can be installed in your own directory.

It probably meets all your concerns


-- 
Owen


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
 




Alternative to Storable

2004-02-12 Thread Jan Eden
Hi all,

I just wrote a CGI script using the Storable module, which works fine on my machine. 
The script retrieves a complex hash and either prints it out or updates it and stores 
it back.

But my ISP does not have Storable installed.

Is there a way to install Storable in my home dir on the server? Is it a pure Perl 
module in this respect?

I tried to use a simple dbm file instead (DB_file) and tie it to hash, but since the 
original hash has a complex structure with references, this did not work. I'd like to 
avoid a real database for this task, but if you think there is no other way, I will go 
there.

Thanks,

- Jan
-- 
A common mistake that people make when trying to design something completely foolproof 
is to underestimate the ingenuity of complete fools.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
 




Re: Alternative to Storable

2004-02-12 Thread Jan Eden
Replying to my own post:

Jan Eden wrote:

>Hi all,
>
>I just wrote a CGI script using the Storable module, which works
>fine on my machine. The script retrieves a complex hash and either
>prints it out or updates it and stores it back.
>
>But my ISP does not have Storable installed.
>
>Is there a way to install Storable in my home dir on the server? Is
>it a pure Perl module in this respect?
>
>I tried to use a simple dbm file instead (DB_file) and tie it to
>hash, but since the original hash has a complex structure with
>references, this did not work. I'd like to avoid a real database for
>this task, but if you think there is no other way, I will go there.
>
Just found out about MLDBM. I will give it a try.

- Jan
-- 
There's no place like ~/

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]