Showing questions tagged:

tryng to import a seamonkey profile in to at TB email system.

Am trying to import seamonkey profile data in to Thunderbird, but keep getting error messages: am using win 11 anddownloaded latest TB exe yesterday. mail.import: Path Pr… (read more)

Am trying to import seamonkey profile data in to Thunderbird, but keep getting error messages: am using win 11 anddownloaded latest TB exe yesterday. mail.import: Path Profiles/4wd1drzq.default is incorrect; isRelative=true SeamonkeyProfileImporter.sys.mjs:67:22 and This page is in Quirks Mode. Page layout may be impacted. For Standards Mode use “”. SeamonkeyProfileImporter.sys.mjs . Have found this: /* This Source Code Form is subject to the terms of the Mozilla Public

* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

import { AppConstants } from "resource://gre/modules/AppConstants.sys.mjs"; import { ThunderbirdProfileImporter } from "resource:///modules/ThunderbirdProfileImporter.sys.mjs";

/**

* A module to import things from a seamonkey profile dir into the current
* profile.
*/

export class SeamonkeyProfileImporter extends ThunderbirdProfileImporter {

 NAME = "SeaMonkey";
 /** @see BaseProfileImporter */
 async getSourceProfiles() {
   const slugs = {
     win: ["AppData", "Mozilla", "SeaMonkey"],
     macosx: ["ULibDir", "Application Support", "SeaMonkey"],
     linux: ["Home", ".mozilla", "seamonkey"],
   }[AppConstants.platform];
   if (!slugs) {
     // We don't recognize this OS.
     return [];
   }
   const seamonkeyRoot = Services.dirsvc.get(slugs[0], Ci.nsIFile);
   slugs.slice(1).forEach(seamonkeyRoot.append);
   const profilesIni = seamonkeyRoot.clone();
   profilesIni.append("profiles.ini");
   if (!profilesIni.exists()) {
     this._logger.debug(
       "No SeaMonkey profile found in the well known location."
     );
     return [];
   }
   const profiles = [];
   const ini = Cc["@mozilla.org/xpcom/ini-parser-factory;1"]
     .getService(Ci.nsIINIParserFactory)
     .createINIParser(profilesIni);
   for (const section of ini.getSections()) {
     const keys = [...ini.getKeys(section)];
     if (!keys.includes("Path")) {
       // Not a profile section.
       continue;
     }
     const name = keys.includes("Name")
       ? ini.getString(section, "Name")
       : null;
     const path = ini.getString(section, "Path");
     const isRelative = keys.includes("IsRelative")
       ? ini.getString(section, "IsRelative") == "1"
       : false;
     let dir;
     try {
       if (isRelative) {
         dir = seamonkeyRoot.clone();
         dir.appendRelativePath(path);
       } else {
         dir = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsIFile);
         dir.initWithPath(path);
       }
     } catch (ex) {
       this._logger.warn(
         `Path ${path} is incorrect; isRelative=${isRelative}`
       );
       continue;
     }
     if (!dir.exists()) {
       this._logger.warn(`${dir.path} does not exist`);
       // Not a valid profile.
       continue;
     }
     profiles.push({ name, dir });
   }
   return profiles;
 }

} Thank you

Open 1 9

Installing Mozilla to new computer

I would like to install Mozilla thunderbird to my new laptop. Someone else installed it on the laptop I currently use. How can I make sure the same settings are on bot… (read more)

I would like to install Mozilla thunderbird to my new laptop. Someone else installed it on the laptop I currently use. How can I make sure the same settings are on both laptops - especially for Thunderbird?

Archived 1 19

Cannot migrate Thunderbird from Win 11 to MAC

Having tried more than a dozen sets of downloaded instructions, including those from Mozilla Thunderbird and Apple, I have become increasingly frustrated and convinced th… (read more)

Having tried more than a dozen sets of downloaded instructions, including those from Mozilla Thunderbird and Apple, I have become increasingly frustrated and convinced that Thunderbird doesn't work on a MAC. Can you offer any "official" instructions? Thank you!

Locked 6 21

Moving Thunderbird from Macbook to Windows 11

Hello I have the Thunderbird folder from the Macbook which contains install and profiles ini files and Crash Reports, Profiles and Pending Pings. I have made several atte… (read more)

Hello

I have the Thunderbird folder from the Macbook which contains install and profiles ini files and Crash Reports, Profiles and Pending Pings.

I have made several attempts to move all the files and folders over but it doesn't matter whether I move them before I install Thunderbird or after I've installed Thunderbird and before I launch the program but every time I get invited to open a new account; I've even tried opening a new account and then moving the files.

I've searched the Forum and other websites but cannot find anyone reporting or rectifying such a problem.

What am I doing wrong?

Kind regards

Mike

Archived 4 22

Syncing accounts and settings between Thunderbird desktop and Thunderbird mobile

I were not sure, where this could belong, therefore I chose "Settings". I recently switched from K9 Mail to Thunderbird Mobile and were very happy to see, that there has … (read more)

I were not sure, where this could belong, therefore I chose "Settings".

I recently switched from K9 Mail to Thunderbird Mobile and were very happy to see, that there has been a migration option to transfer all the account settings from desktop to mobile version.

Well, not all accounts and not all settings were transferred and only the first QR code has been recognized whereas the other three were unrecognizable - but still a good move!

That brought me to the idea: Wouldn't it be nice, if there were some Thunderbird Sync, where all accounts, the server settings, the identities (!!), the signatures (!) and other settings (fonts, quoting etc) would be the same on all devices?

And where would be the place to promote such an idea?

Archived 1 23

Exporting saved searches.

Hi, I make extensive use of saved searches in Thunderbird and find them extremely useful. However, I have not found a way of exporting/importing the searches, so when I s… (read more)

Hi,

I make extensive use of saved searches in Thunderbird and find them extremely useful. However, I have not found a way of exporting/importing the searches, so when I set up a new install I have to start from scratch with the search folders. This can take quite a while.

Does anybody know a way to do this?

I have tried using the profile folders, but they do not seem to save the search properties.

Any help would be very welcome.

Archived 6 23

Export Decktop Thunderbird to Mobile

My Thunderbird Desktop Version 140.9.0esr 64 bit. Help please. Installed Mobile T'bird on android mobile. On Desktop (MS Win11) T'Bird followed Settings - Export to Mobil… (read more)

My Thunderbird Desktop Version 140.9.0esr 64 bit. Help please. Installed Mobile T'bird on android mobile. On Desktop (MS Win11) T'Bird followed Settings - Export to Mobile - included all email accounts and Passwords - Export resulting in pop up box requesting Pin number. Don’t know a Pin nor can find a Pin nor find Settings - Accounts - Sign in options to change it.

Solved 3 26