[Desktop-packages] [Bug 214366]

2014-02-20 Thread Irving
Comment on attachment 8377817
patch v5

Review of attachment 8377817:
-

(In reply to n...@parkwaycc.co.uk from comment #124)
 (In reply to aceman from comment #123)
  (In reply to comment #122)
   (From update of attachment 8374439)
  Is this issue really that important that we make tens of comments in such a
  long thread? It is not a perf critical path.
 
 I'm after readability here, not perf, in particular I don't like breaking at
 the end of a for loop, because it's easy to miss that this skips the
 increment.
 
   +  try {
   +root.copyFolderLocal(folderDeleted3, true, null, null);
   +do_throw(copyFolderLocal() should have failed here due to user 
   prompt!);
   I'm not sure why you're trying to throw from inside this try block, but I
   don't know enough about writing tests to know whether there's a better 
   way.
  I expect .copyFolderLocal to throw and be catched by my catch. But if it
  does not throw (wrong behaviour), the next throw is not catched and fails
  the test.
 Sure, but my question is is it safe to put do_throw in a try block?

You can call do_throw() inside a try; whether you catch it or not it
still registers as a test failure (see https://developer.mozilla.org/en-
US/docs/Mozilla/QA/Writing_xpcshell-
based_unit_tests#XPCShell_test_utility_functions)

 Sorry, I hadn't seen his wording. How about:
 A subfolder with the name '%$1S' already exists in the folder '%2$S'. Would
 you like to move this folder using the new name of '%3$S'?
 (I don't really want to use a / because that's an implementation detail.)

This is OK with me; whoever has ui-r? gets final say. r+ aside from that
wording change.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/214366

Title:
  Can't delete a folder if Trash already contains a folder of the same
  name

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: mozilla-thunderbird

  1. Create a new folder, eg. Temp
  2. Delete it, OK
  3. Create the same folder again
  4. Delete it, OK

  I expect it to be moved to my Trash folder, perhaps with a suffix
  appended (it being the second instance of that folder in the trash).

  Thunderbird popped up an error message. On an imap host:
 The current command did not succeed. The mail server responded: Mailbox 
already exists.
  In the local folders:
 A folder with that name already exists. Please enter a different name (!)

  Workarounds:
  1. Empty the trash
  2. Rename the folder before deletion
  3. Rename the folder already in the trash
  4. Delete (permanently) the folder that is already in the trash

  Ubuntu 7.10 Gutsy
  thunderbird 2.0.0.12+nobinonly-0ubuntu0.7.10.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/214366/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 214366]

2014-02-13 Thread Irving
Comment on attachment 8374439
WIP patch 4

Review of attachment 8374439:
-

::: mail/locales/en-US/chrome/messenger/messenger.properties
@@ +58,5 @@
  sendingUnsent=Sending Unsent Messages
  
  folderExists=A folder with that name already exists. Please enter a 
 different name.
 +# LOCALIZATION NOTE(confirmDuplicateFolderRename): %1$S is parent folder 
 name, %2$S is proposed child folder name
 +confirmDuplicateFolderRename=A folder with that name already exists under 
 folder '%1$S'. Would you like to copy the folder under a new name of '%2$S'?

Does this message come up with folder copies and moves, or only with
moves? If it's only move, I suggest changing the wording to:

A folder named %1%S already exists in %2$S. Do you wish to move the
folder to %2$S / %3$S?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/214366

Title:
  Can't delete a folder if Trash already contains a folder of the same
  name

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: mozilla-thunderbird

  1. Create a new folder, eg. Temp
  2. Delete it, OK
  3. Create the same folder again
  4. Delete it, OK

  I expect it to be moved to my Trash folder, perhaps with a suffix
  appended (it being the second instance of that folder in the trash).

  Thunderbird popped up an error message. On an imap host:
 The current command did not succeed. The mail server responded: Mailbox 
already exists.
  In the local folders:
 A folder with that name already exists. Please enter a different name (!)

  Workarounds:
  1. Empty the trash
  2. Rename the folder before deletion
  3. Rename the folder already in the trash
  4. Delete (permanently) the folder that is already in the trash

  Ubuntu 7.10 Gutsy
  thunderbird 2.0.0.12+nobinonly-0ubuntu0.7.10.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/214366/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 214366]

2014-02-11 Thread Irving
Comment on attachment 8371072
WIP patch 3

Review of attachment 8371072:
-

Nice test.

::: mailnews/local/src/nsLocalMailFolder.cpp
@@ +1723,5 @@
  return NS_MSG_ERROR_COPY_FOLDER_ABORTED;
  }
}
 +
 +  nsAutoString newFolderName(EmptyString());

Shouldn't need the EmptyString() initializer; the constructor makes an
empty string by default.

@@ +1726,5 @@
 +
 +  nsAutoString newFolderName(EmptyString());
 +  nsAutoString folderName;
 +  rv = srcFolder-GetName(folderName);
 +  NS_ENSURE_SUCCESS(rv, rv);

Mozilla core code is deprecating NS_ENSURE_SUCCESS, because the macro
hides control flow - see
https://groups.google.com/d/topic/mozilla.dev.platform/1clMLuuhtWQ/discussion
. Use

if (NS_WARN_IF(NS_FAILED(rv))) {
  return rv;
}

if the condition deserves a warning message (as this one does)

::: mailnews/local/test/unit/test_nsIMsgLocalMailFolder.js
@@ +50,5 @@
 +  do_check_eq(trash.numSubFolders, 3);
 +  // The folder should be automatically renamed as the same name already is 
 in Trash
 +  // but the subfolder should be untouched.
 +  let folderDeleted3 = trash.getChildNamed(folder(3));
 +  let subfolderDeleted = folderDeleted3.getChildNamed(subfolder);

do_check_true(trash.containsChildNamed(folder(3));
do_check_true(trash.getChildNamed(folder(3)).containsChildNamed(subfolder));

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/214366

Title:
  Can't delete a folder if Trash already contains a folder of the same
  name

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: mozilla-thunderbird

  1. Create a new folder, eg. Temp
  2. Delete it, OK
  3. Create the same folder again
  4. Delete it, OK

  I expect it to be moved to my Trash folder, perhaps with a suffix
  appended (it being the second instance of that folder in the trash).

  Thunderbird popped up an error message. On an imap host:
 The current command did not succeed. The mail server responded: Mailbox 
already exists.
  In the local folders:
 A folder with that name already exists. Please enter a different name (!)

  Workarounds:
  1. Empty the trash
  2. Rename the folder before deletion
  3. Rename the folder already in the trash
  4. Delete (permanently) the folder that is already in the trash

  Ubuntu 7.10 Gutsy
  thunderbird 2.0.0.12+nobinonly-0ubuntu0.7.10.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/214366/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 214366]

2014-02-06 Thread Irving
(In reply to :aceman from comment #89)

  We don't need to test all those combinations for every message store type,
  but we should at least test the copyFolder(...aNewName) parameter works once
  on each store type.
 Store type as in mbox and maildir? Do we actually have tests differentiating
 the stores?
 Can't bug 765926 cover maildir by itself?

As far as I know, maildir is mostly untested aside from what's discussed
in bug 765926. I don't know whether the long term plan is to run the
entire suite twice, once for mbox and once for maildir - if so then yes,
we'd be covered. That's a huge waste of testing run time, but might be
easier than refactoring our test suite into separate tests for the
higher level and the store.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/214366

Title:
  Can't delete a folder if Trash already contains a folder of the same
  name

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: mozilla-thunderbird

  1. Create a new folder, eg. Temp
  2. Delete it, OK
  3. Create the same folder again
  4. Delete it, OK

  I expect it to be moved to my Trash folder, perhaps with a suffix
  appended (it being the second instance of that folder in the trash).

  Thunderbird popped up an error message. On an imap host:
 The current command did not succeed. The mail server responded: Mailbox 
already exists.
  In the local folders:
 A folder with that name already exists. Please enter a different name (!)

  Workarounds:
  1. Empty the trash
  2. Rename the folder before deletion
  3. Rename the folder already in the trash
  4. Delete (permanently) the folder that is already in the trash

  Ubuntu 7.10 Gutsy
  thunderbird 2.0.0.12+nobinonly-0ubuntu0.7.10.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/214366/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 214366]

2014-02-06 Thread Irving
Comment on attachment 8370331
WIP patch 2

Review of attachment 8370331:
-

I'm OK with this approach. I'd like to see test cases for both a single
folder and a nested folder - for example:

make folder A
move A to trash
make new A
move A to trash
make new A
make new A/B
move A to trash
make sure trash has A and A-1 and A-2 and A-2/B

We don't need to test all those combinations for every message store
type, but we should at least test the copyFolder(...aNewName) parameter
works once on each store type.

::: mailnews/local/src/nsLocalMailFolder.cpp
@@ +1732,5 @@
 +  while (1) {
 +rv = CheckIfFolderExists(newFolderNameUnderTrash, this, NULL);
 +if (rv == NS_MSG_FOLDER_EXISTS) {
 +  newFolderNameUnderTrash.Assign(folderName);
 +  newFolderNameUnderTrash.AppendLiteral(-); // do we want this 
 localizable? folder-SeqNo

I don't think this needs to be localizable.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/214366

Title:
  Can't delete a folder if Trash already contains a folder of the same
  name

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: mozilla-thunderbird

  1. Create a new folder, eg. Temp
  2. Delete it, OK
  3. Create the same folder again
  4. Delete it, OK

  I expect it to be moved to my Trash folder, perhaps with a suffix
  appended (it being the second instance of that folder in the trash).

  Thunderbird popped up an error message. On an imap host:
 The current command did not succeed. The mail server responded: Mailbox 
already exists.
  In the local folders:
 A folder with that name already exists. Please enter a different name (!)

  Workarounds:
  1. Empty the trash
  2. Rename the folder before deletion
  3. Rename the folder already in the trash
  4. Delete (permanently) the folder that is already in the trash

  Ubuntu 7.10 Gutsy
  thunderbird 2.0.0.12+nobinonly-0ubuntu0.7.10.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/214366/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 261595]

2013-09-08 Thread Irving
This might be worth slipping in to the closed tree, to make sure it
shows up in the next successful nightly.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/261595

Title:
  Thunderbird corrupts Mailbox when hd is full

Status in Mozilla Thunderbird Mail and News:
  Confirmed
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: mozilla-thunderbird

  I fetched the POP3 EMails and the last Message got cut in the middle.
  Other than in Bug #23302 there was NO warning about little space. Then
  I got a warning after the error the little space and freed some space
  up.

  Now it fetched all allready fetched mails again and added some junk
  from another email into the unfinished email.

  In the end this is not so severe, but the check for little space
  should kick in before and it should not get to corruption of email
  data.

  Seen in ubuntu 8.04.1 with thunderbird 2.0.0.16.

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/261595/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 261595]

2013-08-08 Thread Irving
Comment on attachment 756486
Write updated popstate in tempfile first, then move over

Review of attachment 756486:
-

Thanks so much for the patch; sorry it took so long for me to review it.

I'm OK with either landing this patch as is, or expanding it to refactor
out the other places in mailnews where we create safe, buffered output
streams.

::: mailnews/base/util/nsMsgUtils.cpp
@@ +1438,4 @@
return rv;
  }
  
 +nsresult MsgNewSafeBufferedFileOutputStream(nsIOutputStream **aResult,

There are a couple of other places in mailnews where we're creating safe
output streams; it would be great to update those to use this helper
function instead of repeating the code, as part of this patch.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/261595

Title:
  Thunderbird corrupts Mailbox when hd is full

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: mozilla-thunderbird

  I fetched the POP3 EMails and the last Message got cut in the middle.
  Other than in Bug #23302 there was NO warning about little space. Then
  I got a warning after the error the little space and freed some space
  up.

  Now it fetched all allready fetched mails again and added some junk
  from another email into the unfinished email.

  In the end this is not so severe, but the check for little space
  should kick in before and it should not get to corruption of email
  data.

  Seen in ubuntu 8.04.1 with thunderbird 2.0.0.16.

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/261595/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 214366]

