Diskussion:E-Mail: Unterschied zwischen den Versionen

Aus Wiki StuRa HTW Dresden
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
 
Zeile 2: Zeile 2:


* https://www.matijs.net/software/msgconv/
* https://www.matijs.net/software/msgconv/
* https://metacpan.org/pod/Email::LocalDelivery
* https://metacpan.org/pod/Email::Outlook::Message


; Debian style:
; Debian style:
Zeile 15: Zeile 19:


; Red Hat style:
; Red Hat style:
: <code>sudo dnf install 'perl(Email::LocalDelivery)'</code>
<pre>
No match for argument: perl(Email::LocalDelivery)
Error: Unable to find a match: perl(Email::LocalDelivery)
</pre>
: <code>sudo dnf install 'perl(Email::Outlook::Message)'</code>
<pre>
No match for argument: perl(Email::Outlook::Message)
Error: Unable to find a match: perl(Email::Outlook::Message)
</pre>
: <code>sudo dnf -y install cpan</code>
: <code>sudo cpan Email::Outlook::Message</code>
: <code>chmod +x msgconvert.pl</code>
: <code>./msgconvert.pl --mbox mail.eml mail.msg</code>


; FreeBSD style:
; FreeBSD style:

Aktuelle Version vom 12. Oktober 2020, 14:22 Uhr

Datei im Format msg (Mail Microsoft Outlook) zum Format eml (Mail, im Allgemeinen) konvertieren[Bearbeiten]


Debian style
sudo apt install libemail-outlook-message-perl libemail-localdelivery-perl
wget https://raw.githubusercontent.com/mvz/msgconvert/master/script/msgconvert.pl
chmod +x msgconvert.pl
./msgconvert.pl --mbox mail.eml mail.msg
Red Hat style
sudo dnf install 'perl(Email::LocalDelivery)'
No match for argument: perl(Email::LocalDelivery)
Error: Unable to find a match: perl(Email::LocalDelivery)
sudo dnf install 'perl(Email::Outlook::Message)'
No match for argument: perl(Email::Outlook::Message)
Error: Unable to find a match: perl(Email::Outlook::Message)
sudo dnf -y install cpan
sudo cpan Email::Outlook::Message
chmod +x msgconvert.pl
./msgconvert.pl --mbox mail.eml mail.msg
FreeBSD style