Testing libdbx -- used in mail::transport::dbx

2008-08-11 Thread Phillip Richcreek
I posted this topic in the Activeperl list almost three days ago and have not had any response. __ I'm working with the author of libdbx, which is a C program used in mail::transport::dbx, to troubleshoot a problem I'm experiencing when using mai

Re: problem with print

2008-08-11 Thread Justin Allegakoen
2008/8/11 Brian Raven <[EMAIL PROTECTED]> > Tobias Hoellrich <> wrote: > > Try: > > $|++; > > to unbuffer STDOUT. > > > > Hope this helps - Tobias > > Not quite. That variable activates autoflush, which isn't > quite the same as unbuffered output, on the currently selected > filehandle, which

alias problems

2008-08-11 Thread John Deighan
I'm trying to create a global variable in my main script, then when I load a Perl module, in it, I want to create an alias to that global in the loaded Perl module. But, when I call a function in that module, the variable is empty (though I know that the global in my script isn't empty). I want

RE: problem with print

2008-08-11 Thread Brian Raven
Tobias Hoellrich <> wrote: > Try: > $|++; > to unbuffer STDOUT. > > Hope this helps - Tobias Not quite. That variable activates autoflush, which isn't quite the same as unbuffered output, on the currently selected filehandle, which may not actually be STDOUT (see 'perldoc perlvar'). Also,