2013-04-02 Thread Irving
I agree with David's remark in comment 70, that we should not rename the
folder before copying - we should just copy it directly into the new
name. I don't think we need to do anything complicated to deal with
duplicate names; appending a number is probably enough.

I don't have any insight into where would be the best place to implement
this; if David doesn't know off the top of his head, somebody's going to
have to do the hard work of reverse engineering what's already there.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/214366

Title:
  Can't delete a folder if Trash already contains a folder of the same
  name

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: mozilla-thunderbird

  1. Create a new folder, eg. Temp
  2. Delete it, OK
  3. Create the same folder again
  4. Delete it, OK

  I expect it to be moved to my Trash folder, perhaps with a suffix
  appended (it being the second instance of that folder in the trash).

  Thunderbird popped up an error message. On an imap host:
 The current command did not succeed. The mail server responded: Mailbox 
already exists.
  In the local folders:
 A folder with that name already exists. Please enter a different name (!)

  Workarounds:
  1. Empty the trash
  2. Rename the folder before deletion
  3. Rename the folder already in the trash
  4. Delete (permanently) the folder that is already in the trash

  Ubuntu 7.10 Gutsy
  thunderbird 2.0.0.12+nobinonly-0ubuntu0.7.10.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/214366/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2013-03-12 Thread Irving
