Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Rename IMAP folder bug

  • 2 답장
  • 1 이 문제를 만남
  • 101 보기
  • 최종 답변자: drafrin

more options

I'm using Thunderbird 78.14.0 (32-bit) on a Lenovo ThinkPad laptop with Win10. I successfully renamed one of my IMAP folders, but when I then immediately attempted to move a message from my Inbox to the renamed folder, an error message popped up saying the operation failed because the folder doesn't exist -- even though the folder obviously does exist and still contains all the messages it had before I renamed it. I suspected this error occurred because the part of Thunderbird which handles message-move operations is not being properly informed of folder renaming operations, and therefore I suspected I could work around the problem by exiting and restarting Thunderbird so that the message-move routine in Thunderbird would then have an updated list of folder names -- and indeed that worked fine. Anyway, I just wanted to let the developers know about the bug.

-- Larry Afrin

I'm using Thunderbird 78.14.0 (32-bit) on a Lenovo ThinkPad laptop with Win10. I successfully renamed one of my IMAP folders, but when I then immediately attempted to move a message from my Inbox to the renamed folder, an error message popped up saying the operation failed because the folder doesn't exist -- even though the folder obviously does exist and still contains all the messages it had before I renamed it. I suspected this error occurred because the part of Thunderbird which handles message-move operations is not being properly informed of folder renaming operations, and therefore I suspected I could work around the problem by exiting and restarting Thunderbird so that the message-move routine in Thunderbird would then have an updated list of folder names -- and indeed that worked fine. Anyway, I just wanted to let the developers know about the bug. -- Larry Afrin

선택된 해결법

As you are using IMAP, Your rename command must be sent to the folder and a result has to be obtained by Thunderbird.

It is a text based conversation and looks like this;

An example from RFC 3501:

A682 LIST "" *

  • LIST () "/" blurdybloop
  • LIST (\Noselect) "/" foo
  • LIST () "/" foo/bar

A682 OK LIST completed A683 RENAME blurdybloop sarasoop A683 OK RENAME completed A684 RENAME foo zowie A684 OK RENAME Completed A685 LIST "" *

  • LIST () "/" sarasoop
  • LIST (\Noselect) "/" zowie
  • LIST () "/" zowie/bar

A685 OK LIST completed a folder in Thunderbird. That sets up a request to the server to change the folder name.

So while this 12 or 14 step conversation is going on in the background (after the authentication cycle to get you authorized) you are trying to move a mail to a folder that has not been renamed on the server so you get told it does not exist. Nothing with server synchronization is instant and often it is downright slow. Especially if you have an anti virus scanning and increasing the time taken often by a factor of 2 or 3.

Basically don't expect results immediately.

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (2)

more options

선택된 해결법

As you are using IMAP, Your rename command must be sent to the folder and a result has to be obtained by Thunderbird.

It is a text based conversation and looks like this;

An example from RFC 3501:

A682 LIST "" *

  • LIST () "/" blurdybloop
  • LIST (\Noselect) "/" foo
  • LIST () "/" foo/bar

A682 OK LIST completed A683 RENAME blurdybloop sarasoop A683 OK RENAME completed A684 RENAME foo zowie A684 OK RENAME Completed A685 LIST "" *

  • LIST () "/" sarasoop
  • LIST (\Noselect) "/" zowie
  • LIST () "/" zowie/bar

A685 OK LIST completed a folder in Thunderbird. That sets up a request to the server to change the folder name.

So while this 12 or 14 step conversation is going on in the background (after the authentication cycle to get you authorized) you are trying to move a mail to a folder that has not been renamed on the server so you get told it does not exist. Nothing with server synchronization is instant and often it is downright slow. Especially if you have an anti virus scanning and increasing the time taken often by a factor of 2 or 3.

Basically don't expect results immediately.

more options

Thanks, Matt!

-- LBA