Классический форум-трекер
canvas not supported
Нас вместе: 4 232 404

Работа с файлами pst от M$ Outlook


 
 
RSS
Начать новую тему   Ответить на тему    Торрент-трекер NNM-Club -> Linux, Unix и другие ОС -> ОС *Nix - обсуждение
Автор Сообщение
User_308421847 ®
Стаж: 13 лет
Сообщений: 33
Ratio: 1.952
25%
не хочу флудить и курить долго гугл есть реальные парни которые пользовали убунту с файлами pst от M$ Outlook? Чем пользовать их в убунту?
LittleNightmare
Стаж: 15 лет
Сообщений: 205
Ratio: 38.882
Раздал: 36.53 TB
Поблагодарили: 1728
6.64%
Откуда: Москва
russia.gif
User_308421847 писал(а): Перейти к сообщению
не хочу флудить и курить долго гугл есть реальные парни которые пользовали убунту с файлами pst от M$ Outlook? Чем пользовать их в убунту?

#sudo apt-get install readpst
#mkdir pst-export
#readpst -D -M -b -o pst-export filename.pst
потом запихиваем получившийся .eml в Thunderbird
the_hacker_79
Стаж: 14 лет
Сообщений: 14854
Ratio: 438.275
Поблагодарили: 55906
100%
serbia.gif
Step 1 – Get your email out of the .pst files.
Install the readpst package.
Код:
sudo apt-get install readpst

Now create the directory where you will want the extract email files to be placed.
Код:
mkdir pst-export

Next execute the readpst command against a .pst file.
Код:
readpst -D -M -b -o pst-export archive.pst


Step 2 – Rename exported files
The readpst command will export all your emails into a folder hierarchy that matches the previous folder hierarchy in Outlook. The only problem is that every email is exported as a numeric filename. The text document are .eml files but don’t have the .eml extension. Therefore, we need to recursively rename all the email files to add the .eml extension. Lots of other articles will have you create bash, python, perl or other scripts to do this. I actually found the easiest to be a single command line.
Код:
find . -type f ! -iname '*.eml' -exec rename 's/([0-9]+)$/$1.eml/' {} \;

What we are doing is finding all items that are files and do not already have a .eml extension. When we find these, we rename the file by adding the .eml extension.
NOTE: Depending on how many emails you have to rename, this is not the fastest approach and may run quite a while.

Step 3 – Import .eml files into Thunderbird
It’s now time to import all those email files into Thunderbird to make them useful. I found that what worked best for me was to install the ImportExportTools plugin for Thunderbird and use it to bring everything in.
Once you have installed the plugin it is time to use the tool. Inside Thunderbird, create a temporary local folder that we will use to house this mass of emails that you can later do what you please to get them where you want for their final location in Thunderbird.
Right click the folder in Thunderbird and choose the following menu path
import/export –> import all eml files from a directory –> also from its subdirectories
Then choose the folder you exported all the .pst emails tools (pst-export). Now sit back and wait while all your lovely emails you missed so much are made an active part of your new Thunderbird installation. Go get another cup of coffee and maybe a snack as this too will take a little bit to complete and you’re done.

_________________
Показать сообщения:   
Начать новую тему   Ответить на тему    Торрент-трекер NNM-Club -> Linux, Unix и другие ОС -> ОС *Nix - обсуждение Часовой пояс: GMT + 3
Страница 1 из 1