Yes, you can send it to me - is it OK if I also share it with Atul, if
he has more time to work on it? Just click on my name in the Bugzilla
comment and you'll get the right address.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  Fix Released
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-12-05 Thread Irving
*** Bug 805830 has been marked as a duplicate of this bug. ***

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  Fix Released
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-15 Thread Irving
It would also help us a lot if you could run from the command line with
IMAP and related logging turned on; set the environment variable

NSPR_LOG_MODULES=imap:5,ImapAutoSync:5,msgdb:5,timestamp,sync

before starting Thunderbird, and capture all the output to the console
(stdout/stderr for you Linux types). This will include headers and
contents of email messages, so if you don't want to publicly post it on
Bugzilla you can either send it directly to me or get in touch on
irc.mozilla.org #maildev and we'll work together to extract the relevant
info.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  Fix Released
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-15 Thread Irving
https://hg.mozilla.org/comm-central/rev/3ecc92fdbac2

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  Fix Released
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-15 Thread Irving
The fix is in the latest Nightly builds at
http://ftp.mozilla.org/pub/mozilla.org/thunderbird/nightly/latest-comm-
central/. If we can get some confirmation that this improves things for
people, and doesn't cause any other issues, we'll try to pull it into
the last TB 17 Beta build early next week.

Rob, we've been focused on the offline storage case because we had the
most problem reports about that, and were able to reproduce it in our
test environments; now that we have a candidate fix for offline, I'll
take a look at your issue.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  Fix Released
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-15 Thread Irving
(In reply to Florian Effenberger from comment #79)
 Do I assume right that the fix is not included in 17.0b3? Tried it, and
 still has that bug.

Have you repaired the folder? Right click on the folder, select
Properties..., in the General Information pane click Repair
Folder. Thunderbird should download the messages one more time and then
stop.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  Fix Released
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-15 Thread Irving
Aurora: https://hg.mozilla.org/releases/comm-aurora/rev/5a84996bc6cb
Beta: https://hg.mozilla.org/releases/comm-beta/rev/9e078e25d475

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  Fix Released
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-09 Thread Irving
Connor, are you testing against Zarafa or gmail (or both, or other)?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-09 Thread Irving
Paul, the closing output is normal from a debug build (it's turned off
in final builds). I suspect you're now hitting another open issue - can
you check the following bugs and see if you fit any of them?

Bug 891334, Bug 795590, bug 796989, bug 793792

If so, get in touch with me or comment on the bug, and it would be great
if you could try a run with the Thunderbird profiler to help us isolate
the problem.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-09 Thread Irving
Using Kent's glodaquilla extension and turning on the onDisk column is
very helpful to see whether messages are considered to be properly
downloaded for offline storage

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-08 Thread Irving
Created attachment 679311
Update message size in database on every full message download

This undoes a behaviour change introduced in bug 740453, where we
changed from updating the message database's size field (with a
sometimes incorrect value) on every offline message download, to only
updating when the server's RFC822 size didn't match the real message
size.

