Diskussion:E-Mail: Unterschied zwischen den Versionen

Aus Wiki StuRa HTW Dresden
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „mal ganz ehrlich niemand kann mails sortieren/wieder finden wenn man kein subject angibt und wenn man was vergessen dann einfach noch ma auf das subject antwor…“)
 
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
mal ganz ehrlich niemand kann mails sortieren/wieder finden wenn man kein subject angibt und wenn man was vergessen dann einfach noch ma auf das subject antworten bzw. Re: vor das bestehende subject schreiben.
== Datei im Format msg (Mail Microsoft Outlook) zum Format eml (Mail, im Allgemeinen) konvertieren ==
 
* https://www.matijs.net/software/msgconv/
 
* https://metacpan.org/pod/Email::LocalDelivery
* https://metacpan.org/pod/Email::Outlook::Message
 
 
; Debian style:
 
: <code>sudo apt install libemail-outlook-message-perl libemail-localdelivery-perl</code>
 
: <code>wget https://raw.githubusercontent.com/mvz/msgconvert/master/script/msgconvert.pl</code>
: <code>chmod +x msgconvert.pl</code>
 
: <code>./msgconvert.pl --mbox mail.eml mail.msg</code>
 
* https://askubuntu.com/a/395203
 
; 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:

Aktuelle Version vom 12. Oktober 2020, 15: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