1. Home
  2. News
  3. Download
    1. Thunderbird Release Version
    2. Thunderbird 153 ESR (2026)
    3. Thunderbird 140 ESR (2025)
    4. Thunderbird Beta Version
    5. Language Pack (User Interface)
    6. Dictionaries (Spell Check)
  4. Help & Lexicon
    1. Instructions for Thunderbird
    2. Questions & Answers (FAQ) about Thunderbird
    3. Help for this Website
    4. Last Changes
  5. Forums
    1. Unresolved Threads
    2. Latest Posts
    3. Threads of the last 24 hours
  • Login
  • Register
  • 
  • Search
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Forum
  • Lexicon
  • Articles
  • Pages
  • More Options
  1. Thunderbird Mail DE
  2. Forum
  3. Hilfe zu E-Mail und allgemeines Arbeiten
  4. Allgemeines Arbeiten / Konten einrichten / Installation & Update

"Dieser Ordner wird bearbeitet ....."

  • mperathoner
  • August 19, 2013 at 4:46 PM
  • Closed
  • Thread is Resolved
  • mperathoner
    Junior Member
    Posts
    2
    Member since
    19. Aug. 2013
    • August 19, 2013 at 4:46 PM
    • #1

    Thunderbird-Version: 17.0.8
    Betriebssystem + Version: Win 7 Ultimate
    Kontenart (POP / IMAP): beides
    Postfachanbieter (z.B. GMX): in diesem Falle Googlemail

    wie viele andere habe ich auch das Problem, daß seit einigen Tagen beim Abruf der Postfächer die Meldung kommt:
    "Dieser Ordner wird bearbeitet, bitte warten Sie, bis der Vorgang beendet ist"

    Wie ich festgestellt habe, tritt das beim Goolemail-Account auf.
    Die Fehlerkonsole ist voll mit Meldungen. Sie lauten immer so:

    Code
    >>
    Zeitstempel: 19.08.2013 14:19:18
    Fehler: [Exception... "'Component is not available' when calling method: [nsIActivityManager::removeActivity]"  nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)"  location: "JS frame :: resource:///modules/activity/pop3Download.js :: <TOP_LEVEL> :: line 124"  data: no]
    Quelldatei: resource:///modules/activity/pop3Download.js
    Zeile: 124 
    
    
    
    
    /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
    /* 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/. */
    
    
    
    
    const EXPORTED_SYMBOLS = ['pop3DownloadModule'];
    
    
    
    
    const Cc = Components.classes;
    const Ci = Components.interfaces;
    const Cr = Components.results;
    
    
    
    
    const nsActProcess = Components.Constructor("@mozilla.org/activity-process;1",
                                                "nsIActivityProcess", "init");
    const nsActEvent = Components.Constructor("@mozilla.org/activity-event;1",
                                              "nsIActivityEvent", "init");
    const nsActWarning = Components.Constructor("@mozilla.org/activity-warning;1",
                                                "nsIActivityWarning", "init");
    
    
    
    
    Components.utils.import("resource://gre/modules/Services.jsm");
    Components.utils.import("resource:///modules/mailServices.js");
    Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
    Components.utils.import("resource://gre/modules/PluralForm.jsm");
    Components.utils.import("resource:///modules/gloda/log4moz.js");
    
    
    
    
    // This module provides a link between the pop3 service code and the activity
    // manager.
    let pop3DownloadModule =
    {
      // hash table of most recent download items per folder
      _mostRecentActivityForFolder: {},
      // hash table of prev download items per folder, so we can
      // coalesce consecutive no new message events.
      _prevActivityForFolder: {},
    
    
    
    
      get log() {
        delete this.log;
        return this.log = Log4Moz.getConfiguredLogger("pop3DownloadsModule");
      },
    
    
    
    
      get activityMgr() {
        delete this.activityMgr;
        return this.activityMgr = Cc["@mozilla.org/activity-manager;1"]
                                    .getService(Ci.nsIActivityManager);
      },
    
    
    
    
      get bundle() {
        delete this.bundle;
        return this.bundle = Services.strings
          .createBundle("chrome://messenger/locale/activity.properties");
      },
    
    
    
    
      getString: function(stringName) {
        try {
          return this.bundle.GetStringFromName(stringName)
        } catch (e) {
          this.log.error("error trying to get a string called: " + stringName);
          throw(e);
        }
      },
    
    
    
    
      onDownloadStarted : function(aFolder) {
        this.log.info("in onDownloadStarted");
    
    
    
    
        let displayText = this.bundle
                              .formatStringFromName("pop3EventStartDisplayText",
                                                   [aFolder.prettiestName], 1);
        // remember the prev activity for this folder, if any.
        this._prevActivityForFolder[aFolder.URI] =
          this._mostRecentActivityForFolder[aFolder.URI];
        let statusText = aFolder.server.prettyName;
    
    
    
    
        // create an activity event
        let event = new nsActEvent(displayText,
                                   aFolder,
                                   statusText,
                                   Date.now(),  // start time
                                   Date.now()); // completion time
    
    
    
    
        event.iconClass = "syncMail";
    
    
    
    
        let downloadItem = {};
        downloadItem.eventID = this.activityMgr.addActivity(event);
        this._mostRecentActivityForFolder[aFolder.URI] = downloadItem;
      },
    
    
    
    
      onDownloadProgress : function(aFolder, aNumMsgsDownloaded, aTotalMsgs) {
        this.log.info("in onDownloadProgress");
      },
    
    
    
    
      onDownloadCompleted : function(aFolder, aNumMsgsDownloaded) {
        this.log.info("in onDownloadCompleted");
    
    
    
    
        this.activityMgr.removeActivity(this._mostRecentActivityForFolder[aFolder.URI].eventID);
    
    
    
    
        let displayText;
        if (aNumMsgsDownloaded > 0)
        {
          displayText = PluralForm.get(aNumMsgsDownloaded, this.getString("pop3EventStatusText"));
          displayText = displayText.replace("#1", aNumMsgsDownloaded);
        }
        else
          displayText = this.getString("pop3EventStatusTextNoMsgs");
    
    
    
    
        let statusText = aFolder.server.prettyName;
    
    
    
    
        // create an activity event
        let event = new nsActEvent(displayText,
                                   aFolder,
                                   statusText,
                                   Date.now(),  // start time
                                   Date.now()); // completion time
    
    
    
    
        event.iconClass = "syncMail";
    
    
    
    
        let downloadItem = {numMsgsDownloaded: aNumMsgsDownloaded};
        this._mostRecentActivityForFolder[aFolder.URI] = downloadItem;
        downloadItem.eventID = this.activityMgr.addActivity(event);
        if (!aNumMsgsDownloaded) {
          // if we didn't download any messages this time, and the prev event
          // for this folder also didn't download any messages, remove the
          // prev event from the activity manager.
          let prevItem = this._prevActivityForFolder[aFolder.URI];
          if (prevItem != undefined && !prevItem.numMsgsDownloaded)
            this.activityMgr.removeActivity(prevItem.eventID);
        }
      },
      init: function() {
        // XXX when do we need to remove ourselves?
        MailServices.pop3.addListener(this);
      }
    };
    Display More

    Weiß jemand Rat ??

    Edited once, last by graba: Code-Tags gesetzt (August 19, 2013 at 5:14 PM).

  • mperathoner
    Junior Member
    Posts
    2
    Member since
    19. Aug. 2013
    • August 21, 2013 at 2:20 PM
    • #2

    Selbstantwort: in meinem Fall lag die Ursache wohl nicht an TB. Aus nicht nachvollziehbaren Gründen wurden die Mails beim Server eines POP3-Kontos (netbeat) nicht gelöscht, es wurden immer mehr, und das hat vermutlich die Fehlermeldung verursacht. Nachdem ich über das Webmail-Portal alle Mails gelöscht habe, tritt die Meldung jetzt nicht mehr auf. Ich hoffe, das bleibt auch so !

  • Community-Bot September 3, 2024 at 8:10 PM

    Closed the thread.

