IT/Software/Applications/Thunderbird: Difference between revisions

From msgwiki
Jump to navigation Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
No edit summary
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 7: Line 7:
===AddressBook Synchronization===
===AddressBook Synchronization===


==== Using rsync and abook files across the LAN ====
 
====Using rsync and abook files across the LAN====


#The address books are stored in an old format called a markaby script.
#The address books are stored in an old format called a markaby script.
Line 18: Line 19:
##[https://support.mozilla.org/en-US/questions/1198805#:~:text=mab%20is%20the%20default%20created,files%20are%20ones%20you%20created. Thanks]
##[https://support.mozilla.org/en-US/questions/1198805#:~:text=mab%20is%20the%20default%20created,files%20are%20ones%20you%20created. Thanks]


==== Using Cardbook ====
====Using Cardbook====


# This is an extension that syncs beautifully with NextCloud
#This is an extension that syncs beautifully with NextCloud
# Use WebDav and is active(Oct 2020) being developed
#Use WebDav and is active(Oct 2020) being developed
#  
#


#
#


===Deployment===
===Deployment===
<br />
Sometimes you get stuck on an older version.
 
Thunderbird is now only downloadable as a tar.bz.2 or something.
 
Download and extract to a folder. Run from the thunderbird executable.
 
I recommend you put all the contents in the .thunderibird directory.
 
You will need to add a .desktop file for this to appear in the applications launcher.
 
<code>[Desktop Entry]
 
Encoding=UTF-8
 
Name=Thunderbird
 
Exec=/home/walt/.thunderbird/thunderbird
 
Icon=/home/walt/.thunderbird/icons/thunderbird.png
 
Type=Application
 
terminal=false
 
X-MultipleArgs=false
 
Categories=Application;Network;Email;
MimeType=x-scheme-handler/mailto;application/x-xpinstall;
StartupNotify=true
 
=== Troubleshooting ===
 
==== Menu Bar below toolbar ====
some versions of Thunderbird have the Menu(File, Edit. . . ) below the toolbar(Write, Reply . . . )
 
click settings>general and scroll down to config editor
 
- search for toolkit.legacyUserProfileCustomizations.stylesheets and change to true
 
You need to create a chrome folder in profile, and a userChrome.css file in the folder (with content shown below).
 
- exit and restart TB and it should work,
/*  #######    */
@namespace html url("<nowiki>http://www.w3.org/1999/xhtml</nowiki>");
#toolbar-menubar {
  order: 1;           
}
unified-toolbar {
  order: 2;           
}
#tabs-toolbar {
  order: 3;             
}
</code>

Latest revision as of 06:32, 9 October 2023

Setup

Configure

Add-Ons

AddressBook Synchronization

Using rsync and abook files across the LAN

  1. The address books are stored in an old format called a markaby script.
    1. Old does not mean bad. Though in my personal case there is some statistical evidence to say it does.
  2. When you first start you will find an addressbook called All Addressbooks and inside of that Personal and Collected.
    1. abook.mab is the default created 'Personal Address Book'
    2. history.mab is default created 'Collected Addresses'
    3. other.mab files are ones you created.
      1. they will appear as imap1.mab and so on.
    4. Thanks

Using Cardbook

  1. This is an extension that syncs beautifully with NextCloud
  2. Use WebDav and is active(Oct 2020) being developed

Deployment

Sometimes you get stuck on an older version.

Thunderbird is now only downloadable as a tar.bz.2 or something.

Download and extract to a folder. Run from the thunderbird executable.

I recommend you put all the contents in the .thunderibird directory.

You will need to add a .desktop file for this to appear in the applications launcher.

[Desktop Entry]

Encoding=UTF-8

Name=Thunderbird

Exec=/home/walt/.thunderbird/thunderbird

Icon=/home/walt/.thunderbird/icons/thunderbird.png

Type=Application

terminal=false

X-MultipleArgs=false

Categories=Application;Network;Email; MimeType=x-scheme-handler/mailto;application/x-xpinstall; StartupNotify=true

Troubleshooting

Menu Bar below toolbar

some versions of Thunderbird have the Menu(File, Edit. . . ) below the toolbar(Write, Reply . . . )

click settings>general and scroll down to config editor

- search for toolkit.legacyUserProfileCustomizations.stylesheets and change to true

You need to create a chrome folder in profile, and a userChrome.css file in the folder (with content shown below).

- exit and restart TB and it should work,

/*  #######    */
@namespace html url("http://www.w3.org/1999/xhtml");
#toolbar-menubar {
  order: 1;             
}
unified-toolbar {
  order: 2;             
}
#tabs-toolbar {
  order: 3;              
}