in reply to Re: Convert KMail emails to Claws
in thread Convert KMail emails to Claws

Thanks. I included both the 'Use' statements, and that code, however the error was "Undefined subroutine &main::make_path"

Possibly the 'Use' needs to be defined globally or I put the 'Use' with the sub routine ?

Replies are listed 'Best First'.
Re^3: Convert KMail emails to Claws
by huck (Prior) on Apr 28, 2017 at 04:32 UTC

    Replace use File::Path; with use File::Path qw(make_path);, it is not exported by default.