Current app version

  • Thunderbird 153.0.2 veröffentlicht

    Thunder August 4, 2026 at 10:28 PM

Current 153 ESR version

  • Thunderbird 153.0.2 ESR veröffentlicht

    Thunder August 4, 2026 at 10:34 PM

Current 140 ESR version

  • Thunderbird 140.13.0 ESR veröffentlicht

    Thunder July 22, 2026 at 7:16 PM

No Advertisements

There are no advertisements here. Maybe you give the website owner (Alexander Ihrig - aka "Thunder") instead something to be able to finance these sites in the long run. Many Thanks!

Thank you for the support!

Coffee to be spent?

Donate now via Paypal*

*Forwarding to PayPal.Me

Thunderbird Mail DE
  1. Imprint & Contact
  2. Privacy Policy
    1. Cookie Policy
  3. Terms of Use
  4. Donation Call for Thunderbird
Help for this website
  • All website support articles
  • How to use website search
  • How to create a forums user account
  • How to create and edit a forums thread
  • How to reset your forums password
Copyright © 2003-2026 Thunderbird Mail DE

You are NOT on an official page of the Mozilla Foundation. Mozilla®, mozilla.org®, Firefox®, Thunderbird™, Bugzilla™, Sunbird®, Seamonkey®, XUL™ and the Thunderbird logo are (among others) registered trademarks of the Mozilla Foundation.

Powered by WoltLab Suite™