Move mail messages from one Acount to another...

Hi,
I have several mail accounts on my iPhone (iOS 4.3.5) one Exchange ActiveSync and 2 GMail Accounts. I am able to Move mails from the ActiveSync Account to any of the Gmail Accounts, I can move messages in between the two GMail Accounts, but it is not possible to move messages from one of the GMail accounts to the Exchange ActiveSync Account. It fails with the message: "Unable to Move Message - The message could not be moved to the mailbox Inbox.". Is this a known limitation? I can reproduce this with different devices and different people from my company. It is always the same behavior.
Thanks in Advance.

Some possible options in no particular order:
(1) Copy the folders to a SUB Thumb Drive.
(2) Use Dropbox
(3) If your Macs are compatible with AirDrop see list:
MacBook Pro (Late 2008 or newer)
MacBook Air (Late 2010 or newer)
MacBook (Late 2008 or newer)
iMac (Early 2009 or newer)
Mac Mini (Mid 2010 or newer)
Mac Pro (Early 2009 with AirPort Extreme card, or Mid 2010)
Activate AirDrop on both Macs to Move/Copy your Mail Folders.

Similar Messages

  • Having trouble moving mail messages from one user to another

    I am trying to move mail messages from one user to another on my Macbook, and I cannot seem to do it. I've tried archive, but I don't think I'm doing it right. Any suggestions?
    Thanks,
    Noreen
    Message was edited by: reensjp

    I had to go to the Mac store to get the answer to this one... i was archiving correctly, but you need to save the mbox files to your desktop, then move them to the shared folder, that way all users have access. I also had to edit the permissions on the files, as the user i wanted to have the emails didn't have permission to even look at the files.
    Noreen

  • Move mail folders from one mac to another

    How to move my mail folders from one mac to another.
    The foldera re on my mac. See below the attached image.

    Some possible options in no particular order:
    (1) Copy the folders to a SUB Thumb Drive.
    (2) Use Dropbox
    (3) If your Macs are compatible with AirDrop see list:
    MacBook Pro (Late 2008 or newer)
    MacBook Air (Late 2010 or newer)
    MacBook (Late 2008 or newer)
    iMac (Early 2009 or newer)
    Mac Mini (Mid 2010 or newer)
    Mac Pro (Early 2009 with AirPort Extreme card, or Mid 2010)
    Activate AirDrop on both Macs to Move/Copy your Mail Folders.

  • Moving mail messages from one account to another sends to inbox, not IMAP folder

    I have many email addresses (setup via Google apps) but I generally store all of my emails on one standard Gmail IMAP account. It makes looking for old emails easier IMO. Here's what my workflow should look like:
    I get an email on account B, reply with account B, then file that email into account B's folder on account A.
    Unfortunately, that workflow has been broken for a very long time now and 10.8.3 didn't fix it.
    Here's what that workflow actually does:
    I get an email on account B, reply with account B, then file that email into account B's folder on account A, the email ends up in the inbox of account A, I then have to drag the email into account B's folder on account A *again* so it actually sticks.  The tricky part is that Mail seems to have the message in two locations until I
    Instead of moving the email directly to account B's folder on account A, it goes to the inbox of account A. I'm really tired of having to move a message twice just to get it into the right folder. I was hoping 10.8.3 would fix this but it's still broken. I believe I started noticing the issue in Lion.
    I only use Gmail IMAP accounts if that helps. I've re-installed from scratch to eliminate any user account / upgrade issues that could've caused the problem.
    I would really appreciate any suggestions or confirmation of the problem from other people so I can file another bug report (did that already but they never understood the issue). 

    Hi,
    Locate your Mail folder via this path - Home/Library/Mail and copy it to the same location on the second machine - when you get the message about overwriting say yes. (make sure Mail is not open on either machine)
    I f you're nervous about overwriting the corrupted copy - simply move it out of Home/Library first - say to the desktop. When you copy the new Mail folder over, and you know it works - delete the desktop copy.
    Regards

  • Failure to move messages from one account to another

    I have recently started having problems when trying to move messages from one account to another. I get a message that says: The IMAP command "APPEND" (to INBOX) failed with server error: message contains NUL characters.
    I have tried shutting down and restarting, repaired permissions. Not sure what to do next. Any help?

    Ernie,
    One is POP thru Cox Comm and the other is mobile me (the old .mac accts). Why would all of a sudden there be an issue when I several times during the day have been able to move messages from Cox to mobile me?

  • Move all Mail emails from one Mac to another

    Move all Mail emails from one Mac to another (both Mountain Lion)
    Is it correct to copy (/replace) the following to the target Mac?
    ~/Library/Mail/
    ~/Library/Containers/com.apple.mail
    and everything beginning with
    ~/Library/Preferences/com.apple.mail.plist...
    Many thanks!

    coxorange wrote:
    Csound1 wrote:
    The Imap account does not need to be moved, sign in on the new machine, your mail will be there.
    Does this mean even though these mails had been downloaded to the first Mac, they are still stored online too
    Yes, Imap systems store all mail on the server, all connected clients are synchronized to the server (the mail itself stays on the server)
    ... regarding the POP accounts. Do you simply want the contents are or you planning on continued use of these accounts on the new machine?
    Continued use.
    Export each mailbox from the old machine to the desktop, to do so select a mailbox, rght click and choose Export, repeat for all others. Move the mailboxes to the new machine'sdesktop.
    I suggest setting up the new accounts before importing the mail from the old machine.
    In mail choose File>Import Mailboxes, choose the ones on the desktop (one at a time) a new mailbox will appear in Mail called Imported, you can move mail from there back to the correct mailbox in the POP accounts.

  • 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 migrate my junk-mail settings from one Mac to another?

    I would like to move my junk mail settings from one Mac to another. I found this article (https://kb.siteground.com/how_to_synchronize_the_junk_email_settings_in_mac_mail /), but can't locate the file indicated in the article, so I suspect that the article is out of date (though it's not dated).
    Both machines - MacOS 10.9.5; Mail 7.3.
    Any insights much appreciated!
    Best,
    Doug

    Make your user library visible and see if you can find it.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library.

  • Move a file from one lacation to another in FTP

    Hi Experts,
    i have scenario were i have to move a file from one location to another in a FTP the source and the Target  structure are same can we go  with only configuration(ID) why because there is no mapping done but i have dbout when we create a sender agreement,receiver agreemant we need to mention the Message Interface is there any way to skip the IR(Design) part
    Do provide inputs
    Thanks,
    Sampath

    hi ,
      you can skip your IR part. follow this blog
    /people/william.li/blog/2006/09/08/how-to-send-any-data-even-binary-through-xi-without-using-the-integration-repository
    /people/shabarish.vijayakumar/blog/2006/04/03/xi-in-the-role-of-a-ftp
    Edited by: Robin on Jan 20, 2009 11:50 AM

  • How do I move a user from one computer to another?

    Our company has a volume license for CS4 and I am trying to move an employee from one MAC to another MAC.  When she logs into new MAC and tries to open InDesign or Creative Cloud they both crash.  The other programs are opening up fine.  The new MAC has a user that all CS4 programs work fine as well. 

    CS4 is from LONG before the Cloud... but recent messages that are about Cloud programs indicate that the Apple "migration tool" does not work... you need to do a new install & activation
    For your problems with new Cloud programs, try the link below
    Link for Download & Install & Setup & Activation problems may help
    -Online Chat http://www.adobe.com/support/download-install/supportinfo/

  • Move for VCRs from one repository to another is not supported

    Hi,
    I found this problem when I try to move a versioned resource from one repository to another one.
    Ex 1 - From documents: Move one document (versioned) to your Personal Documents.
    Ex 2 - Personal Documents: Move one document (versioned) to documents.
    The error message is:
    "Move for VCRs from one repository to another is not supported"
    We have EP6 SP17 KM6
    This also happens in EP6 SP2 P35, but throws and exception.
    Greetings,
    Jorge M.

    Correct. This is not supported because it would require assigning new identifiers to the versions. However, version identifiers are supposed to be stable.
    Best regards, Julian

  • How do I move Contacts & Calendar from one User to another User on the same Macbook Pro?

    How do I move Contacts & Calendar from one User to another User on the same Macbook Pro? OSX 10.9.5

    is this second library in a different account on the computer?
    Look at Home Sharing.
    iTunes: How to share music and video - http://support.apple.com/kb/HT2688 - about Music Sharing and Home Sharing
    Home Sharing Support page - http://www.apple.com/support/homesharing/
    iTunes: Setting up Home Sharing on your computer - http://support.apple.com/kb/HT4620
    iTunes Home Sharing now works between users on same computer - https://discussions.apple.com/thread/3865597

  • HT4528 how do i move an icon from one screen to another on my Iphone 5?

    How do I mov an icon from one screen to another on my Iphone 5?

    Tap and hold an Icon until they begin to shake. Move the Icon towards the edge of the screen and hold for a couple seconds. The Icon will then "jump" to the next screen.

  • How do I move a contact from one group to another?

    On my device, or in iCloud on the web, how do I move a contact from one group to another.  This should be as easy as it is with calender items, but the only solution I've found is to change your default contact group, and email the contact to yourself.  Then tap the contact, and add it to your contact list.  You can then delete the original.  Is there an easier way???

    Hi rjwrjw11,
    Thanks for visiting Apple Support Communities.
    If you want a song to be listed under a different album in iTunes, you can edit the song information:
    Fixing Incorrect Song or Album Listings in iTunes
    http://support.apple.com/kb/TA24677
    Editing Track Information in iTunes
    To view and edit a song or video's info in iTunes:
    Click once on the track title to select it
    From the File menu, choose Get Info
    Click the Info tab
    Best,
    Jeremy

  • How do I move vznavigator favorites from one phone to another?

    how do I move vznavigator favorites from one phone to another?
    Wife has Pre 2 where GPS works beautiful... my old Pre Plus was always hit or miss on GPS.
    But I've developed quite a library of favorites on my Plus.  How do I move these to our new Pre 2?

    Good afternoon CWFlink.
    I am a fan of the VZ Navigator myself, and all of the great features of this application!  Is the Palm Pre 2 on the same number as the Palm Pre Plus?  If yes, you can synchronize your Favorites through our website at the following link: VZ Navigator  
    You will sign in using your My Verizon login information, and sync the Settings and Favorites to your new device.  However, if your Favorites are on a different mobile number, you will have to manually enter in the information/ settings.  I still encourage you to use the website to set everything up as you like, in case you need to change devices in the future.
    I trust this information is helpful.  
    Thank you,

Maybe you are looking for

  • Line items processing in BAPI_REQUISITION_CREATE

    Hi all  , Inside the loop i would like to check the line items conditions for below : PO     Line item      Open Po Quantity      Need Requsted Quantity 444444     1     80000                             40000 444444     1     80000                  

  • Remote Desktop - The Remote Desktop administrator software does not match the installed client software version.

    Hi,   I just upgraded to Mavricks and get this when I try to launch Remote Desktop: The Remote Desktop administrator software does not match the installed client software version. I tried removing the application and reinstalling it to no avail.  Any

  • 10.5.5 Client Getting No Results with Spotlight Search

    Hi - My company is slow to change. We are just now getting some Leopard workstations in our enterprise. The thing my users noticed right away was that under 10.5.5, they are unable to get any results from Spotlight searches on our Tiger Xserves over

  • Main Order TECO when Sub-Order is open

    Dear All, I just wanted to clarify if we can do TECO of Main Order when Sub-Order is open? If we can control this using any settings. Presently it is not allowing to do TECO of Main Order as long as Sub-Orders are open. Regards, MLN Prasad

  • Warning: iPhoto 08 Makes it Too Easy to Delete Entire Library

    This is just a warning to everyone else since it happened to me this morning. I accidentally deleted my entire iPhoto library because my roommate stupidly placed the icon "iPhoto Library" into the trashcan, and this morning I emptied the trashcan. I