Thunderbird das HTML austreiben
Sascha Morr
sascha.morr at gmx.de
Sam Sep 30 07:09:13 BST 2006
Hallo Martin,
Martin Schmitz schrieb:
> Am 29.09.06 schrieb Sascha Morr <sascha.morr at gmx.de>:
>> Danke Dir Ralph, ist wirklich genial gelöst mit der Erweiterung ;-)
>
> Die ist total überflüssig, weil sich alles auch ohne einstellen läßt.
> Z.B. durch folgenden Code in
> ~/.mozilla-thunderbird/profile/chrome/userContent.css:
>
> /* Farben zitierter Nachrichten */
> blockquote[type=cite] {
> color: RGB(0,0,255) !important;
> background-color: RGB(245,245,245) !important;
> padding: 0em 0em 0em 0em !important;
> border-right: none !important;
> border-left: none !important;
> }
>
> blockquote[type=cite] blockquote {
> color: teal !important;
> background-color: RGB(235,235,235) !important;
> }
>
> blockquote[type=cite] blockquote blockquote {
> color: maroon !important;
> background-color: RGB(225,225,225) !important;
> }
>
> blockquote[type=cite] blockquote blockquote blockquote {
> color: purple !important;
> background-color: RGB(215,215,215) !important;
> }
>
> blockquote[type=cite] blockquote blockquote blockquote blockquote {
> color: RGB(0,204,0) !important;
> background-color: RGB(205,205,205) !important;
> }
>
> blockquote[type=cite] blockquote blockquote blockquote blockquote
> blockquote { color: RGB(238,0,187) !important;
> background-color: RGB(195,195,195) !important;
> }
Und was genau spricht dagegen das ganze bequem über eine grafische
Oberfläche einzustellen? Klar kann man sehr viel einstellen indem man
sich durch die entsprechenden Dateien hangelt. Aber macht das im
*normalen Einsatz* überhaupt Sinn?
>> Jetzt muß ich als letztes nur noch herausfinden wie ich es hinbekomme
>> das bei einen Zitat nicht nur steht *X schrieb* sondern *X schrieb am
>> <Datum> <Uhrzeit>:* und ich bin wirklich happy mit Thunderbird ;-)
>
> Vielleicht hilft Dir das hier in ~/.mozilla-thunderbird/profile/user.js:
>
> // 0 = Kein Reply-Text
> // 1 = <Author> wrote: - Netscape 3.xx/4.xx style
> // 2 = On <date> <author> wrote:
> // 3 = <Author> wrote On <date>:
> user_pref("mailnews.reply_header_type", 3);
>
> // Deutsches Datumsformat:
> user_pref("mailnews.reply_header_locale", "de-DE");
>
> // Anpassen des "Author wrote":
> user_pref("mailnews.reply_header_authorwrote", "%s schrieb");
>
> // Datumsangabe anpassen:
> user_pref("mailnews.reply_header_ondate", "am %s");
>
> // Trenner zwischen Datums und Authorangabe:
> user_pref("mailnews.reply_header_separator", " ");
>
> // Doppelpunkt durch etwas anderes ersetzen:
> // user_pref("mailnews.reply_header_colon", ":");
> // hier kann man den Doppelpunkt durch etwas anderes ersetzen, z.B.
> auch eine leere Zeile: // user_pref("mailnews.reply_header_colon",
> "<br>");
Das werde ich mir auf jeden Fall mangels Alternativen genauer anschauen.
Danke Dir
Grüße
Sascha