Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
thunderbird [09/01/2017 - 08:43] – thommie | thunderbird [17/08/2024 - 07:06] (aktuell) – Externe Bearbeitung 127.0.0.1 | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
+ | ====== Debugging ====== | ||
+ | |||
+ | Doku: [[https:// | ||
+ | |||
+ | Module: | ||
+ | |||
+ | * imap | ||
+ | * ImapAutoSync | ||
+ | * ldap | ||
+ | * mime | ||
+ | * msgdb (level 1=opens/ | ||
+ | * nntp | ||
+ | * pop3 | ||
+ | * smtp | ||
+ | |||
+ | **Loglevel** | ||
+ | |||
+ | * PR_LOG_NONE = 0, /* nothing */ | ||
+ | * PR_LOG_ALWAYS = 1, /* always printed */ | ||
+ | * PR_LOG_ERROR = 2, /* error messages */ | ||
+ | * PR_LOG_WARNING = 3, /* warning messages */ | ||
+ | * PR_LOG_DEBUG = 4, /* debug messages */ | ||
+ | * 5 (recommended) | ||
+ | |||
+ | z. B. für imap und smtp: Umgebungsvariable für beide Module< | ||
+ | |||
+ | export NSPR_LOG_MODULES=imap: | ||
+ | |||
+ | </ | ||
+ | |||
+ | Dann Umgebungsvariable für Logfile | ||
+ | |||
+ | < | ||
+ | export NSPR_LOG_FILE=/ | ||
+ | |||
+ | </ | ||
+ | |||
+ | Direktes IMAP Logging | ||
+ | |||
+ | < | ||
+ | export MOZ_LOG=IMAP: | ||
+ | export MOZ_LOG_FILE=/ | ||
+ | |||
+ | </ | ||
+ | |||
====== Erscheinungsbild ====== | ====== Erscheinungsbild ====== | ||
- | Doku siehe http:// | + | Doku siehe [[http:// |
* Verzeichnis Chrome erstellen | * Verzeichnis Chrome erstellen | ||
- | * darin userChrome.css erstellen. Formatierungsbeispiele: | + | * darin userChrome.css erstellen. Formatierungsbeispiele: |
- | < | + | /* Global UI font */ |
* { font-size: 11pt !important; | * { font-size: 11pt !important; | ||
font-family: | font-family: | ||
Zeile 12: | Zeile 57: | ||
</ | </ | ||
+ | |||
===== Trees individuell ===== | ===== Trees individuell ===== | ||
- | < | + | < |
- | #threadTree > treechildren {font-size: 12px; font-family: | + | # |
- | #dirTree > treechildren {font-size: 12px; font-family: | + | # |
- | # | + | # |
+ | # | ||
</ | </ | ||
+ | |||
===== Menüs ===== | ===== Menüs ===== | ||
- | < | + | < |
+ | /* Menu font */ | ||
menu, menulist, menuitem { | menu, menulist, menuitem { | ||
font-family: | font-family: | ||
font-size: 12pt !important; | font-size: 12pt !important; | ||
} | } | ||
+ | |||
</ | </ | ||
+ | |||
====== Konfigurations-Optionen ====== | ====== Konfigurations-Optionen ====== | ||
[[http:// | [[http:// | ||
- | |||