Moving messages from a Smart Mailbox into an On My Mac folder for archiving

I'm trying to find a way to (as automatically as possible) archive emails. I'm using IMAP and I want to try to get the messages off the server and onto my laptop because it takes too much time and CPU cycles for Mail to tell the IMAP server to do all the grunt work, especially when I have upwards of 100,000 emails on the IMAP server. I've considered switching to POP3, but I've decided that IMAP is still the best solution, taking other issues into consideration as well.
I've looked at Mail Scripts, but it doesn't have the functionalty I want (namely it doesn't work with Smart Mailboxes, nor can do you have the same level flexibility of specifying dates and such as a Smart Mailbox does.
What I've come up with is I've created a Smart Mailbox which lists all messages older than 3 months (these are the messages I want to archive). I've also created an On My Mac folder where I would like to store all the archived email. My problems are:
1) How can I move the emails from the Smart Mailbox into the On My Mac folder?
2) The move of the messages should be done by Mail itself, otherwise, unless there is a way to automate the process, I will have to tell Mail to manually rebuild the On My Mac folder or else the messages that have been copied to the On My Mac folder will not be viewable in Mail, nor with they be caught by other Smart Mailboxes.
Anyone have any brilliant suggestions, or perhaps another way to do this all together?
Thanks in advance...

Why do I need to post a comment or a follow-up before I can mark a question as answered? That's silly.

