Certain mailboxes freeze Mail

One of the mailboxes is locking up Mail when I select it. I get the first 10 emails listed then nothing and the program freezes. Strangely, I can right click on items but I can't choose another mailbox or perform any other functions.
I had this problem before and deleting plist or rebuilding didn't fix it. I had to use a back up which did work.
In this instance I don't have a backup as it's on another system.
Are other people getting lock-ups in Apple Mail with certain mailboxes?

Use the Finder to open Home/Library/Mail, and if these are On My Mac mailboxes, then further open the Mailboxes folder. If the mailbox that will freeze is the Inbox of the account (which I have not understood it to be) then in the Mail folder, open the POP account folder, and then the INBOX.mbox folder and tell me if there is anything in the INBOX.mbox except one Info.plist file and one Messages folder?
If in an On My Mac mailbox, then after opening the Mailboxes folder find this particular xxxx.mbox folder, open it, and observe the file and folder contained within.
If only one Info.plist file an one Messages folder are found, then do the following:
See the following support article for forcing a reindexing of all mailboxes:
http://docs.info.apple.com/article.html?path=Mail/3.0/en/14019.html
Be sure to Quit Mail before doing this.
If other files and folders were found within any observed xxxx.mbox folder, post back before doing this.
Ernie

Similar Messages

  • Can't delete certain emails from Mail.  Instead, I get the message "An error occurred while moving messages to the mailbox, etc."

    Can't delete certain emails from Mail.  Instead, I get the message "An error occurred while moving messages to the mailbox, etc."  The problem appears randomly.

    I had the same problem, and it was solved by going to the Mailbox menu and selecting "rebuild."

  • Why have I got duplicate mailboxes in Mail (Mac OS X 10.7.2)? Why can't I delete them?

    Ever since installing Mac OS X 10.7 I have been plagued by duplicate mailboxes in Mail.app. Does anyone know why this could be? I also cannot delete them — Mail just freezes and I have to Quit and relaunch. Any help gratefully received. TIA.

    Same problem - Mail at some point decided to create, like, Inbox and Inbox-2, in various accounts. Same with Sent Mail and other maiboxes within a given account (I have four--and they worked just fine in Snow Leopard.)
    Of course, I am also using POP mail--but that can't be the problem, POP configures just fine and there's no problem with Send or Receive.
    Just .. why the duplicate Inbox, for example. I tried importing them and sorting into just plain Inbox for the account--but no. Mail instantly re-creates the dupe folder.
    Which makes some mail not show up, of course, in the Mail window--it's in a different mailbox!
    Will name firstborn after person with solution/fix.

  • Is it possible to import mailboxes from mail on my mac, to my iphone mail?

    I have many messages from years gone by on my mac in mail. It would be useful to be able to refer to them on my iphone while on the move. I am gettign all my new messages from my pop server, but I would like to import certain mailboxes of old messages. Is that possible?

    Yes you can. How to: Right click on that song, click on get info, click on Artwork. From there, you can upload any album artwork. Its all up to you.

  • How to use rules to delete old messages from a certain mailbox?

    This has bugged me for years. I keep waiting for it to be fixed in the next update of Apple Mail, but it never is!
    Is there a way to apply a rule to a certain mailbox? For instance, I have a mailbox (folder) that all of my newsletters get automatically thrown into, and I'd like the older ones to be deleted as the new ones come in. The problem is, there is no way (that I know of) that allows me to apply a rule to this mailbox.
    Years ago I had no trouble achieving this function with OutlookExpress. IF MESSAGE IN MAILBOX XXX IS OLDER THAN XXX THEN DELETE. Why is Apple Mail missing this feature? Frustrating. Possibly this has been fixed in Leopard/Mail but I wouldn't know, I'm stuck with Tiger for a while because my g4 won't play nice with Leopard... I'm using Mail 2.1.3

    Mail's rules only apply to incoming messages. You can create such a rule but it will not run automatically. You would need to select the all the messages in that mailbox then select Apply Rules from the Messages menu. Alternatively you can create a Smart Mailbox that's configured to contain messages older than a set criterion. Periodically delete the contents of the Smart Mailbox.
    You could purchase Microsoft Office in order to use Entourage instead of Mail, Address Book, and iCal. Entourage has additional rules programming.
    "Why is Mail missing this feature?" Perhaps because it isn't very much needed. Perhaps to give you a reason to ask the question. Or maybe just to aggravate those who feel they cannot live without it. Best you email Steve Jobs for an answer. It has not changed in Leopard.
    You can always submit a feature request at Feedback.
    Or, you can return to OS 9 or Windows where you can use Outlook Express.

  • Right way to refer to a sub-mailbox in Mail from AppleScript

    Working through an AppleScript to scan MailBoxes in Mail.
    The mailboxes are organized as subfolder
    Customers
    .....CustomerA
    .....CustomerB
    repeat with theMailbox in every mailbox
    set currentMailbox to theMailbox
    set mailboxName to the name of currentMailbox
    try
    set messages_list to every message of mailbox mailboxName
    results in
    "--> error number -1728 from mailbox "CustomerA"
    It works for mailboxes that are not subfolders.
    Message was edited by: Kevin Cossaboon

    just get rid of the name line. it's quite redundant and messes things up as it chops of the name of the ambient mailbox..
    set messages_list to every message of theMailbox
    and the full script should be
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 335px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    set ExcludeList to {"Keep", "Trash", "Sent Messages", "Drafts", "Deleted Messages", "Archive"} -- mailboxes you don't want to search
    set DestinFolderName to "Archive" -- mailbox to move messages to. If you want to just delete them, leave it blank.
    set StaleTime to 160 -- days old the message must be before moved or deleted
    set ShowMailboxesProgress to true -- determines if you want the "Processing" box displayed for each mailbox
    tell application "Mail"
    set everyAccount to every account
    -- Get acount-specific mailboxes
    repeat with eachAccount in everyAccount
    set everyMailbox to every mailbox of eachAccount
    set accountName to the name of eachAccount
    repeat with theMailbox in everyMailbox
    set currentMailbox to theMailbox
    set mailboxName to the name of currentMailbox
    if mailboxName is not in ExcludeList then
    if ShowMailboxesProgress then
    display dialog "Processing folder " & mailboxName & " in account " & accountName
    end if
    try
    set messages_list to every message of mailbox mailboxName
    repeat with i from 1 to number of items in messages_list
    set theMessage to item i of messages_list
    set difference to ((current date) - (date sent of theMessage)) div days
    if difference is greater than StaleTime then
    if DestinFolderName is not equal to "" then
    move theMessage to mailbox DestinFolderName
    else
    delete theMessage
    end if
    end if
    end repeat
    end try
    end if
    end repeat
    end repeat
    -- Get global mailboxes
    repeat with theMailbox in every mailbox
    set currentMailbox to theMailbox
    set mailboxName to the name of currentMailbox
    if mailboxName is not in ExcludeList then
    if ShowMailboxesProgress then
    display dialog "Processing folder " & mailboxName
    end if
    try
    set messages_list to every message of theMailbox
    repeat with i from 1 to number of items in messages_list
    set theMessage to item i of messages_list
    set s to the subject of theMessage
    set difference to ((current date) - (date sent of theMessage)) div days
    if difference is greater than StaleTime then
    if DestinFolderName is not equal to "" then
    move theMessage to mailbox DestinFolderName
    else
    delete theMessage
    end if
    end if
    end repeat
    end try
    end if
    end repeat
    display dialog "Finished!"
    end tell</pre>
    Message was edited by: V.K.

  • TS3276 I created a new mailbox in mail, but it does not show up in my list

    I created a new mailbox in mail, but it does not show up in my list of mailboxes. Now I cannot change it or delete it. I keep getting an error message that I must resolve conflicts, but it won't let me change anything.  Can you help me fix this?

    Found it, thanks to the answer Vixen-of-Venus gave - thanks.

  • How can I set up various mailboxes in Mail on my iPad.

    How can I set up various mailboxes in Mail on my iPad.
    I am using a Pop account and don't want to change this setup.
    I use two devices to access the same email account but I am not experiencing any lockout issues.
    Mail is simply not giving me any options to create mailboxes and there must be a way of doing this.  If I can do it in my iMac, surely I can do the same thing on my iPad.

    -Tap "Settings" app,
    -Select "Mail, Contacts, Calendars" option on the left hand side,
    -On the right, under "Accounts" on top, tap "Add Account...",
    -Select one of the email service providers or "Other",
    -Under "Mail", tap "Add Mail Account",
    -A window pops up and enter your new email account details.
    -Repeat for new email accounts.

  • How do I merge multiple Mailbox e-mails from different Macs in my house?

    The iSync does not quite fix what I'm seeking...a way to merge, not replace, all of my various e-mails that I send on different macs in my home. So, for instance, if I send an e-mail on one of them, I'd like to find that e-mail on my other two.
    Anybody help me on this? Thanks!
    Kevin Krug
    Mac G5, Mac G4, laptop G4   Mac OS X (10.4.6)  

    If you adopt the IMAP account approach first - as long as the IMAP account does not have the same user name and incoming mail server as the POP type account which will allow for creating the IMAP account with the POP account, you can transfer messages from the POP account's Inbox and Sent mailbox to the IMAP account's Inbox and Sent mailbox on each Mac.
    There is no way to merge mailboxes. You can use the Import Mailboxes feature to import the account's Inbox and Sent mailbox from one Mac to another and then transfer messages from the imported mailboxes to the account's Inbox and Sent mailbox in Mail on each Mac.

  • When I create a new mailbox in mail.app, the mailbox does not appear in the list of mailboxes

    I am trying to create a new mailbox in mail.app, but it never appears in the list of mailboxes. This USED TO WORK.

    Without seeing anything of what you did there is not much to go on except to say that when you create a classic tween you use a library-based object and it has to exist at both ends of the tween.  When motion guides come into play you usually have to fiddle around when making the link between the object and the motion guide to get the object to lock to it.

  • Attachments Freeze Mail Application in Mavericks

    Upgraded to OS Mavericks last week and am just running into this problem. MaiI wasn't connecting at first so I deleted and re-installed my mail account. Now everything seems to be working, except when I compose a message and try to add an attachment, the application freezes and has to be force quit. The attachment is only around 800KB - before upgrade I would routinely attach files 10 times larger than this without any issues. I let the rainbow wheel spin for at least 20 minutes at one point to see if the problem would work itself out but no dice. Any solutions?

    I just experienced the same issue...
    Although, it chaged a bit: sometimes hitting the "Attach file" Button would freeze mail, sometimes not. But adding an Image by drag'n'drop freezes the app everytime here.
    Even replying to an email containing attachments (like images) would result in Mail.app freezing, as the attachment would be copied to the new email...
    And it seems it's not related to the Upgrade to Mavericks, it worked like charm the last couple of months, now its happening....
    I tried re-creating the Mail Account, removed the mail.plist, removed all emails on disk, had it downloaded new... I don't know what to do next...
    Does anybody have any idea how to fix it?

  • The Imap command UID copy (to deleted messages) failed for the mailbox "bulk mail" with server error UID copy mailbox in use.  PLease try again later

    The Imap command UID copy (to deleted messages) failed for the mailbox "bulk mail" with server error UID copy mailbox in use.  PLease try again later

    What program are you using?  And what version?

  • I inadvertently removed the junk mailbox from Mail.app in SL, how can I recreate / restore it ?

    Hi,
    Well, the title says it all : I inadvertently removed the junk mailbox from Mail.app in SL,
    it still is spresent in my ~/library/mail folder, how can I recreate / restore it in mail.app ?
    Since I have a fair number of email accounts, intelligent mailboxes, rules and archive folder, I really don't want to rebuild everything. And, no, I can't use time machine to restore it.
    All help will be greatly appreciated.

    Hi AdamKB, sorry for late follow-up.
    What I lost is the "container" that groups all junk mailboxes in one place in Mail, like is done for all the inboxes.
    The problem is that I lost visibility on all junk mailboxes. It is only a visibility problem because the junk mailboxes are still present locally for my POP accounts and remotely for may IMAP accounts, I justdon't see them anymore in Mail's interface.

  • Error opening or saving certain attachements in Mail.app

    I have encountered a problem with certain attachments in Mail.app. I couldn't find any solution on the Internets, but I eventually figured it out and thought I should post it here.
    This has been a rare issue (only happened twice so far) and may be related to OmniGraffle files.
    The problem: When clicking to open the attachment or trying to save the attachment, I got the error: Mail was unable to save the attachment “file.name” to disk. Please verify your downloads folder exists and is writable.
    The solution:
    1. I found the message in the mail folder.
    2. I made a copy of it (just to be safe) and opened the copy in TextEdit.
    3. Within that message, I found the following header marking the start of the offending file:
    --Apple-Mail-4-912721465
    Content-Disposition: attachment;
    filename=file.extension.zip
    Content-Type: application/zip;
    x-mac-auto-archive=yes;
    name="file.extension.zip"
    Content-Transfer-Encoding: base64
    4. I changed both references to "file.extension.zip" to just "file.zip"
    5. Save and double-click on the file to open it in Mail.app
    6. Now the offending file should appear as a folder and you can open and save it. The file you really want access to is within this folder.
    Notes: Both times my problem was with an OmniGraffle file. Maybe this is a clue, or maybe not. Also, I believe the problem has something to do with the file being zipped (or the way Mail.app handles .zip files), but have no proof!
    I have no idea why this problem is occurring, but if anyone has anything to add, please do-- I'm posting here mainly to share a strange solution to a strange problem. The more info the better.

    These permissions bugs in Lion are pretty prevalent and I've had to reset a lot of application defaults since migrating between machines. Do the following and let me know if it works:
    Copy your Mail and Mail Downloads folders in ~/Library/ ( where "~" is referring to your User). Paste these folders your copied into something on your desktop as a back up.
    Then navigate to ~/Library/Preferences and find the two .plist files named, "com.apple.mail.plist" and "com.apple.mail.plist.lockedfile" and delete them.
    Relaunch Mail.
    Relaunching should cause a new .plist file to generate that reads as defualt and using the contents of your ~/Library/Mail folder your OS X Mail shoudl look like it did.
    I have issues changing prefs in mail and seem to have a bigger bug at work since I continually have to trash my mail.plist once a week or else I can't connect to my SMTP server. But this always works and I get rid of the, "...writing preferences to your disk has failed..." message.

  • I inadvertently deleted the 'trash' mailbox from Mail v3.6.  How do get it back?

    I inadvertently deleted the 'trash' mailbox from Mail v3.6.  How do I get it back?

    Hi,
    https://discussions.apple.com/thread/2308671?start=0&tstart=0

Maybe you are looking for

  • Issue with magsafe/charging (blinks green, amber, off)

    Having a quirky issue with my mid-2009 Macbook Pro. A month or so ago, I began having an issue with my macbook charging. When the computer is up and running and I plug in the magsafe it will say "Calculating..." and then say "Not Charging" and then s

  • IPhone can not be synced. The required file can not be found

    I got the message that "iPhone can not be synced. The required file could not be found." I suspected it had to do with photos because it was always in the middle of that when the error message came up. Re started everything. Unchecked photo sync and

  • How to print avery address labels 5160

    Sorry but I am not finding the right steps after reading several pieces of advice on this, and am wondering if this is all different after upgrading to Lion.  I know I simply printed labels at the holidays, but the types of Avery templates no longer

  • User audit trail in a SOA scenario

    Hi All, In a SOA scenario when using a composite application calling many webservices who on their turn call asynchronous jms calls to backend applications. How can you audit the user trail? So can you tell of all the backend transactions touched by

  • How to enable GUI in a non global zone in solaris11?

    How to enable graphical logon in a non global zone in solaris11, so the zone can be login by Xmanager? Thanks!