With this patch, we update the DB on every complete message download
(including messages not stored offline), with the exact message size as
downloaded.

If you would prefer the patch to more closely match the old
implementation (only updating the size for offline messages) the change
won't be too complex.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-08 Thread Irving
There are now debug try builds available with this patch at
http://ftp.mozilla.org/pub/mozilla.org/thunderbird/try-
builds/ir...@mozilla.com-fcd5c6c5168e/

If a few of you who have reported this issue could please download and
test these builds it would be a big help to us.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-03 Thread Irving
Disabling download of MIME parts on demand may work around this issue -
could some of you try setting the advanced preference

mail.imap.mime_parts_on_demand

to false, restart Thunderbird, and see if the problem goes away?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1074260]

2012-11-03 Thread Irving
Thanks for all your triage work, everybody. The information from
Glodaquilla is very helpful. I can reproduce this in my development
environment and I'm working on a fix; I'll reach out to you if I need
any additional information.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1074260

Title:
  Thunderbird heavy IMAP traffic downloading messages

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Thunderbird (as of version 16?) generates a lot of IMAP traffic,
  continually redownloading messages. One issue has been resolved (see
  https://bugzilla.mozilla.org/show_bug.cgi?id=803843 and
  https://launchpad.net/bugs/1068921 ) but this issue remains. It is
  open in bugzilla as
  https://bugzilla.mozilla.org/show_bug.cgi?id=806760

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1074260/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1068921]

2012-10-27 Thread Irving
Trunk: https://hg.mozilla.org/comm-central/rev/e41fcf967c2b
Aurora: https://hg.mozilla.org/releases/comm-aurora/rev/dec20675b05e
Beta: https://hg.mozilla.org/releases/comm-beta/rev/e89e3afc6144
Release: https://hg.mozilla.org/releases/comm-release/rev/cce1d52502cc

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1068921