Similar Messages

  • Exchange - Moving messages from server inbox to inbox on my Mac

    I am trying to use Mail with my exchange account and it has been tricky. I have found a workaround for a couple of my issues but still have a big one. I try to drag older messages from the server inbox to the "on my mac" inbox so that I can delete them from the server. When I do that I just get this error message: An error occurred while moving messages to mailbox “Inbox — On My Mac”. This happens when I drag the files straight from folder to folder. I also tried right clicking and selecting "Move to" and right clicking and selecting "copy to" but no matter what I try I get the error message and the messages reappear again. The weird thing is sometimes I will move the messages, then it thinks a while, then it gives me the error message, but then when I look in my inbox on my mac a few of the messages did get copied, just not all of them. Other times when I try it nothing copies. I have no idea what the problem is.
    I don't know if this helps but I had a similar problem moving items to the trash, sometimes it worked and sometimes it gave me an error and wouldn't move the messages. Mac support was able to figure out that if I happen to try to delete items while it is syncing then I will get an error. Now when I want to delete a big chunk of emails I take the account offline, drag them to the trash and then go back online and that works like a charm. I tried the same with dragging from inbox to inbox with no such luck.
    I would appreciate any insight or tricks for this!

    In general, the answer is "yes", messages would be removed from the IMAP server if you store them, locally, on your Mac.  However, it may also depend on how your particular email account works.  I use gmail.  When I clean up my inbox, I, regularly, drag emails I wish to keep to archive folders on my mac.  While it removes the message from my inbox, it still exists in Google's "All Mail" folder.  After I archive, I go into the "All Mail" folder and, then, delete the items in order to ensure permanent removal.

  • I don't want my messages from iPhone or iPad to show on my mac

    I don't want my messages from iphone or ipad to show on my mac.

    Go to Messages>Preferences>Accounts and uncheck/delete the email address and/or phone number that are also specifed on the phone is Settings>Messages>Send and Receive

  • Moved message from trash to inbox, but it does not appear in box ?

    Hello,
    I use gmail account as my default mail account. Accidently, I deleted one my message. To retrieve it, I clicked and open the message in the trash box.Tthere is a "folder" icon on the bottom at second order, I clicked it and I choose inbox folder it seemed as moving inbox but that message does not appear there.

    Hey Moonchild,
    I've just had the exact same problem today.  Lost two emails because of it.  Can't find them on my phone or on Gmail from my laptop.  I accidently moved them to the bin..  Don't even know how I done it!
    But I went into the Bin folder, opened the email, went to the folder icon at the bottom of my iPhone 4S, which says "Move this message to a new mailbox", selected Inbox, it looked like it moved.  When I went to the Inbox, it wasn't there.  I searched for it and its gone.  I tried another and it done the the exact same thing.
    I tried this from Gmail on my laptop and it works fine, you can move them from the bin back to the Inbox without any problem.

  • 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.

  • Moving messages from one folder to another.

    hi there,
    I am trying to move messages from one folder to another. It works perfectly when i try to move one message at a time. However when i try to move more than 1 message(for e.g 2 messages) only the first message is being move to the destinated folder and while attempting to move the 2nd message it is throwing IndexOutOfBounds exception.
    This is how i am attempting to move the message.
    String destFolder = request.getParameter("fold");
    String srcFolder = request.getParameter("originalFolder");
    Store store = (Store)session.getAttribute("store");
    Folder sourceF = store.getFolder(srcFolder);
    sourceF.open(Folder.READ_WRITE);
    if(!(destFolder.equals("null")))
    String[] msgs = request.getParameterValues("list");
    System.out.println(msgs.length);
    Folder destinationF = store.getFolder(destFolder);
    destinationF.open(Folder.READ_WRITE);
    if(msgs != null)
    for(int i=0; i<msgs.length; i++)
         int msgNbr = Integer.parseInt((String)msgs);
         int[] msg_id = {msgNbr+1};
         Message[] msg = sourceF.getMessages(msg_id);
         sourceF.copyMessages(msg,destinationF);
         sourceF.setFlags(msg, new Flags(Flags.Flag.DELETED), true);
         sourceF.expunge();
         destinationF.expunge();
    session.setAttribute("mails", sourceF);
    try
    response.sendRedirect("../Inbox.jsp");
    catch(IOException ex)
    ex.printStackTrace();
    This is how i am trying to do it... Please help me i really need this urgently. Kindly help me ASAP.
    Help is very much appreciated.
    Thank you.
    Renuka.

    Well your code is unreadable because you didn't post it properly, but I'd guess you've fallen into the old multiple-delete trap in a new way. It's like this:
    To start with you have messages numbered 0, 1, and 2, let's say. So you write a loop that lets i run from 0 to 2 and delete message number i in the loop. What really happens? The first time through the loop you delete message number 0, after which you are left with messages numbered 0 and 1. The second time through the loop you delete message number 1, after which you are left with message 0 only. The third time through the loop you delete message 2, which isn't there and you get that message.
    That's just a guess, I didn't have the patience to read that ugly unformatted code. There are two ways to do the multiple delete properly, if that's actually your problem: (1) run the loop upwards from 0 and always delete message 0; (2) run the loop downwards from N-1 to 0 and delete message i.

  • How can I delete a large number of messages from my iCloud mailbox in bulk mode?

    I decided that I have a large number of e-mail messages in my iCloud mailbox that I do not need anymore and I would like to delete these messages in a single - simple move. How can I do it (Gmail offers a nice way to do this but I cannot find anything similar in iCloud...)?

    Archive the contacts you have in Address book, then delete them, they will be removed from iCloud as well. Restore the archive

  • Moving files from Applications turns them into aliases

    Hello,
    I am running OS X 10.7.4
    I'm having an issue where if I try to move any files out of my applications folders they do not truly remove from the application folder and just show up as an alias.
    I'm going through a game patch load right now and some of the instructions for this patch tell me to remove a couple of folders from the game's application folder for the patch to work correctly. I try to just move the folders to my desktop for temporary keeping and they just turn into an alias, leaving the original folder in it's application folder.
    I can confirm this happens with anything inside of my applications folder, so it's not locked to just one particular application. Is this some kind of a permissions issue? How do I disable this?
    Your knowledge is appreciated.

    It's because you are not the "owner" of the Applications folder nor its content. That is owned by the "system" and requires special permission to change. The result is that when you try to drag an application out of the Applications folder it instead turns into an alias. This is different behavior from Snow Leopard and earlier versions of OS X. It is related partly to security concerns and partly to other changes in the OS witht he release of Lion and Mountain Lion. I don't know specifically why this change nor why in Mountain Lion the behavior is somewhat different - the file is duplicated rather than moved.
    You cannot disable the behavior. You can circumvent the behavior. One way is to select the application then CTRL- or RIGHT-click and select Move To Trash from the context menu. Now open the Trash and drag the file to the Desktop. Another alternative for your game program is to install it in an Applications folder inside the Home folder. Another is to drag the folders out of the game's folder and to the Applications folder.

  • Copying/Moving messages from Memory card to phone ...

    Hello,
    I had a nokia 5800, when i was changing my phone, i copied all my (important) text messages to the memory card and later i bought a nokia e71x. I inserted the same memory card and then went to my messages>settings>Other> and changed the path from phone memory to the memory card. All my messages appeared in my inbox.
    Now, i want to move all those messages into my phone memory and for some reason i can't do it. I don't wanna access my messages from the memory card cuz its slow. I tried to move all those messages inside the phone and also through PC SUITE but no luck...
    SO BASICALLY I WANT TO MOVE ALL MY TEXT MESSAGES FROM THE MEMORY CARD TO PHONE MEMORY.
    Can anyone please help?
    Thanks in advance.

    First of all if size of your mp3 was a concer then you should have used the Music Manager in PC Suite to convert them to aac as they would be super small in size.
    Next use File Manager to move from the card to the phone. Better to sva eringtones on the phone or you would lose the 'link' everytime you take your card out.
    Two ways to set the ringtone for everyone. First would be to set it in your profile. And the other would be to set it to Groups... and the last one, each contact at a time.
    Ericssson EH 237, Ericsson EH 337, Ericsson GH 388, Siemens S25, Nokia 6210, Nokia 7250, Nokia 6230, Nokia 6280 & O2 Atom , Nokia N95, Nokia 5800 XpressMusic

  • Moving information from last name field into blank first name field?

    Is there a script (or does anyone know how I can make a workflow in Automator) for moving information from the last name field in Addressbook to the first name field (which is currently blank)? I want to move information from the last name field to the first name field in over 500 addressbook entries, and it would take me all night to do it manually.

    Dear Michael,
    the scenario is like we r implememting portal all our customers around 2000 .
    so we cannt expect them to remember the same spellins as what we gave.
    no one else can change other password as it need to give the id and email correctly
    i have checked it in logon par file.......
    the java files r not included in it..... to modify and deploy it again....
    do u have any idea where we can change it other than java files or how to get this source files

  • Body of Accept/Decline messages from resource room mailboxes blank when viewed with Outlook 2010 or 2013.

    I stumbled across a funny little problem yesterday after a rash of users calling wanting to know why rooms were declining their meeting requests..
    The rooms were declining for perfectly legitimate reasons.. Conflicts or no end date but the accept/decline reply messages the rooms were sending out had no details in the message body when viewed from Outlook 2010 or 2013.
    If message preview is enabled in Outlook 2013 you can read a few lines of the body in the inbox view but it's still blank when you open the message.
    Reading pane is also blank.
    Opening the message from OWA or my phone shows the complete message body.
    Very odd. It reminds me of the bug in Exchange 2013 CU2 where meeting invites to external users were sent blank unless they were sent as iCalendar.
    Maybe this will resolve itself when I load SP1 in a few weeks.
    Any one else seeing this?
    We are running 2013 CU 3

    Hi Scott,
    I have tested in my Exchange 2013 CU1 environment and I can reproduce your issue in Outlook online mode. Please check whether the problematic users are using Outlook Online mode in Outlook 2010 and Outlook 2013.
    The issue doesn’t happen in OWA and Outlook Cached mode. Therefore, I recommend users can change their Outlook client to Cached mode as a workaround. To do it, we can:
    Open Outlook, click File > Account Settings > Account Settings. Double-click the account, check Use Cached Exchange Mode > Next and finish it. Restart Outlook to use it in cached mode.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Deleted a message from Mail does not move it to the trash folder

    I am a brand new mac user, so it's possible I just don't know what I am doing yet.
    I have added my IMAP email account to Mail with the following mailbox behavior:
    When I delete a message from my Inbox, in Mail it appears to move to the Trash folder.  However, if I log into the webmail interface I can see it actually still exists in the Inbox, but has been marked as deleted (there is a line through it).  It is not actually moving the message on the server into a trash folder, like iPad does.  If I pull up the Trash folder on my iPad, it does automagically reflect the item I deleted.  However, on my phone (not an iPhone), the messages are missing from the Trash folder.
    How do I configure Mail on my Mac to behave like Mail on the iPad?  When I delete a message, I want it to move the message into the Trash folder on the server.
    Thank you very much,
    Jesse

    I figured it out.  Mail created a new folder called, "Deleted Messages."  I was looking in "Deleted Items," which was an old folder.

  • Need smart mailboxes on iPad similar to mac. Any app?

    I need to hunt down very specific mails from hundreds.
    What my research tells me is it NOT NOT possible as of now,
    except the lame "smart" mailboxes that came up with ios 7.
    'cc' and 'with attachments' are smart?! Wake up apple!
    I would be happy if someone can suggest an app that would do the trick.
    Keeping my fingers crossed for iPad "pro" to come to resque.
    Thanks for reading!

    What are the mail account you use?
    Here you can see how it work with Gmail; http://www.google.com/support/mobile/bin/answer.py?hl=en&answer=138740

  • Is there any way to copy email messages from an iPhone to a computer (pc or mac)?

    My pc with my mail database was formatted and the mails lost. I have about 1000 mails on my iPhone that I desperately want to transfer back to my desktop.
    My mail was on a POP server and I have no copies anywhere other than on the iphone.
    I am not concerned about future email messages  - my question is about transferring existing messages from the iphone to a computer.
    Any help is much appreciated, in have googled this to death and can't find a solution!!

    This might help..
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • Is there a way to read text messages from the past in a thread that has been ongoing for months?

    Is there a way to view/recover messages from months ago in a thread that has been ongoing? The messages are not deleted. If i just keep "loading new messages" a) it will take all day, I've tried, and b) it freezes on me.

    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php
    Both will allow you to archive your text messages to your computer and read them easily.

