RE: Defeating mod_perl Persistence

2001-12-12 Thread Jonathan M. Hollin
:: You're probably storing it in a global so it never gets cleaned :: up. Don't :: do that. No, it's not a global Perrin - I've learnt that lesson! :-)

Re: Defeating mod_perl Persistence

2001-12-11 Thread ed phillips
Ged Haywood wrote: > > Hi there, > > On Tue, 11 Dec 2001, Jonathan M. Hollin wrote: > > > When using Mail::Sender only the first email is sent on my mod_perl server. > > When I investigated, I realised that the socket to the SMTP server was > > staying open after the completion of that first em

Re: Defeating mod_perl Persistence

2001-12-11 Thread [EMAIL PROTECTED]
should one not unlink() after the close? > > When using Mail::Sender only the first email is sent on my mod_perl > server. > > When I investigated, I realised that the socket to the SMTP server was > > staying open after the completion of that first email (presumably mod_perl > > is responsible f

Re: Defeating mod_perl Persistence

2001-12-11 Thread Perrin Harkins
> When using Mail::Sender only the first email is sent on my mod_perl server. > When I investigated, I realised that the socket to the SMTP server was > staying open after the completion of that first email (presumably mod_perl > is responsible for this persistence). > > Is there any way to defeat

Re: Defeating mod_perl Persistence

2001-12-11 Thread Eric Cholet
--On mardi 11 décembre 2001 12:25 + "Jonathan M. Hollin" <[EMAIL PROTECTED]> wrote: > Hey Gang, > > When using Mail::Sender only the first email is sent on my mod_perl > server. When I investigated, I realised that the socket to the SMTP > server was staying open after the completion of that

Re: Defeating mod_perl Persistence

2001-12-11 Thread Ged Haywood
Hi there, On Tue, 11 Dec 2001, Jonathan M. Hollin wrote: > When using Mail::Sender only the first email is sent on my mod_perl server. > When I investigated, I realised that the socket to the SMTP server was > staying open after the completion of that first email (presumably mod_perl > is respon

Defeating mod_perl Persistence

2001-12-11 Thread Jonathan M. Hollin
Hey Gang, When using Mail::Sender only the first email is sent on my mod_perl server. When I investigated, I realised that the socket to the SMTP server was staying open after the completion of that first email (presumably mod_perl is responsible for this persistence). Is there any way to defeat