Title:
  Mailbox grows endlessly, heavy traffic

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged
Status in “thunderbird” source package in Lucid:
  Triaged
Status in “thunderbird” source package in Natty:
  Triaged
Status in “thunderbird” source package in Oneiric:
  Triaged
Status in “thunderbird” source package in Precise:
  Triaged
Status in “thunderbird” source package in Quantal:
  Triaged

Bug description:
  Yesterday I noticed that my Internet connection keeps transferring a lot of 
data. After a while I checked with nethogs and discovered this was caused by 
Thunderbird.
  Today I got a warning that my HDD was near full.
  In this 2 days, the mailbox had grown to 20 GB, while in reality it should be 
around 1 GB (a fresh zipped backup has 600 MB).

  I removed the .thunderbird folder and configured my IMAP mailbox from 
scratch. The same happened again.
  I think this is not related to a somehow special configuration of my PC bcs 
my colleague discovered it's the same on his machine. Without checking, he 
wouldn't have noticed yet bcs of a much bigger HDD...

  We couldn't yet find out what exactly happens / which data is transferred 
again and again.
  I suspect it's related to the last thunderbird update.

  Ubuntu 12.04
  Tunderbird 16.0.1+build1-0ubuntu0.12.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1068921/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1068921]

2012-10-26 Thread Irving
Created attachment 675465
Test message with many inline images

When I set the checkbox for maximum message size to store offline, with
a limit of 50 kbytes, this message gets downloaded very inefficiently -
each image attachment is requested from gmail separately, but for each
inline image displayed we download the entire message (including
separate downloads of each inline part) - order n^2 on the number of
inline attachments.

Un-checking the limit on offline message store significantly reduces the
problem.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1068921

Title:
  Mailbox grows endlessly, heavy traffic

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged
Status in “thunderbird” source package in Lucid:
  Triaged
Status in “thunderbird” source package in Natty:
  Triaged
Status in “thunderbird” source package in Oneiric:
  Triaged
Status in “thunderbird” source package in Precise:
  Triaged
Status in “thunderbird” source package in Quantal:
  Triaged

Bug description:
  Yesterday I noticed that my Internet connection keeps transferring a lot of 
data. After a while I checked with nethogs and discovered this was caused by 
Thunderbird.
  Today I got a warning that my HDD was near full.
  In this 2 days, the mailbox had grown to 20 GB, while in reality it should be 
around 1 GB (a fresh zipped backup has 600 MB).

  I removed the .thunderbird folder and configured my IMAP mailbox from 
scratch. The same happened again.
  I think this is not related to a somehow special configuration of my PC bcs 
my colleague discovered it's the same on his machine. Without checking, he 
wouldn't have noticed yet bcs of a much bigger HDD...

  We couldn't yet find out what exactly happens / which data is transferred 
again and again.
  I suspect it's related to the last thunderbird update.

  Ubuntu 12.04
  Tunderbird 16.0.1+build1-0ubuntu0.12.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1068921/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1068921]

2012-10-26 Thread Irving
I'm not comfortable with this approach; the message size we get (which
is actually the size of one text part of the message, accidentally set
when downloading parts of a MIME multipart message separately) is not
guaranteed to be larger or smaller than the number of line breaks in the
entire message. It usually is, for very large messages, but this won't
be reliable.

I'm pretty close to having a clean way to not record the wrong size when
we're downloading a part. I'm not sure how it will work for users with
and existing wrong size in their message DB, they may need to manually
rebuild the folder.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1068921

Title:
  Mailbox grows endlessly, heavy traffic

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged
Status in “thunderbird” source package in Lucid:
  Triaged
Status in “thunderbird” source package in Natty:
  Triaged
Status in “thunderbird” source package in Oneiric:
  Triaged
Status in “thunderbird” source package in Precise:
  Triaged
Status in “thunderbird” source package in Quantal:
  Triaged

Bug description:
  Yesterday I noticed that my Internet connection keeps transferring a lot of 
data. After a while I checked with nethogs and discovered this was caused by 
Thunderbird.
  Today I got a warning that my HDD was near full.
  In this 2 days, the mailbox had grown to 20 GB, while in reality it should be 
around 1 GB (a fresh zipped backup has 600 MB).

  I removed the .thunderbird folder and configured my IMAP mailbox from 
scratch. The same happened again.
  I think this is not related to a somehow special configuration of my PC bcs 
my colleague discovered it's the same on his machine. Without checking, he 
wouldn't have noticed yet bcs of a much bigger HDD...

  We couldn't yet find out what exactly happens / which data is transferred 