Maybe you are looking for

  • Ios 8.0.2 killed my iphone 5

    My iPhone 5 was working well on the ios 8 and I never seen the update to the 8.0.1 but I seen the update to 8.0.2 and so I updated. And I really shouldn't have. My phone now says I need to factory reset my phone and it wont turn on. The screen lights

  • Query Builder within SQL Developer 2.1 versus Query Builder Version 6.0.7.1

    Dear all, dear Sue Harper, we use Oracle 10g (upgrade to 11g is planed) and used the Oracle Query Builder Version 6.0.7.1 by now unless we got to know about the SQL Developer 2.1 including the Query Builder a few weeks ago to produce our SQL statemen

  • Best way to manage mac clients?

    I have OpenLDAP that handles all the user accounts and so on. and i have Open Directory. what is the best way to manage and control those imacs in such a scenario.. I tired MCX with ethernet mac address, but its not reliable.. doesn't apply the setti

  • Move Central Instance to Another Server

    Hello expert, Now we have a distributed system: CI on server 1, DB on server 2. Now we want to move the CI to another server 3 without change the DB server. We get some information from link Move the central instance to another server in SAP We have

  • How to handle too many custom UITableViewCells in UITableView?

    In my iphone app, I need to display many custom rows (maybe thousands or even more) in the UITableView. I add one custom UIView onto each UITableViewCell in "- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *