Possible to mass-migrate Usenet settings from Thunderbird to *pine?
From Ottavio Caruso@ottavio2006-usenet2012@yahoo.com to comp.mail.pine on Mon Oct 23 09:36:53 2023
From Newsgroup: comp.mail.pine
Hi, I don't care much about email but I have 100s of NGs that I want to
move to *pine without having to go to manual settings. Ideally I'd like
to have the same NGs and the exact point to where I was in Thunderbird.
My system is Debian Bullseye.
In the past, I used to use this script, but it would do half the job,
that is move the NGs but not take account of the messages already read.
########### start
$ cat opt/bin/sync2.sh
#!/bin/bash
clear
cd
DIR=sync-$(date +"%m%d%Y")
mkdir $DIR
cd $DIR
echo
echo 'Copying Thunderbird newsrc files'
find ~/.thunderbird/yccty18i.default-release/News/ -type f -name
newsrc-* -mtime -7 -ctime -7|xargs tar cvf - | ( tar xfp -)
##### end
Then I had to edit the newsrc-* file names to fit onto *pine (don't
remember how I did it) but it didn't do what I meant to achieve.