again and again.
  I suspect it's related to the last thunderbird update.

  Ubuntu 12.04
  Tunderbird 16.0.1+build1-0ubuntu0.12.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1068921/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1068921]

2012-10-26 Thread Irving
Created attachment 675468
call DiscardNewMessage properly, only update size when downloading full message

This includes my previous patch and also keeps track of when we're
downloading an entire message, and only updates the message size in the
DB on entire message downloads. This patch seems to fix the example
message provided with the original report, after manually compacting or
repairing the folder.

While testing this I noticed that there is still a form of message that
behaves badly whether this patch is applied or not; I attached an
example of that message. I haven't debugged that issue yet.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1068921

Title:
  Mailbox grows endlessly, heavy traffic

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Triaged
Status in “thunderbird” source package in Lucid:
  Triaged
Status in “thunderbird” source package in Natty:
  Triaged
Status in “thunderbird” source package in Oneiric:
  Triaged
Status in “thunderbird” source package in Precise:
  Triaged
Status in “thunderbird” source package in Quantal:
  Triaged

Bug description:
  Yesterday I noticed that my Internet connection keeps transferring a lot of 
data. After a while I checked with nethogs and discovered this was caused by 
Thunderbird.
  Today I got a warning that my HDD was near full.
  In this 2 days, the mailbox had grown to 20 GB, while in reality it should be 
around 1 GB (a fresh zipped backup has 600 MB).

  I removed the .thunderbird folder and configured my IMAP mailbox from 
scratch. The same happened again.
  I think this is not related to a somehow special configuration of my PC bcs 
my colleague discovered it's the same on his machine. Without checking, he 
wouldn't have noticed yet bcs of a much bigger HDD...

  We couldn't yet find out what exactly happens / which data is transferred 
again and again.
  I suspect it's related to the last thunderbird update.

  Ubuntu 12.04
  Tunderbird 16.0.1+build1-0ubuntu0.12.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1068921/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1052306]

2012-10-26 Thread Irving
Comment on attachment 664374
possible fix

Review of attachment 664374:
-

Looks OK to me; there's a lot of code that changes behaviour if
m_imapMailFolderSink is null so we'll need to keep an eye on trunk in
case this moves the crash somewhere else.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1052306

Title:
  Thunderbird crashes upon displaying specific message

Status in Mozilla Thunderbird Mail and News:
  Confirmed
Status in “thunderbird” package in Ubuntu:
  New

Bug description:
  Everytime I try to open a specific email, thunderbird crashes.  See
  reported crash id for more details.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: thunderbird 15.0.1+build1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.5.0-14.19-generic 3.5.3
  Uname: Linux 3.5.0-14-generic x86_64
  AddonCompatCheckDisabled: False
  ApportVersion: 2.5.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  nbarcet2798 F pulseaudio
   /dev/snd/pcmC0D0p:   nbarcet2798 F...m pulseaudio
  BuildID: 20120911223312
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Channel: Unavailable
  Date: Tue Sep 18 06:11:32 2012
  EcryptfsInUse: Yes
  ForcedLayersAccel: False
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha amd64 
(20120201.2)
  MostRecentCrashID: bp-2db3eea4-c46d-4d64-8b6e-e47f92120918
  PrefSources:
   prefs.js
   
/usr/lib/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}/{847b3a00-7ab1-11d4-8f02-006008948af5}/defaults/preferences/enigmail.js
   
/usr/lib/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}/{847b3a00-7ab1-11d4-8f02-006008948af5}/defaults/preferences/000system.js
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  Profiles: Profile0 (Default) - LastVersion=15.0.1/20120911223312 (In use)
  RelatedPackageVersions:
   totem-mozilla 3.4.3-0ubuntu3
   djview-plugin 4.9-2ubuntu1
   rhythmbox-mozilla 2.97-1ubuntu4
   google-talkplugin 2.9.10.0-1
  RunningIncompatibleAddons: False
  SourcePackage: thunderbird
  UpgradeStatus: Upgraded to quantal on 2012-09-16 (1 days ago)
  dmi.bios.date: 02/01/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 6IET75WW (1.35 )
  dmi.board.name: 2516CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr6IET75WW(1.35):bd02/01/2011:svnLENOVO:pn2516CTO:pvrThinkPadT410:rvnLENOVO:rn2516CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 2516CTO
  dmi.product.version: ThinkPad T410
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1052306/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1068921]

2012-10-23 Thread Irving
Created attachment 674524
WIP: Call DiscardNewMessage() with non-null stream to avoid early exit

