memo.xight.org

Thunderbird

2010-01-26 Tue

External Editor - 任意のエディターでメールを編集できるThunderbirdアドオン

- Summary
任意のエディターでメールを編集できる。
メールを編集中に、 Ctrl+E で外部エディタが起動。

External Editorの設定画面

- Reference
Globs site - External Editor - Usage
http://globs.org/articles.php?lng=en&pg=2

Globs site - Downloads
http://globs.org/download.php?lng=en

- via
窓の杜 - 【NEWS】「Thunderbird」で外部エディターによるメール編集を可能にするプラグイン
http://www.forest.impress.co.jp/article/2005/09/07/externaleditor.html

2009-12-11 Fri

Thunderbirdで未読フォルダの色を変更する

- Summary
Thunderbird を 3.0 にアップデートしたら、
新着メールが届いたフォルダの色が見にくくなったので、カスタマイズしたい。

結局、新着メールが届いたフォルダの色だけを変更する方法は見つからなかった…。

- Thunderbirdの配色のカスタマイズ
userChrome.css を記述し、以下に配置する。

Windows Vista Users\<ユーザ名>\AppData\Roaming\Thunderbird\Profiles\xxxxxxxx.xxxxx\chrome
Windows 2000, XP Documents and Settings\<ユーザ名>\Application Data\Thunderbird\Profiles\xxxxxxxx.xxxxx\chrome
Windows NT WINNT\Profiles\<ユーザ名>\Application Data\Thunderbird\Profiles\xxxxxxxx.xxxxx\chrome
Windows 98, ME Windows\Application Data\Thunderbird\Profiles\xxxxxxxx.xxxxx\chrome
Mac OS X ~\Library\Thunderbird\Profiles\xxxxxxxx.xxxxx\chrome
Linux ,Unix ~\.thunderbird\Profiles\xxxxxxxx.xxxxx\chrome

userChrome.css は UTF-8で保存すること。
userChrome.css を配置し、Thunderbirdを再起動することで反映される。

- userChrome.css
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
 
/* スレッドペインの未読メッセージの表示色を緑色に変える */
/* タグの文字色を上書きするので、オススメできない。 */
treechildren::-moz-tree-cell-text(unread) {
  color: green !important;
}
 
/* フォルダペインの未読メッセージの表示色を緑色に変える */
/* single folder with unread messages */
#folderTree > treechildren::-moz-tree-cell-text(hasUnreadMessages-true) {
  color: green !important;
}
 
/* closed folder containing subfolder with unread messages */
#folderTree > treechildren::-moz-tree-cell-text(closed, subfoldersHaveUnreadMessages-true) {
  color: green !important;
}
 
/* open folder containing subfolder with unread messages */
#folderTree > treechildren::-moz-tree-cell-text(subfoldersHaveUnreadMessages-true) {
  color: green !important;
}


- Reference
userstyles.org - style folders with unread messages
http://userstyles.org/styles/280

- via
MozillaZine.jp :: トピックを表示 - 未読の受信メッセージの色
http://forums.mozillazine.jp/viewtopic.php?p=20606

2009-10-13 Tue

Firefox, Thunderbird でプロファイルの切り替え まとめ

- Summary
Firefox, Thunderbird でプロファイルを指定して起動、
異なるプロファイルを指定して Firefox,Thunderbird を同時に起動する方法。

- プロファイルを指定して Firefox を起動

"C:\path\to\firefox\firefox.exe" -p profile_name


- 異なるプロファイルを使用して Firefox を同時起動

"C:\path\to\firefox\firefox.exe" -no-remote -p profile_name


- プロファイルを指定して Thunderbird を起動

"C:\path\to\thunderbird\thunderbird.exe" -p profile_name


- 異なるプロファイルを使用して Thunderbird を同時起動

"C:\path\to\thunderbird\thunderbird.exe" -no-remote -p profile_name


- Reference
プロファイル - Mozilla Firefox まとめサイト
http://firefox.geckodev.org/index.php?%E3%83%97%E3%83%AD%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB

2009-08-04 Tue

QuoteCollapseのカスタマイズ

- Summary
引用部分を折りたたんで表示できる Thunderbirdアドオン
QuoteCollapseのカスタマイズ。

- 常に1回分の引用を展開する。

/* overwrite quotecollapse default */
blockquote[type="cite"] {
    background-image: none !important;
    height: auto !important;
    overflow: visible !important;
}
 
/* reinstate for level 1 and above: */
BODY.mailview blockquote[type="cite"] blockquote[type="cite"] {
    background-image: url("chrome://quotecollapse/skin/twisty-clsd.png") !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    height: 2ex !important;
    padding-bottom: 0px !important;
    overflow: -moz-hidden-unscrollable !important;
}
 
