Comments on Script for converting Outlook pst to Thunderbird/Evolution compatible format on Linux
Script for converting Outlook pst to Thunderbird/Evolution compatible format on Linux This tutorial will show how to convert Outlook PST into Thunderbird/Evolution compatible SBD format. For this I have created a script for the conversion format.This will work in Debian/Ubuntu/CentOS too!
4 Comment(s)
Comments
Cannot load inline images after convertion
8/10/2016. Using Ubunto 16.04 with TB 45. I used the modified script from Steve Lloyd. After copying and pasting the script to a new file, I had to open in "vi" to remove special characters at the end of each line. Once that was complete, the script ran flawlessly. I had to copy each individual newly created file/folder into my "Local Folders" of Thunderbird. Then just a little reorganization and everything was where I wanted it. All attachments came through as well.
I really appreciate the efforts of #####Srijan Kishore and Steve Lloyd#####.
Bonjour en complément après tests, je propose ces adaptations du script :
<quote>mkdir /home/"user"/outlook#File selectionreadpst -o /home/"user"/outlook/ -r `zenity --file-selection` -cv -ufind /home/"user"/outlook/ -type d | tac | grep -v '^/home/"user"/outlook/$' | xargs -d '\n' -I{} mv {} {}.sbdfind /home/"user"/outlook/ -name mbox -type f | xargs -d '\n' -I{} echo '"{}" "{}"' | sed -e 's/\.sbd\/mbox"$/"/' | xargs -L 1 mv#Script Completion# vidage des fichiers cachés restant dans les dossiers vidés des mbox précédemment renommésfind /home/"user"/outlook/ -iname '*.*' -type f -delete# vidage des dossiers précédemment vidésfind /home/"user"/outlook/ -name *.sbd -empty -type d | xargs -d '\n' rmdirgdialog --title "Pst Conversion complete" --msgbox "Your pst conversion is complete,just paste the folder /home/"user"/outlook/*outlook.sbd in Local Folder in Thunderbird/Evolution and you can use the folders there" 200 150</quote>