in reply to Convert KMail emails to Claws
Check the directories are being created
# replace this line # $PRETEND || -e "$newdir" || mkdir("$newdir"); # with this unless ($PRETEND || -e $newdir){ mkdir($newdir) or die "ERROR creating $newdir : Perl says $!"; }
Update ; Not sure why this is near the end of program at line 76
mkdir("$claws_tmpdir", 0755);It should probably be up near line 64
pojmy $MAIL_dir = "$kmaildir"; unless ($PRETEND){ mkdir($claws_tmpdir, 0755) or die "ERROR creating $claws_tmpdir : Perls says $!"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Convert KMail emails to Claws
by peterr (Scribe) on Apr 28, 2017 at 04:26 UTC |