This is part 2 of the fix, when we detect a mismatch between the
expected size of a message and the actual size we try to take the
message back out of the local store. Because of some interactions with
parameter-validity checking, the downloaded message contents weren't
actually removed from the local mbox file. This would cause the file to
grow, but shrink back to proper size when the folder is compacted.

The immediate trigger for the problem is that we're getting a bogus size
for the message at http://mxr.mozilla.org/comm-
central/source/mailnews/base/util/nsMsgDBFolder.cpp#1707; I haven't
figured out why that's happening yet.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1068921

Title:
  Mailbox grows endlessly, heavy traffic

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Yesterday I noticed that my Internet connection keeps transferring a lot of 
data. After a while I checked with nethogs and discovered this was caused by 
Thunderbird.
  Today I got a warning that my HDD was near full.
  In this 2 days, the mailbox had grown to 20 GB, while in reality it should be 
around 1 GB (a fresh zipped backup has 600 MB).

  I removed the .thunderbird folder and configured my IMAP mailbox from 
scratch. The same happened again.
  I think this is not related to a somehow special configuration of my PC bcs 
my colleague discovered it's the same on his machine. Without checking, he 
wouldn't have noticed yet bcs of a much bigger HDD...

  We couldn't yet find out what exactly happens / which data is transferred 
again and again.
  I suspect it's related to the last thunderbird update.

  Ubuntu 12.04
  Tunderbird 16.0.1+build1-0ubuntu0.12.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1068921/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1068921]

2012-10-23 Thread Irving
Is somebody with the bug willing to test whether it's related to the
offline message size limit? Open the Mail Server properties for a folder
showing this problem (right click on the mail server, select
Settings..., select the Synchronization and Storage settings, and
check whether you have Don't download messages larger than x KB
checked.

If you do have it checked, try un-checking it and see if the problem
goes away - your client should download the large messages one more time
and then stop.


I've been looking at the log file on the Launchpad bug, and that log only shows 
us downloading each of the large messages once.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1068921

Title:
  Mailbox grows endlessly, heavy traffic

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Yesterday I noticed that my Internet connection keeps transferring a lot of 
data. After a while I checked with nethogs and discovered this was caused by 
Thunderbird.
  Today I got a warning that my HDD was near full.
  In this 2 days, the mailbox had grown to 20 GB, while in reality it should be 
around 1 GB (a fresh zipped backup has 600 MB).

  I removed the .thunderbird folder and configured my IMAP mailbox from 
scratch. The same happened again.
  I think this is not related to a somehow special configuration of my PC bcs 
my colleague discovered it's the same on his machine. Without checking, he 
wouldn't have noticed yet bcs of a much bigger HDD...

  We couldn't yet find out what exactly happens / which data is transferred 
again and again.
  I suspect it's related to the last thunderbird update.

  Ubuntu 12.04
  Tunderbird 16.0.1+build1-0ubuntu0.12.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1068921/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1068921]

2012-10-23 Thread Irving
I've reproduced what I think is this issue on OS X against gmail's IMAP
server. The problem comes in two parts, and so far I think I have a fix
for part 1. I'll put up a WIP patch.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1068921

Title:
  Mailbox grows endlessly, heavy traffic

Status in Mozilla Thunderbird Mail and News:
  In Progress
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Yesterday I noticed that my Internet connection keeps transferring a lot of 
data. After a while I checked with nethogs and discovered this was caused by 
Thunderbird.
  Today I got a warning that my HDD was near full.
  In this 2 days, the mailbox had grown to 20 GB, while in reality it should be 
around 1 GB (a fresh zipped backup has 600 MB).

  I removed the .thunderbird folder and configured my IMAP mailbox from 
scratch. The same happened again.
  I think this is not related to a somehow special configuration of my PC bcs 
my colleague discovered it's the same on his machine. Without checking, he 
wouldn't have noticed yet bcs of a much bigger HDD...

  We couldn't yet find out what exactly happens / which data is transferred 
again and again.
  I suspect it's related to the last thunderbird update.

  Ubuntu 12.04
  Tunderbird 16.0.1+build1-0ubuntu0.12.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/1068921/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 885525]

2012-10-04 Thread Irving
My preference for the options would be

1) Mark message as deleted
2) Move to the server's Trash folder
3) Move to this folder: select here
4) Remove immediately

... with the wording cleaned up by UI review

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/885525

Title:
  Deleting a Gmail Message Always Sends Item to [Gmail]/Trash

Status in Mozilla Thunderbird Mail and News:
  Confirmed
Status in “thunderbird” package in Ubuntu:
  New

