How do I restore mail and its contents

I installed 10.10.1 and now Mail won't load.   Two Preference errors. 
1.  There was an error in internet Accounts preferences.
2.  Could not load iCloud preferences pane.
Also I'm getting notifications that my start-up disc is full.  I delete files from Finder but it doesn't seem to change anything.

Redownload it from the app store.

Similar Messages

  • TS1702 some how my phone deleted an app --- My Secret Folder from my iPhone  How do I restore it and its contents  Thanks

    soem how my iphone deleted an app.  can I retore it and its contents?  How?  thanks

    Redownload it from the app store.

  • How to extract a folder (and its contents) from inside a zip file?

    There is a zip file which contains a folder inside it. The folder itself contains a few files. I would need to know how to extract the folder (with its contents) from inside a zip file.
    I have found a few unzipping code samples which show how to handle a folder inside a zip file. An example is shown below:
    public static void extract(String workingDirectory, byte[] zipFile)
    throws Exception {
    ByteArrayInputStream byteStream = new ByteArrayInputStream(zipFile);
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    ZipInputStream zipStream = new ZipInputStream(byteStream);
    ZipEntry zipEntry = null;
    String nameZipEntry = null;
    byte[] contentZiphttp://forum.java.sun.com/post!default.jspa?forumID=31#
    Click for code tagsEntry = null;
    boolean isDirectory = false;
    int indexFileSeparator = -1;
    String directory = null;
    String fileName =  null;
    while ( (zipEntry = zipStream.getNextEntry()) != null )
                nameZipEntry = workingDirectory + File.separator + zipEntry.getName();
                isDirectory = zipEntry.isDirectory();
                if (isDirectory) {
    File file = new File(nameZipEntry);
    file.mkdirs();
                else
                    // read zipEntry
                    byte[] buf = new byte[1024];
                    int c = 0;
                    while ( (c = zipStream.read(buf)) != -1)
                        out.write(buf, 0, c);
                    indexFileSeparator = nameZipEntry.lastIndexOf(File.separator);
                    directory = nameZipEntry.substring(0, indexFileSeparator);
                    fileName =  nameZipEntry.substring(indexFileSeparator+1,nameZipEntry.length());
                    FileSystemTools.createFile(directory, fileName, out);
                    out.reset();
                    zipStream.closeEntry();
            zipStream.close();
            byteStream.close();
    }The code sample which deals with the part where the zipEntry is a directory creates a directory with the same path and name. (highlighted in bold)
    Another similar variation is:
    File file = new File(dirDestiny.getAbsolutePath() + File.separator + zipEntry.getName() );
    if(zipEntry.isDirectory())
          file.mkdirs();When the code creates a directory for the folder, does it unzip the contents inside the folder as well?
    If not, how do I extract the files inside the folder?

    Have you already tried to see if the sample code you downloaded works or not? Maybe if you try out the code yourself you can see if it extracts files from a directory within a zip file?
    I like to use pkzip. It is a command line compression/uncompression tool that can be used from a batch file. If you assignment involves unzipping large amount of zip files on a regular basis, I recommend taking a look at pkzip.

  • Help me Friends - How to Delete a Folder and its contents in java

    Hi Friends
    I want to delete a folder and its contents by passing the folderpath.
    Can any one help me in this..
    Thanks in Advance
    Regards
    Krishna

    * Delete a directory including all of its content.
    * @param directory Directory path to delete.
    public static void deleteDirectory(String directory) {
    if (directory != null) {
    File file = new File(directory);
    if (file.exists() && file.isDirectory()) {
    //1. delete content of directory:
    File[] files = file.listFiles();
    int count = files.length;
    for (int i = 0; i < count; i++) { //for each file:
    File f = files;
    if (f.isFile()) {
    f.delete();
    } else if (f.isDirectory()) {
    deleteDirectory(f.getAbsolutePath());
    }//next file
    file.delete(); //finally delete (empty) input directory
    }//else: input directory does not exist or is not a directory
    }//else: no input value
    }//deleteDirectory()

  • How to resize a document and its contents?

    I'm having some trouble resizing a single page, and a single part of that page, on my document.
    First the details: My page dimensions are 800 x 1200. On top of that black background, there's textured layer measuring 760 x 130 at the top (for website's name/logo/misson statement) and 760 x 990 below (for site's content and graphics). There are 20 px borders (between textured layer and background) at the top and sides, and 10 px border at the bottom. The 50 px gap between the top and main textured areas is for the navigation bar.
    Now the problem: I want to resize just one page to 800 x 1250 px. And to complicate things, I only want to grow the bottom part by those 50 px, so that that textured layer measures 760 x 1040  (I have to add something to that page's main content, so I don't want to affect the size of either navigation bar or site's name/logo).
    Adobe instructions (http://help.adobe.com/en_US/Fireworks/10.0_Using/WSAE41683F-ED20-4488-9389-79DC28BD7CE0.ht ml) haven't been much help. I go to Modify > Canvas > Image Size, change to 1250 pixels, click off "constrain proportions" and click on "resample image" and "current page only." When I do that, it does enlarge both the black background and the textured layer to the size I want. But it also:
    1. Changes the entire page -- that is, it grows the nav bar and logo areas as well as the main content section.
    and, strangely,
    2. The textured layer on my two dozen other pages grows, but not the black background. In other words, I change both the background and layer size on the page I want to modify, but I inadvertently grow only the textured layer (but not background) on all of my other pages. (So the texture on all of those other pages now spills off the black background.)
    So my question: How can I resize only the main content's background and textured layer on one page? Is it even possible?
    Many thanks to anyone who can help. And my apologies for the lengthy explanation.  But I'm new to webdesign and Adobe Fireworks, and I wanted to be as clear as possible about the problem.
    PS If it matters, I'm using Fireworks CS4

    Thank you, Pixlar. However, I couldn't adjust the rectangle as you suggested, as it was on my master page. That was the problem I was having: Both the canvas and the texture layer I put on it (ie, the rectangle) were on the master page. I wanted to change the dimensions of both canvas and rectangle on only one page. Following Jim's suggestion, I was able to change the canvas, but not the rectangle (at least,not without adjusting the master page, which would have affected the layout of twenty other pages).
    I finally decided to follow your other suggestion: Delete the old one and start over.
    Thank you again for your help. Nice having a forum like this to turn to.

  • How to create new .dat file and its contents?

    Hi There
    Can anybody let me know the procedure of how to create new .ctl or .dat file to load data to tables.
    i working on 2day dba chapter 8. it shows me how to creat table and use .dat file to load data. but doesnot giv any clue how new .dat file and its contents can be created. please help.
    thanks in advance.

    Thanks for ur help
    I ve created txt file in notepad and saved it as dat file. tried to load that data thru Enterprise manager. used load data from User files everything went well and job was showing suceeded but dont know why that data is not showing in the table. i ve tried it now for three four times. used right table and pathe but dont know. has anybody got idea why that ll be?
    Thanks

  • PSE9: How do I move/copy an Album and its contents from my PC to my laptop?

    I am using Windows 7 and PSE 9 on my PC and want to get a copy of the album and its contents to my Vista laptop running PSE 9 without changing anything on the source PC. Anyone know how to do this? I know I can move the files through Windows Explorer on my network but I have already gone through the trouble of putting the best photos into an Album and would like to simply move the Album over and not have to go through the trouble of recreating it.

    You will need to copy the files.
    1. Make a new folder on your laptop
    2. Open Organizer, select your Album then press Ctrl+A to select all photos
    3. Click the Fix tab and choose Full Photo Edit to open the album contents in the editor
    4. Click File >>Process Multiple Files
    5. From the drop down menu (Process files From) choose Opened Files
    6. For destination click the browse button and navigate to your new folder on your network and click OK
    7. Make sure Rename and Resize is unchecked but check Convert files To and choose Jpeg Max quality or whatever you prefer then click OK and wait for Elements to finish.
    8. Go to your laptop folder to see your images.

  • How to move some xml element and its content to a new frame

    Hi All,
    How to move some xml element and its content to a new frame.

    Hi Chinnadk,
    Sorry my code its comment some lines. Now only I check the forum thread, you just try one more time.
    #target InDesign;
    #include "/Program Files (x86)/Adobe/Adobe InDesign CS5.5/Scripts/XML Rules/glue code.jsx"
    var myDoc = app.activeDocument;
    //____________________ XML RULE SET
    var myRuleSet = new Array (new margintag);
    with(myDoc){
        var elements = xmlElements;
        __processRuleSet(elements.item(0), myRuleSet);
    function margintag(){
        this.name = "margintag";
        //this.xpath = "//margintag[@type='mn2']";
        this.xpath = "//margintag";
        this.apply = function(myElement, myRuleProcessor){
            with(myElement){
                app.select(myElement);
                try{
                    var myPrePara = app.selection[0].paragraphs[-1].parentTextFrames[0].paragraphs.previousItem(app.selection[0].paragraphs[-1]);
                    if(myPrePara.characters[-1].contents=="\r"){
                        myPrePara.characters[-1].remove();
                    var myTextframe = myElement.placeIntoInlineFrame(["7p9","6p"]);
                    myTextframe.appliedObjectStyle= myDoc.objectStyles.item("MN1");
                    myTextframe.fit(FitOptions.FRAME_TO_CONTENT);
                    myTextframe.parentStory.paragraphs.everyItem().appliedParagraphStyle = app.activeDocument.paragraphStyles.itemByName("MN1");
                    }catch(e){}
                app.selection = null;
            return true;
    thx,
    csm_phil

  • I am a BT Yahoo customer using Apple Mail, on iMac, iPad iPhone, 4 to 8 times a week sent mail is not delivered into the sent mail box and I have no record of the sent e-mail or its content. BT say it's an apple problem. Any help would be appreciated. Ted

    I am a BT Yahoo customer using Apple Mail, on iMac, iPad iPhone, 4 to 8 times a week sent mail is not delivered into the sent mail box and I have no record of the sent e-mail or its content. BT say it’s an apple problem. Any help would be appreciated. Ted

    Hello,
    Are they just regular size eMails?
    Do you have more than one eMail account setup?
    Next time it happens, get...
    Find Any File...
    http://apps.tempel.org/FindAnyFile/
    Hold Option or alt key when selecting Find to Find All.
    Use it to Find All, for Name ends in...
    .emlx
    (dot ee em el ex)
    And Modification Date, is within, the last 5 minutes or whatever.

  • HT201301 How do I import a garageband project folder (and its contents) into itunes?

    How do I import a garageband project folder (and its contents) into itunes so I can transfer it to my ipad?
    I am a guitar teacher and I want to use garageband for the ipad as a teaching tool for my students.  The goal is for my students and myself to share garageband project files so that both the teacher and the student can have the full project...or even add to it.
    Here's what I need help with...
    My student has created a song in garageband that has 4 tracks.  They sync their song to itunes so they can see the project folder for that song in the document window for garageband under the "apps" tab in itunes.  They click "save to" and save the project folder to dropbox. 
    I want to be able to import the project folder for that song from dropbox into itunes so that I can copy it to my ipad and have full access to my student's song.
    I appreciate any help!  Thanks!
    Pat
    [email protected]

    hi Pat,
    what you can do is add that folder to garageband directory using ifunbox. here is the step:
    - Open your ifunbox then go to "user Applications" on your left panel, then select garageband folder. You will see a folder as below:-
    "Documents"
    "Library"
    "MobileGarageBand.app"
    "tmp"
    "itunesartwork"
    "itunesmetada.plist"
    copy the folder you like to put into your ipad by copy it into "Documents" folder. and then quit the ifunbox and restart your itunes again and sync your ipad again and check if you can see the folder on your file sharing under apps tab. Wish you good luck.

  • Is it possible to recover a deleted folder and its contents as opposed to an individual file?

    When I turned on my computer today, a folder located on my desktop is no longer there.  Astounded I could have accidentally deleted it, the folder having been trashed is the only illogical logical possibility I can think of - and is a first for me in my 30 years of Mac use.  My father is in the process of dying and the folder contains all the information coming to me on the subject.  The last backup of this folder is about a week old and much has been added since for which I've no record.
    Not having a master document or table of contents listing what was in the folder leaving me unable to search for and recover individual files/documents by name, my question is this:  Is it possible to recover a "FOLDER", and its contents after that folder has been moved from the desktop to the trash, the trash emptied, and the computer having been shut down?
    If anyone has any ideas of how to recover anything about what items that folder contained, I'd really appreciate whatever thoughts you might have.
    Thanks in advance -
    The computer this folder is missing from is a early 2008 MacPro, running 10.7.5.

    I'm not sure what you can do beyond trying to restrict the types of files you search for. These apps normally have ways to select the file types or to add example files. That allows them to carve out only those types, but you still may end up with GB's of data, especially if the types are somewhat generic. I don't know of any tools that can undo changes to the disk catalog over time.
    I guess you could also search for specific text if you know that these files contained something that is 'almost unique'. Spotlight can do that, or grep, egrep are command line tools that may help ask if you want to go that route, they may help you gather lists to move files around to whittle them down.
    Sorry I can't think of a way around this it's a difficult task at a difficult time. Good luck with it, ask if you think we could help.
    I do wonder if Apples 'Versions' could help?
    OS X Lion: About Auto Save and Versions - Apple Support
    @Tony T1, do you know how to restore files from that system? I think it is part of Time Machine, but the copies are saved locally.
    It is not entirely clear how it works (at least from my memory of Lion) with regards to how you could get files back in this situation. The database should be at the base of the disk in a hidden folder ".DocumentRevisions-V100", but I don't think you can just pull files out of there. Personally I'd consider making a full disk backup before you attempt to restore files. Then you could try the 'Enter Time Machine' UI to see if it can browse back to the older Desktop.

  • HT201250 how do I restore mail

    How do I restore mail - i seem to have over written it -I have time machine but no instruction about how to restore just one programm

    Do you need to restore the application (program), or the data (mailboxes, emails), or the setup (preferences -- account names, mailbox rules, server names, etc.)?
    Those are three different things, stored in different places.
    If your Mail app is missing from your Dock, see if it's in your Applications folder.  If so, just start it, then right-click its Dock icon and select Keep in Dock.
    If something else is missing, please clarify.

  • HT4623 I want to give my iPAD to my wife. How do I restore it to its out-of-the box status?

    I want to give my iPAD to my wife. How do I restore it to its out-of-the-box state?

    mbmessier wrote:
    ...  How do I restore it to its out-of-the-box state?
    See here  >  http://support.apple.com/kb/HT5661
    More info...
    ERASE / Clear All Data
    See  Erase your device  Here  >  http://support.apple.com/kb/HT4137
    Go to Settings > General > Reset > Erase all content and settings
    Also... See the wjosten post here...
    https://discussions.apple.com/message/20294697

  • How do i restore my ipod its disable

    how do i restore my ipod its disable

    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If you previously synced to the computer then you may be able to recovery use of the iPod without erasing the iPod by following the instructions here:
    Disabled Recovery-must use syncing computer.

  • Using mail and its rss feed on 2 mac computers

    Hello to the mac users comunity!
    I have 2 questions here:
    1st:
    I am using for work a iMac and i am planning to use for my business trips a mac book air.
    I am using the mail and its rss feeeds, i would like to be able to read my mails and rss on both computers and above all that when i have read an email on one computer or one rss feed, it appears as "read" in the other computer
    Is this possible?
    2nd:
    I have about 20 different rss feeds folders on mail, for reading them i have to go from one rss feed folder to the other, how is it possible to view all rss feeds mixed up together in one only feed?
    Thanks a lot for your help

    Hi, no idea about RSS, chucked that about 10 tears ago,but if it's an IMAP account & you use Mail, it'll still report unread on a Ma that hasen't red it yet, unless you mark it read.

Maybe you are looking for

  • Problem in MSS - Create Requisition

    Hi All, We implementing E Recruitment on EHP4 sp4. we are facing a strange issue in the MSS-Create requisition request scenario. We are using standard HCM process HR_MSSRCF_REQUISITION. MSS user is able to create a requisition and send to his manager

  • Domain Logon fails using wireless LAN

    Hi Sir, I am setting up an ACS server to authenticate the wireless LAN users using PEAP MS-CHAPv2for one of my existing customer. They need to login to domain whenever they need to access to the network On the wireless client's end, the OS is Xp and

  • It is possible to copy only the response in web console?

    Ctrl+C an item in web console copies both time and response, example: [13:28:58.020] function alert() { [native code] How to copy only the response? function alert() { [native code] }

  • Need mod assistance

    could a mod get in touch with me please as had to reset my hub 4 because wireless issues and fon is back on again and i want it turned off as they did for me before when i was having a lot of stress with youngsters hanging around my house using my fo

  • HT201365 Since I updated to the OS 7 I cannot use my Apple ID to remove Find My iPhone

    Since updating to OS7, I lost access or iMessage and Face Time. It would not acknowledge my apple password even though it works in other areas. When I tried to reset my iPhone, it asks to delete Find My iPhone from iCloud. It won't let me. It won't a