BODY.mailview blockquote[type="cite"] blockquote[type="cite"][qctoggled="true"] {
    background-image: url("chrome://quotecollapse/skin/twisty-open.png") !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    height: auto !important;
    overflow: visible !important;
}


- 常に2回分の引用を展開する。
userContent.css を編集
/* overwrite quotecollapse default */
blockquote[type="cite"] {
    background-image: none !important;
    height: auto !important;
    overflow: visible !important;
}
 
/* reinstate for level 2 and above: */
BODY.mailview blockquote[type="cite"] blockquote[type="cite"] blockquote[type="cite"] {
    background-image: url("chrome://quotecollapse/skin/twisty-clsd.png") !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    height: 2ex !important;
    padding-bottom: 0px !important;
    overflow: -moz-hidden-unscrollable !important;
}
 
BODY.mailview blockquote[type="cite"] blockquote[type="cite"] blockquote[type="cite"][qctoggled="true"] {
    background-image: url("chrome://quotecollapse/skin/twisty-open.png") !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    height: auto !important;
    overflow: visible !important;
}


- Reference
しげふみメモ : ThunderbirdエクステンションQuoteCollapse
http://blog.livedoor.jp/hakin/archives/50404561.html

mozdev.org - quotecollapse: customising
http://quotecollapse.mozdev.org/customising.html

mozdev.org - quotecollapse
http://quotecollapse.mozdev.org/

2009-08-04 Tue

使っている Thunderbird アドオンまとめ

- Summary
普段使っている Thunderbird アドオンを備忘のためにまとめた。

- Confirm-Address
送信前に、宛先を確認できるアドオン。
誤送信防止に。

- Google Contacts
Google ContactsとThunderbirdのアドレス帳を同期できる。

- Remove Duplicate Messages (Alternate)
重複メールをまとめて削除できるアドオン。

- Headers Toggle
メールヘッダを "h" で表示/非表示を切り替えられる。

- QuoteCollapse
引用部分を折りたたんで表示できる。

- QuoteColors
QuoteCollapseと連携して使うと便利。

- Display Mail User Agent
相手がどんなメーラーを使っているかをアイコンで表示してくれる。

- Reference
Confirm-Address :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/5582

Google Contacts :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/7307

h.ogi blog (jp)
http://hogi-ja.blogspot.com/

h.ogi's place - Google Contacts
http://hogi.a.orn.jp/ja/gmcont/gmcont.rhtml

Remove Duplicate Messages (Alternate) :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/4654

Headers Toggle :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/1489

mozdev.org - quotecollapse
http://quotecollapse.mozdev.org/

mozdev.org - quotecolors
http://quotecolors.mozdev.org/

Display Mail User Agent :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/562

2009-05-24 Sun

EmojiPrint - Thunderbirdで絵文字を表示するアドオン

- Summary
Thunderbirdで、携帯から送られてきた絵文字を、
正しく表示することができるようになるアドオン。
DoCoMo、au、Softbank、Willcomに対応。

- Reference
EmojiPrint
http://www.takaaki.info/addon/emojiprint/

Thunderbirdで携帯メールの絵文字を表示するアドオンを作りました - mizuno_takaakiの日記
http://d.hatena.ne.jp/mizuno_takaaki/20090426/1240756028

2006-04-17 Mon

FirefoxやThunderbirdのメモリ消費量を劇的に減らす方法

- Summary
Firefox ならば about:config を開く.
Thunderbirdならば [ツール] - [オプション...] - [詳細]タブ - [設定エディタ]ボタンから設定.

真偽値 config.trim_on_minimize を作成し, true に設定する.
その後, Firefoxを再起動.

最小化時にメモリを開放するようになる.

- Reference
GIGAZINE - FirefoxやThunderbirdのメモリ消費量を劇的に減らす方法
http://gigazine.net/?news/comments/20060415_firefoxthunderbird/

2006-02-03 Fri

Becky!2 からThunderbirdへ移行

- メールの移行
1. CircleBecky で mbox 形式でエクスポート
2. フォルダ変換 VBScriptを実行
3. Thunderbird で開く.

- $HOME/Maildir/courierimapsubscribed
以下のようにフォルダを列挙

INBOX.debian-users
INBOX.friend
INBOX.important



- Reference
Vector - CircleBecky
http://www.vector.co.jp/soft/win95/net/se252604.html

mozillaZine 日本語版 過去ログ - フォーラム - Becky -> Thunderbird用VBS作ってみました
http://fx2.jp/mz/html/modules/newbb/viewtopic.php?topic_id=1129&forum=5&noreadjump=1

- via
cubic9.com - Thunderbird/Becky!2からの移行
http://cubic9.com/Windows/Mozilla%20Thunderbird/Becky!2%A4%AB%A4%E9%A4%CE%B0%DC%B9%D4/

Becky! から Thunderbird に移行してみた|ナチュ日記。
http://www.warehouse56.com/blog/archives/001199.html