Bug description:
  Thunderbird 7.0.1, Ubuntu 11.10

  Gmail accounts do not obey the setting in Account Settings --
  [Account] -- Server Settings -- When I delete a message

  I changed this to move the message to Gmail's All Mail folder,
  attempting to imitate the Gmail web interface's Archive option.
  However, regardless of setting, the item always moved to Trash. This
  persisted after restart of the client. The settings save, but have no
  effect.

  Caveat: This was tested on two Google Apps for Domains accounts,
  though I suspect this behavior will happen with gmail.com accounts as
  well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/885525/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 220991]

2012-07-05 Thread Irving
This was fixed by bug 92111; should we dupe this to that bug to close
it, or resolve this bug separately?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/220991

Title:
  Thunderbird corrupts attachments from IMAP exchange server

Status in Mozilla Thunderbird Mail and News:
  Invalid
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: thunderbird

  For the last two weeks, all the attachments I download from our
  exchange server via IMAP cannot be opened. After downloading or double
  clicking, PDFs and DOCs are reported broken, whereas before they
  opened correctly.

  I've been accessing my single Thunderbird profile on Ubuntu's EXT3
  file system both from Ubuntu and Windows XP for three months now. Both
  have the same problem. Roughly a month a go, some addresses of our
  exchange server changed, but I do not know if that was the only
  change. Downloading the attachments with Outlook via the Exchange
  Server connection or a IMAP connection still works.

  After downloading, the corrupt attachments are 20% smaller than the
  ones downloaded with Outlook.

  ProblemType: Bug
  Architecture: i386
  Date: Wed Apr 23 14:18:37 2008
  DistroRelease: Ubuntu 7.10
  NonfreeKernelModules: fglrx
  Package: mozilla-thunderbird 2.0.0.12+nobinonly-0ubuntu0.7.10.0
  PackageArchitecture: all
  SourcePackage: thunderbird
  Uname: Linux DS1 2.6.22-14-generic #1 SMP Tue Feb 12 07:42:25 UTC 2008 i686 
GNU/Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/220991/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 220991]

2012-07-05 Thread Irving
*** This bug has been marked as a duplicate of bug 92111 ***

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/220991

Title:
  Thunderbird corrupts attachments from IMAP exchange server

Status in Mozilla Thunderbird Mail and News:
  Invalid
Status in “thunderbird” package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: thunderbird

  For the last two weeks, all the attachments I download from our
  exchange server via IMAP cannot be opened. After downloading or double
  clicking, PDFs and DOCs are reported broken, whereas before they
  opened correctly.

  I've been accessing my single Thunderbird profile on Ubuntu's EXT3
  file system both from Ubuntu and Windows XP for three months now. Both
  have the same problem. Roughly a month a go, some addresses of our
  exchange server changed, but I do not know if that was the only
  change. Downloading the attachments with Outlook via the Exchange
  Server connection or a IMAP connection still works.

  After downloading, the corrupt attachments are 20% smaller than the
  ones downloaded with Outlook.

  ProblemType: Bug
  Architecture: i386
  Date: Wed Apr 23 14:18:37 2008
  DistroRelease: Ubuntu 7.10
  NonfreeKernelModules: fglrx
  Package: mozilla-thunderbird 2.0.0.12+nobinonly-0ubuntu0.7.10.0
  PackageArchitecture: all
  SourcePackage: thunderbird
  Uname: Linux DS1 2.6.22-14-generic #1 SMP Tue Feb 12 07:42:25 UTC 2008 i686 
GNU/Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/220991/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 830049] Re: gnome-language-selector crashed with SystemError in required_download(): E:I wasn't able to locate a file for the openoffice.org-common package.

2011-08-22 Thread Irving Duran
** Visibility changed to: Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
https://bugs.launchpad.net/bugs/830049

Title:
  gnome-language-selector crashed with SystemError in
  required_download(): E:I wasn't able to locate a file for the
  openoffice.org-common package.

Status in “language-selector” package in Ubuntu:
  New

Bug description:
  Every time I try to perform a search on my deskbar it crashes since I
  am having issues installing the local settings.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: language-selector-gnome 0.47
  ProcVersionSignature: Ubuntu 3.0.0-8.11-generic 3.0.1
  Uname: Linux 3.0.0-8-generic i686
  Architecture: i386
  Date: Sat Aug 20 07:52:59 2011
  ExecutablePath: /usr/bin/gnome-language-selector
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/gnome-language-selector
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/gnome-language-selector']
  SourcePackage: language-selector
  Title: gnome-language-selector crashed with SystemError in 
required_download(): E:I wasn't able to locate a file for the 
openoffice.org-common package. This might mean you need to manually fix this 
package.
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/language-selector/+bug/830049/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp