Anybody experienced loss of data when switching service providers?

I recently transferred my two IMAP accounts to a new hosting service, but since I used the same names for the new accounts in Mail, all the mailboxes under the previous accounts, with hundreds of messages dating back to over two years, were deleted or overwritten!
Luckily, because they were IMAP I can still access them through webmail, but users should be warned that re-using the same name for mail accounts when switching causes loss of data, and as far as I know there is no warning during the creation of the new accounts that existing mailboxes will be overwritten.

Nothing has been over-written (the messages live on the server): it's simply that you've changed the settings for the accounts to the new provider, so of course Mail is displaying the messages there, not the originals. Just set up the original accounts again with the appropriate server settings and username/password - you can give them new names in Mail to distinguish them from the new ones (you can call a mail account anything you like for display purposes).

Similar Messages

  • Does anybody know the exact date when iOS 6 will be released?

    Does anybody know the exact date when iOS 6 will be released? I know it will be coming out in the Fall, but I was wondering if anybody knew the exact date.

    no one but apple knows for sure, and I'm willing to bet at this point in time all they have is a target date (if the software package was done it'd be released)
    Bear in mind also, the first 48-72 hours after the software's release it's often quite challenging to get the update or it takes a lot of time because you're one of millions that are trying to get on the servers. So release date and available/accessible date can be separated by a bit.

  • Inform users on unsaved data when switching between/starting new TaskFlows?

    Hi
    In our case, we are using the multiTaskFlow concept to dynamically start new TaskFlows in Tabs. The simple requirement is to have a generic way to inform users on modified unsaved data when switching or starting new TaskFlow
    I did research in google for answers, but did not found anything working.
    For example, I added following checks (df=dirtyFlag) just before switching between Tabs and Menu-items:
    boolean df1 = am.getApplicationModuleDef().isDirty();
    boolean df2 = ControllerContext.getInstance().getCurrentRootViewPort().isDataDirty();
    boolean df3 = ControllerContext.getInstance().getCurrentViewPort().isDataDirty();
    boolean df4 = AdfFacesContext.getCurrentInstance().getDirtyPageHandler().isDataDirty();
    boolean df5 = am.getTransaction().isDirty();
    boolean df6 = am.getDBTransaction().isDirty();
    boolean df7 = bindingContext.getDefaultDataControl().isTransactionDirty();
    boolean df8 = dcBindingContainer.getDataControl().isTransactionModified();
    boolean df9 = dcBindingContainer.getDataControl().isTransactionDirty();
    Start Application and perform a TAB switch without searching or changing anything
    df1 true
    df2 false
    df3 false
    df4 false
    df5 false
    df6 false
    df7 false
    df8 false
    df9 false
    Within a TaskFlow I perform a SEARCH and perform a TAB switch, flags change to following:
    df1 true
    df2 true
    df3 true
    df4 true
    df5 true
    df6 true
    df7 false
    df8 false
    df9 false
    I MODIFY values within TF and perform a TAB switch, flags remain same and regardless what I do, they remain so:
    df1 true
    df2 true
    df3 true
    df4 true
    df5 true
    df6 true
    df7 false
    df8 false
    df9 false
    Do you know a working approach?
    Thanks in advance!

    Hi,
    its for when you leave a view, not when you switch task flows in a page. To get back to your question, one thing you forgot to mention is what data control state is it that the task flows have: shared or isolated? If they have a shared state then only a single transaction is on and you should be able to tell the dirty state by calling
    boolean df2 = ControllerContext.getInstance().getCurrentRootViewPort().isDataDirty();
    However, if the task flow is in isolated mode then you will need to get a handle to the data control frame used by that task flow.
    BindingContext ctx = oracle.adf.controller.binding.BindingUtils.getBindingContext();
    String frameName = ctx.getCurrentDataControlFrame();
    DataControlFrame frame = ctx.findDataControlFrame(frameName);
    boolean isDirty = frame.isTransactionDirty();
    //see: http://docs.oracle.com/cd/E15051_01/apirefs.1111/e10653/oracle/adf/model/DataControlFrame.htmlHowever, this information is only available from within the task flow, which means to check this from the outside you need to provide a mechanism to get to this information (contextual events would be an option. You define a contextual event receiver on the task flows that when called checks the current transaction state and then "fires" the answer back to the caller, which then obtains a map of task flow transaction states to check before navigating away or switching task flows.
    Frank
    Edited by: Frank Nimphius on Apr 11, 2013 2:48 PM

  • Which BW Variable to be used for date when creating service in portal

    Hi,
    Can any one please let me know which BW variable is to be used for date(range) when creating a portal service for searching  based on dates.
    Thanks
    Abhai
    Message was edited by:
            Abhai

    Hi Arun,
    its just a portal service which would be called when  searching a document created on a particular date or betwwen a range of date.so what i require is which BW variable to be used when handling range.As for variable technical name we use VAR_NAME_I  and for single value variable we VAR_VALUE_EXT_I
    in the similar manner i want BW variable to be used for range of values.
    Thanks
    Abhai

  • How to reset data when switching between two subforms

    I have two subforms that are either shown or hidden based on a radio button selection.
    If Radio Button "1" is selected, subform1 is visible and subform2 is hidden and  vice-versa.
    This is hard for me to explain, so please bear with me.
    What I want to do is to clear the subform fields if you switch back and forth between subforms.
    For example:
    1.     Click Button "1" (subform1 visible)
    2.     Fill in subform1 fields.
    3.     Click Button "2" (subform1 now hidden)
    4.     Click Button "1" (subform1 is visible and  fields are blank)
    I found the below script in another post for a similar problem. I put it as a "click" event for each Radio Button Item, but I'm not sure where it's supposed to go as the other post didn't say. It works but it clears the entire form, not just the subform fields.
    xfa.host.resetData("xfa.form.form1.subform1");
    Can anyone tell me the proper script to make my form work?
    Please keep it simple. The extent of my JavaScript knowledge is basically cut and past and hope it works. If it does work, it's by the grace of God only. I couldn't tell you the difference between a SOM and an node.
    So, if anyone has an answer, please dumb it down to about the level of a third grader.

    Paul,
    Thanks for responding.
    I'm still confused as to which field the script goes in and how to enter it in relationship to any existing script.
    Instead of me trying to explain verbally, I'll show you what I have.
    Document Hierarchy:
    Subform path & script: (I'm assuming I need one for each subform)
    xfa.host.resetData("xfa.form1.Page1.subform1");
    xfa.host.resetData("xfa.form1.Page1.subform2");
    "Radio Button List" Click Event script that shows/hides subforms:
    form1.Page1.FLOC.RadioButtonList::click - (JavaScript, client)
    if (this.rawValue == 1)
        Subform1.presence = "visible";
        Subform2.presence = "hidden";
    else if (this.rawValue == 2)
        Subform2.presence = "visible";
        Subform1.presence = "hidden";
    if (this.rawValue == 1)
        Efficiency.presence = "visible";
    if (this.rawValue == 2)
        Efficiency.presence = "visible";
    I've tried putting the script  inside the curly brackets, outside the curly brackets, at various locations within the above script, but no matter where I put it, it clears the entire form.
    Would you be so kind as to re-write the above script  properly so I can see what it's supposed to look like.
    Thanks!

  • Switching Service Provider!!  Done with Verizon

    With this Lack of Response from Verizon I am switching Service Providers.
    There are
    AT&T
    T-Mobile
    Wal-Mart
    Cricket
    Net-10
    Sprint
    Just to name a few

    You are so right about verizon being a lowsy company...
    I too had been a customer for over 12 years... actually when they were primeco, and turned into verizon.
    Was good for a while, then it got worse and worse as the years went on. I have changed  carriers on my phone as of August this year.
    I had to suffer thru the last several months of the "agreement" for my sons' phone before I could also change carriers for his phone.  I had to log in to pay the last little bit!!
    Just had to access the part where I could agree on peoples complaining about verizon, and let everyone know NOT TO GET MIXED UP WITH VERIZON !!!!
      Too many problems to write about, just majorly sick of the %&^$#@#(^%
    GOOD BYE VERIZON... you crappy group of individuals!!   LOL  

  • Changing Service Providers and will lose email -- help!

    Hello,
    I'm switching service providers and cannot take my email address with me. 2 Questions:
    1. If I stop synching with my current provider, will NO email show up in my email box for that account, or will it save the current emails.
    2. How do I extract the email addresses/address book so that I can send a mass email to my contacts that i'm changing my email address?
    Thank you!!
    Kevin

    1. If I stop synching with my current provider, will NO email show up in my email box for that account, or will it save the current emails.
    Generally speaking, witnin 30 days this will be so.
    2. How do I extract the email addresses/address book so that I can send a mass email to my contacts that I'm changing my email address?
    Those should remain in AB, as all eMails should depending on account type... is this old one POP or IMAP?

  • Service providers software

    Hi Can anyone help, i have recently switched service providers but the old providers logos, banners etc are still on my handset (N70). Can i remove these so i just go with my new providers settings.

    Not without finding someone (or tools) to reflash your phone with the other operator's firmware (phone software), or generic/retail firmware.
    You should still be able to get the other operators network settings, etc., even if you can't remove the first operator's stuff.

  • MY phone is using large amounts of data, when i then go to system services, it s my mapping services thats causing it. what are mapping services and how do i swithch them off. i really need help.

    MY phone is using large amounts of data, when i then go to system services, it s my mapping services thats causing it. what are mapping services and how do i swithch them off. i really need help.

    I Have the same problem, I switched off location services, maps in data, whatever else maps could be involved in nd then just last nite it chewed 100mb... I'm also on vodacom so I'm seeing a pattern here somehow. Siri was switched on however so I switched it off now nd will see what happens. but I'm gonna go into both apple and vodacom this afternoon because this must be sorted out its a serious issue we have on our hands and some uproar needs to be made against those responsible!

  • Anybody experiencing an unusual amount of data usage? Like there's no way your possibly using that much data?

    Anybody experiencing an unusual amount of data usage? Like there's no way I'm using that much data???

    Many people complain of this, but depends on if it is a JetPack-type device or a phone.  Usually comes down to a phone turning off its wifi when asleep or idle, or apps running wild in the background, or a hotspot device with many connected devices.

  • Just updated to IOS 7 and two issues:  First when I connect my iPhone to my computer I get this error message:itunes was unable to provider data from sync services".

    Just updated to IOS 7 and two issues: 
    First when I connect my iPhone to my computer I get this error message:itunes was unable to provider data from sync services".  I'm not sure what this really means...
    The second issue is when I try to select "Manually Manage Music"
         The iPhone "My iPhone" is synced with another iTunes libary on "MY-PC".  Do you want to erase this iPhone and sync with this iTunes library?  An iPhone can be synced with only one iTunes library at a time.  Erasing and syncing replaces the contents of this iPhone with the contents of this iTunes library."
    So... I don't want to do that, but I do what to be able to Manage my music.  I'm not sure what it means by being synced to another iTunes unless it means to an older version of itunes?
    Anyone have any ideas?

    I cannot address the sync services error right now, but the error that you receive when you change from sync to manually manage music is what happens when you change. Once you change to manually manage music, it erases all of the music and will only put the music that you want on the phone, content that you manually drag over to it. See if this support document helps you out. http://support.apple.com/kb/HT1535

  • What do i do when Itunes says "Itunes could not load data from sync services  reconnect or try again later

    Hi, just recently when I attemted synced my ipod touch 5th generation, i got a message saying
    "Itunes could not load data from sync services  reconnect or try again later
    I am running the latest version on itunes (not quiet sure which specific one)
    I am running ios 6.1   my ipod is not jail broken
    don't know what to do
    I then cleard the message and my ipod showed up and began to sync
    however it is staying at the backing up stage for 12 hours
    Not sure what to do help!

    Try:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    "load data class"

  • HT1386 Error message when trying to sync .. "unable to load provider data from sync services

    When trying to sync I phone ... I get an error message saying  Unable to load provider data from sync services ....
    I have removed and re-installed I tunes and still get this message ..
    Thanks for any help !

    Thanks Joy
    I did try that and it eventually went to backing up.  however, after 2 Hrs the bar hadn't moved any ..

  • Hello.  I upgraded my MIFI 2200 (had no contract on it) to a Jetpack (with a contract) when customer service told me this 4G device would use less data because it was faster.  This was not correct.  Anyway, I got the device, had problems, did tech support

    I upgraded my MIFI 2200 (had no contract on it) to a Jetpack (with a contract) when customer service told me this 4G device would use less data because it was faster.  This was not correct.  Anyway, I got the device, had problems, did tech support, re-activated my MIFI.  1.  Decided to return the device. Spent hours with Customer Service, then finally up to Management, they agreed to take it back and void the contact, I sent it back immediately – and instead of voiding the contact they transferred it to my MIFI! Please cancel the contract on the MIFI. 2.  During the short time I had the Jetpack I continually received overage alerts, took it all the way up to 30 GB, each time I backdated the new data plan except twice when customer service did and failed to back date the increase, and once the computer locked customer service out and could not increase.  The end result is I have a $495 bill, many of these alerts were false since I ended up with only 14 MG for the month, etc.  I am asking that my bill be reduced significantly to reflect no overage and to compensate for these problems. Please open up a ticket for this.

    I had Verizon JetPak and you will find it will eat data like crazy. I opted to sign on to ATT Uverse and configured my phones and other devices to the WiFi on the Uverse system. It took about 5 minutes to completed the configuration.  I was using 10 to 12 GB monthly to support 5 devices. Even if you use Verizon DSL, you are still subjected to same GB allotment.  In my area, Verizon DSL is not available. With Uverse, I have 250 GB monthly to use, and I have not even come close to using anything of that magnitude. I reduced my GB package with Verizon to 2 GB per month and since having ATT Uverse, I never use more than 1GB a month with Verizon.
    I have no problem with Verizon cell phone service as we get a much stronger signal where we live than you can with ATT or any others.  It is just my opinion, but if you are running multiple devices off Verizon Jetpak, you will eventually spend a fortune to keep pace.  I pay $60 a month for 18 Mbps speed, although ATT have packages that cost much less. But, it saves me a bundle each month. The cost of Uverse alone is worth not having to run everything through a Jetpak.  
    If you have the  option to use another DSL service provider in your area, I recommend dumping the Jetpak and sign on with another carrier.

  • Anybody that I add to my bbm service doesn't seem to get any request to be added nor do I get one when they add me

    I need some help guys, I have a BB 8320 Vodafone which was from the UK and the person that I took it from unlocked the phone and passed it on to me now. I have a few issues with the BBM service. 
    I have recently activated my BBM service by choosing a particular plan that my carrier offers, and I have noticed that the edge now can be seen in uppercase which means the service has been activated and should work. But, anybody that I add to my bbm service doesn't seem to get any request to be added nor do I get one when they add me. I have been facing this problem with my BBM and I am not sure how to go about it. 
    I need a few clarifications first and foremost, when a BB 8320 phone is unlocked does it mean the phone has been unlocked so other carrier sim cards work or all the feature on the BB 8320 phone unlocked. Secondly, considering i'm in a situation like this, what should I be doing to resolve this issue at the earliest, do I go to a technical desk guy and ask them to re-install the Black Berry OS on to my phone all over again or do I just throw away this piece of **bleep** that BB has created? 
    And could anybody let me know doesn't BB have a universal software that let people put any sim card and work rather than have carrier specific software? Please need help really bad on this one!!
    I would really appreciate if some body can help me out in resolving this issue with your comments.
    Thanks much in advance who ever you may be! 

    It really doesnt work not e en on my bberry8350

Maybe you are looking for

  • Fed up with speed issues

    Hello, Ever since I got infinity 2 I have had issues with the spped dropping. No one from bt has ever followed the issue through. When i first got it i was getting speeds of around 70mbps download. My IP line profile was at 76mbps. It then dropped ov

  • It's official!  The Java Veterans envy the n00bies

    The developer productivity features in the upcoming Java SE 7 release (object comparison, file system monitoring, and concurrency) are enough to make a Java veteran envy the Java newbies.* Really? *from an Internet.com email blast I just received.   

  • Disk Utility won't burn a .cdr image to DVD – why and what do I do?

    I've burned DVDs before and I've had success with my MB Pro.  I know the steps and use this support article as a refresher each time to assure I'm following all the steps.  Yesterday and today I've tried to burn 2 different .cdr images made with Disk

  • ITunes keeps opening by itself

    iTunes when I click on the folder with the files it automatically opens iTunes. Even when I do a right click and then properties on the iTunes folder it automatically opens iTunes. If I close it but have the properties window still open it will start

  • Odd graphics problem, eventually leads to forced reboot, or even BSOD

    I am fairly certain that this is firefox related, or plug in or maybe compatability issue, however I'm getting weird blocky graphics. which occasionlly seem to begin from a flash frame within a page, but I can't say this is 100% the cause. It looks l