in reply to GnuPG::Interface Problem
Perhaps the module defaults to writing to a tty that you're not getting in the cron environment.
Are you doing this type of thing? I just lifted this from the module docs.
# how we create some handles to interact with GnuPG my $input = IO::Handle->new(); my $output = IO::Handle->new(); my $handles = GnuPG::Handles->new( stdin => $input, stdout => $output );
|
|---|