Mail Error - Driving Me Crazy!

I keep getting the following error:
"Some actions taken while the account “[email protected]” was offline could not be completed online.
Mail has undone actions on some messages so that you can redo the actions while online. Mail has saved other messages in mailbox “INBOX” in “On My Mac” so that you can complete the actions while online.
Additional information: The connection to the server “mail.mac.com” on port 143 timed out."
It is from an email the was marked as junk, and then I marked it as not-junk & tried to move it to my Inbox.
I keep trying to delete the “INBOX” in “On My Mac” & the email - I have even tried on the webmail, but it keeps showing this error.
Any suggestions?

Nevermind - I figured it out - I just deleted the account in Mail.app & created it again. Problem solved!

Similar Messages

  • Errors driving me crazy! But, it all compiles fine

    Errors driving me crazy! although compiles fine
    I am working on a project for an online class - I am teaching myself really! My last assignment I cannot get to work. I had a friend who "knows" what he is doing help me. Well that didn't work out too well, my class is a beginner and he put stuff in that I never used yet. I am using Jgrasp and Eclipse. I really am trying but, there really is no teacher with this online class. I can't get questions answered in time and stuff goes past due. I am getting this error:
    Exception in thread "main" java.lang.NullPointerException
    at java.io.Reader.<init>(Reader.java:61)
    at java.io.InputStreamReader.<init>(InputStreamReader .java:55)
    at java.util.Scanner.<init>(Scanner.java:590)
    at ttest.main(ttest.java:54)
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    This is my code:
    import java.util.*;
    import java.io.*;
    public class ttest
    static Scanner console = new Scanner(System.in);
    public static void main(String[] args)throws IOException
    FileInputStream fin = null; // input file reference
    PrintStream floser = null; // output file references
    PrintStream fwinner = null;
    Scanner rs; // record scanner
    Scanner ls; // line scanner
    String inputrec; // full record buffer
    int wins; // data read from each record
    int losses;
    double pctg;
    String team;
    String best = null; // track best/worst team(s)
    String worst = null;
    double worst_pctg = 2.0; // track best/worst pctgs
    double best_pctg = -1.0;
    int winner_count = 0; // counters for winning/losing records
    int loser_count = 0;
    // should check args.length and if not == 1 generate error
    try
    Scanner inFile = new Scanner(new FileReader("football.txt"));
    catch( FileNotFoundException e )
    System.exit( 1 );
    try
    floser = new PrintStream( new FileOutputStream( "loser.txt" ) );
    fwinner = new PrintStream( new FileOutputStream( "winner.txt" ) );
    catch( FileNotFoundException e )
    System.out.printf( "unable to open an output file: %s\n", e.toString() );
    System.exit( 1 );
    try
    rs = new Scanner( fin );
    while( rs.hasNext( ) )
    inputrec = rs.nextLine( ); /* read next line */
    ls = new Scanner( inputrec ); /* prevents stumble if record has more than expected */
    team = ls.next( );
    wins = ls.nextInt();
    losses = ls.nextInt();
    if( wins + losses > 0 )
    pctg = ((double) wins)/(wins + losses);
    else
    pctg = 0.0;
    if( pctg > .5 )
    if( pctg > best_pctg )
    best_pctg = pctg;
    best = team;
    else
    if( pctg == best_pctg )
    best += ", " + team;
    fwinner.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    winner_count++;
    else
    if( pctg < worst_pctg )
    worst_pctg = pctg;
    worst = team;
    else
    if( pctg == worst_pctg )
    worst += ", " + team;
    floser.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    loser_count++;
    fin.close( );
    floser.close( );
    fwinner.close( );
    catch( IOException e ) {
    System.out.printf( "I/O error: %s\n", e.toString() );
    System.exit( 1 );
    System.out.printf( "%d teams have winning records; %d teams have losing records\n", winner_count, loser_count );
    System.out.printf( "Team(s) with best percentage: %5.3f %s\n", best_pctg, best );
    System.out.printf( "Team(s) with worst percentage: %5.3f %s\n", worst_pctg, worst );
    The assignment is:
    Create a Java program to read in an unknown number of lines from a data file. You will need to create the data file. The contents of the file can be found at the bottom of this document. This file contains a football team's name, the number of games they have won, and the number of games they have lost.
    Your program should accomplish the following tasks:
    1. Process all data until it reaches the end-of-file. Calculate the win percentage for each team.
    2. Output to a file ("top.txt") a listing of all teams with a win percentage greater than .500. This file should contain the team name and the win percentage.
    3. Output to a file ("bottom.txt") a listing of all teams with a win percentage of .500 or lower. This file should contain the team name and the win percentage.
    4. Count and print to the screen the number of teams with a record greater then .500 and the number of teams with a record of .500 and below, each appropriately labeled.
    5. Output in a message box: the team with the highest win percentage and the team with the lowest win percentage, each appropriately labeled. If there is a tie for the highest win percentage or a tie for the lowest win percentage, you must output all of the teams.
    Dallas 5 2
    Philadelphia 4 3
    Washington 3 4
    NY_Giants 3 4
    Minnesota 6 1
    Green_Bay 3 4

    If you are working in Eclipse IDE, you can set a breakpoint and single step through your code to determe what line crashes. You can also examine variable values before the crash. Locate a line before the crash and set a breakpoint by double clicking on the vertical blue line that appears immediately to the left of the line of code. A blue 'dot' will appear on the line. Then,from the menu, select 'debug as application'. This will run your main() function up to that break point. In the menu, there are icons to allow you to single step through lines of code from that point, and another icon to step over lines of code if you want.
    Alternatively to setting break points, you can sprinkle your code with piles of System.out.println statements. Example: you have System.out.println("1"), and in another part of your code System.out.println("2"). If you code runs and prints out "1", but not "2", then you code crashed between them. I use breakpoints and System.out.println to debug.
    In your trace, you have "at java.util.Scanner.<init>(Scanner.java:590)" which means it crashed at line 590 (note in all the tracings, Scanner.java is a name of one of your custom classes and not a vendor class, thats how you can quickly find what part of the trace is important to you).
    NullPointerException means you tried to call a function on an object that is not instansiated (its null).
    Example: person.getName() will not work if person is null. Its the call to getName() that crashes.
    Debugging code is a very important skill set that you have to develop in which you have to logically track down and isolate problems.

  • Hi, Mail is driving me crazy by grouping received messages together by subject. I want each message, irrespective of subject, to appear stand-alone on a line of my mailbox. My old Mail did this automatically. How do I get back to old ways! Thanks...Rick

    The new Mail is driving me crazy by grouping messages together according to subject. My old Mail, under OSX 10.5, listed each message independently in my Mailbox by date received. One line in my Mailbox for each message. How do I get this way of posting messages back again? Thanks.

    So nice of you be so responsive. Thank you. Unfortunately, something is just not right even though I pretty much always keep my Macs in good health. When I move that folder (~/Library/Containers/com.apple.mail) and let it create a new one, Mail stops remembering ANY preferences. I can move and resize my windows and change my Prefs, but when I quit and relaunch Mail it goes back to some default state with none of my changes honored. Furthermore, when I search for the string "DisplayInThreadedMode" with BBEdit within that folder and all its subfolders, nothing is found.
    Maybe it has to do with how many things I disable on the recent OS X versions. I routinely disable Spotlight, Notification Center, Dashboard, Auto-Save & Versions, Gatekeeper, Automatic App Termination.... you know, all that stuff that I never asked for and don't need/want ;-)
    Maybe I could try re-enabling Auto-Save or something. Still, no other apps ever seem to behave strangely when I set all these "hidden preferences" to disable these unwanted OS features. Who knows, maybe the Mail team (programmers) just started assuming something was available which they didn't used to assume in 10.8.

  • Finicky e-mail is driving me crazy. Please help.

    I have an iphone 3G. I live in Japan and got the iphone through a Japanese cellphone service. Each cell phone in Japan has it’s own personal e-mail address, and e-mailing has always been quick and efficient: someone sends you an e-mail it goes to your phone immediately. I would assume that would be the case with the iphone, but it’s not. It’s really finicky and it’s really driving me up the wall. Here’s how receiving e-mail usually works for me:
    1) A message pops up on my screen telling me I have an e-mail.
    2) I go to my inbox, and the iphone begins connecting (I get the connecting message).
    3) It stays that way for a minute or two then the connecting message goes away. I press the reload button to check for new mail, but the phone does nothing.
    4) I move to a different folder, such as drafts or sent, and the iphone begins connecting again.
    5) I then back out and go back to my inbox. After another minute, my new message is finally downloaded.
    Before people start suggesting this: There is nothing wrong with my connection. I have full bars and internet browsing works fast and fine. It has always been like this even after updating or restarting as many people suggest to alleviate e-mail problems.
    Is there any thing I can do about this? Are there any mail applications that work better? Is it too much to ask for my phone to get my e-mail without me having to dance around like this? Thanks.
    Message was edited by: nikkuchan

    If it's an imap account the phone get's notified of the email arriving but it still needs to download it when you choose to read/view it which is where your lag is coming from, see if the imap account supports push, if it does when the email arrives it will be sent to your phone straight away (when the alert sounds) and won't wait for you to open the inbox before retrieving it so no lag. I use MobileMe for this and a couple of other accounts and have never experienced any sort of lag i get the email alert i open mail it goes to the inbox and the mail is sitting there ready to be read. In regard to this if it's still happening even with push could be at the email providers end but this wouldn't be all that likely

  • "File is in use" error driving me crazy

    I have a few files on an xServe drive that I am trying to delete. They are not being used by any application and I have no applications open, yet I can not delete them. I keep getting the error, "The operation cannot be completed because the item "item name" is in use."
    Other files can be deleted, only a select few continue to give me this error. Any solutions??

    This is what I get....looks like either no program is using it, or I am doing something wrong:
    Last login: Tue Jun 10 09:45:08 on ttys000
    MARK-Mark-I:~ markivey$ sudo lsof /Volumes/xserve/Marketing/Personal\ Folders/Mark\ Ivey/TRASH/4DDW1696.tif
    WARNING: Improper use of the sudo command could lead to data loss
    or the deletion of important system files. Please double-check your
    typing when using sudo. Type "man sudo" for more information.
    To proceed, enter your password, or type Ctrl-C to abort.
    Password:
    MARK-Mark-I:~ markivey$

  • IDisk syncing error driving me crazy!

    Every time my iDisk syncs, it fails and I get an error message saying that a file can't be found. I know I deleted that file a few days ago. I looked on all my other computers and searched spotlight and can't find anything. I deleted some of the preferences related to syncing, and now because of this I can't sync my iDisk at all! I signed out and back into my mobile me account. I reset iSync and reset sync data in preferences.
    Can anyone PLEASE HELP? Thanks.

    You can try this simple fix -
    Quit DW.
    Find this folder -
    C:\Documents and Settings\<username>\Application
    Data\Macromedia\Dreamweaver
    8\Configuration\WinFileCache-*.dat
    (these folders are normally hidden - you may have to use
    Explorer > Tools >
    Folder Options to unhide them)
    or on Mac -
    Library/Application Support/Macromedia/Dreamweaver
    8/Configuration/MacFileCache-*.dat
    and delete it.
    Restart DW. Works better?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jmath_sf" <[email protected]> wrote in
    message
    news:ee9lvg$5k9$[email protected]..
    > Help! I keep encountering the following error message
    when trying to
    > access the
    > EDIT menu or right-clicking:
    > At line 30 of file "Disk:Applications:Macromedia
    Dreamweaver
    > 8:Configuration:Menus:MM:Edit_Paste.js".
    > Exception thrown in native function."
    >
    > Has anyone seen this? How can I deal with this??
    >
    > Thanks!
    >

  • "Cannot Get Mail" notification driving me crazy!

    Hi everyone,
    I'm new here, I decided to sign up after much frustration with hopes that someone can help me resolve this issue once and for all.
    Every now and then (more like randomly) an alert pops up stating "Cannot Get Mail The user name or password for '[email protected]' is incorrect" It gives me two options, one is "Settings" and the other is "OK".
    Regardless of which I choose the message pops up a few more times, even when I know the password is correct/hasn't been changed and when I re-type it in the settings. I understand this is procedural when passwords are changed and need to be updated on the iPhone settings but this happens out of the blue for me and very constantly. It mainly happens with my iCloud account but it also happens with my other e-mail accounts. 
    Does anyone know what the problem may be or what I should do to fix this? I sometimes think that it may be a problem with the server, just for my own sanity.
    Much thanks in advance to anyone that can give me a clue

    Hi everyone,
    I'm new here, I decided to sign up after much frustration with hopes that someone can help me resolve this issue once and for all.
    Every now and then (more like randomly) an alert pops up stating "Cannot Get Mail The user name or password for '[email protected]' is incorrect" It gives me two options, one is "Settings" and the other is "OK".
    Regardless of which I choose the message pops up a few more times, even when I know the password is correct/hasn't been changed and when I re-type it in the settings. I understand this is procedural when passwords are changed and need to be updated on the iPhone settings but this happens out of the blue for me and very constantly. It mainly happens with my iCloud account but it also happens with my other e-mail accounts. 
    Does anyone know what the problem may be or what I should do to fix this? I sometimes think that it may be a problem with the server, just for my own sanity.
    Much thanks in advance to anyone that can give me a clue

  • My i tunes won't open. i keep getting error7 (windows error 193) . contacted microsoft(thought it was a windows thing...not) have uninstalled itunes and everything related to it ,re installed and message still comes up. Help please,driving me crazy.

    help. my iTunes wont open. I keep getting the message error7 (windows error 193). contacted Microsoft they said contact iTunes support. I have uninstalled all iTunes componets and then reinstalled everything but message still comes up... its driving me crazy.

    If it's a Windows error, it's typically going to be a Microsoft problem. Uninstall any security software you have and if you have a restore point for your PC, you may want to restore your PC back to when iTunes was working normally. If none of those work you would need to contact Microsoft and demand help.

  • I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    Hello joelfromn. charleston,
    It seems you are unable to activate iMessage on a device with no carrier service. The following article provides information regarding activation issues:
    If you get an error when trying to activate iMessage or FaceTime - Apple Support
    Check your device settings
    Make sure that you’re connected to a cellular data or Wi-Fi network. If you're using an iPhone, you'll need SMS messaging to activate your phone number with iMessage and FaceTime. Depending on your carrier, you might be charged for this SMS.
    Go to Settings > General > Date & Time and make sure that your time zone is set up correctly.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • Mail 2.1.3 on Tiger: mutiples of everything is driving me crazy!

    Hi, I recently had to reformat my hard drive and thus have been trying to reinstall all my email accounts (which I had backed up). I am using MAIL 2.1.3.
    I have several questions (this is driving me crazy!!):
    When I imported the archived files, it created new mailboxes but DID NOT reinstall my mail in it's corresponding email account file (i.e: i have an email account for incoming mail with "username", and then far below I have a mailbox (for EACH account, and I have about 7) which contains all my old mail. I can't seem to merge the two.
    When I recreated my useraccounts (most of which are gmail), I followed online instructions and created all my accounts using IMAP, since my first attempt using the POP version of these same accounts would NOT SEND OUT any of my Gmail mail. Now, for EACH ACCOUNT, not only do I have a "regular mailbox", I have the same "imported" from my old version, AND a third folder under "IMAP".... All this is REALLY driving me crazy!!
    All I want to achieve is what i had before : one version of each of my email accounts, including Gmail, that both recieve AND send mail. Nothing more.
    On the my other computer (leopard) Mail configures itself and everything works: it's bliss!!!
    Can anyone help me clear up this mess (also because as a result everything is SLOW!!)
    Infinite thanks,
    Nicaru

    Thanks BDAqua, Unfortunately I did not do a very good job explaining myself.
    I am not trying to sync two computers (Tiger/Leopard). The Leopard comment was just me venting that it was so much a better program than Tiger....
    No, what I want is simply to recreate my Mail Client the way it looked before: with one inbox per username, a single Sent/Draft/Outgoing mailbox and that's all!!
    Instead for each username I have "normal" Inboxes, PLUS imported folders (each with their own Inbox/Sent/Draft mailboxes) PLUS IMAP folders again with their own individual Inbox/Sent/Draft mailboxes). My homepage when I open Mail contains something like 21 folders, whereas I only want the 7 (one per username).
    This whole thing came about because when I tried to import my old mailboxes (pre-formatting my mac) they imported as separate folders whereas I wanted them to merge into their respective accounts.
    The other issue I had (originally) which led to this mess is that none of my Gmail accounts would SEND mail (receiving is Ok) so I followed the online IMAP instructions and this is where I got triplets....
    Gosh, I don't know how else to explain it... If it's still not clear perhaps I should just erase everything and start from scratch??
    Thanks again,
    Nicaru

  • Built in iSight driving me crazy - erratic

    Hello there,
    My built in iSight (iMac 2011, 21", OSX Lion updated to date) is driving me crazy, as I need to record some videos for my job. When I´m on the administrator user -the only one I use- it works fine on Facetime, PhotoBooth and iChat, but on Quicktime and iMovie it does not (black screen on iMovie, no green light on camera, if I press "record" it stops after 3 seconds / on quicktime if I click on "record new video" it appears an error message, could be translated -my OSX is in spanish- as "the task can´t be done at the moment".
    I tried adding a new user, and it worked fine with it, I did and SMC reset (same error), erased all preference files (same thing) and later I reinstalled Lion without formatting the hard drive.
    After this last step it worked. I could record a demo video on both quicktime and iMovie. But this morning when I turned it on the error is there again, same behavior, same everything. Before trying to record I just:
    - Changed the wallpaper and some mouse options, and the sound output from "internal" to my external usb sound card.
    - Opened Safari to check mail
    - Opened garage band (it looked for the .au)
    - Opened Logic (same as garage band)
    I´m out of ideas, any help would be great. I´ve just installed Skype to see what happened and it does also not work.
    Thanks in advance,
    Urko

    You're welcome, Urko.
    Well done tracking down the source of the conflict! 
    FWIW, today I checked Focusrite's support pages and note that Scarlett 2i2/usb does NOT appear on the their list of products known to be compatible with Mac OS X Lion: http://www.focusrite.com/answerbase/en/article.php?id=1159
    However, I did find several Focusrite articles concerning the Scarlett USB 2.0 Range products: http://www.focusrite.com/answerbase/en/category.php?id=108.   Article titles from that page, including "Scarlett 2i2", "Using iSight/Facetime HD webcam with your interface on a Mac", or "Latency issues using a Scarlett with Logic", may give you some cither ideas.
    If properly applying the 10.7.5 Combo Update doesn't solve your problem, and if you don't get the real solution from info you find here, I agree that your best bet is direct help from Focusrite. They should best be able to tell you how to use their product with your Mac system.  http://us.focusrite.com/contact-support
    Message was edited by: EZ Jim
    Mac OSX 10.8.2

  • Please help me fix this problem it's driving me crazy. I have tried installing and reinstalling photoshop EXTENDED several time and each time i lunch it ask me for the serial number in which i entered it once entered nothing happens

    Please help me fix this problem it's driving me crazy. I have tried installing and reinstalling photoshop EXTENDED several time and each time i lunch it ask me for the serial number in which i entered it once entered nothing happens

    Hi Glenn,
    Kindly try out the steps mentioned in the link below and see if you are able to serialize your software.
    Sign in, activation, or connection errors | CS5.5 and later, Acrobat DC
    Try Solution 2: Clean up cached user login information.
    Please share the results after performing the steps.
    Thanks,
    Atul Saini

  • Curve issues driving me crazy!!

    Ok, so I bought my BB Curve in January, and at first I loved it!
    A few days ago though it began going crazy.  Everytime I try to open something I get that annoying clock thing, and then once I finally get the program open, it stays.  This happens during phone calls (so it is rediculous trying to answer and end calls)  writing texts and email - anything.
    Then I added in the battery issue - my phone will die within 6 hours, even if I am not doing anything different.
    And now...the last few nights the screen has gone white with a weird meesage on it (something like APP ERROR I think...)
    I got a new SIM card, and that fixed it for about 6 hours. 
    This is driving me crazy!  i take my battery out so many times during the day it is almost not worth having a phone!
    Please please please help!

    I have the Curve 8130 - my carrier is ATT & for about the last mth it has been sluggish. The hourglass keeps popping up like something is running in the background. I have not loaded any new apps recently & it does starighten out after I pop the battery, but that's getting old pretty quick. Fortunately, I'm not having battery issues - but it is a nuisance to keep fighting with that **bleep** hourglass. Anybody else out there having the same issues or are we just the lucky ones???
    Looks like 2 different carriers here, so I don't think it's an ATT thing. Is Blackberry doing something or upgrading something that maybe we're not aware of? I never had an issue with my Curve before - but this last month has been really aggravating. I'm sure we can't be the only 2 people having these issues. Help!!!

  • Motorola Citrus driving me crazy!

    This phone will NOT capitalize the letter "I" automatically.  I am using the multi-touch keyboard ---- auto-correct errors is enabled.  I also added "I" to my dictionary.  How can I fix this?  It is driving me CRAZY!
    Thanks,
    Dana

        Good afternoon danasuemc.
    It sounds like you've done almost everything to get the "I" corrected on your phone. I'd be frustrated as well. Let's see if we can get this permanently fixed.
    Using the Multi-Touch keyboard, do you have Auto-Capitalization and Auto-Punctuate checked? So make sure, you can go to Menu> Settings> Language & Keyboard> Multi-touch Keyboard> then check Auto-Capitalization and Auto-Punctuate. Please let me know if this works.
    Thanks,
    VanessaS_VZWSupport
    Follow us on Twitter @VZWSupport

  • Transformation problems driving me crazy

    This is driving me crazy! If I create a process with a start node that
    receives an typed XML document (schema has compiled OK in the utilities
    project) then if I try to use a transformation to bind a String element from
    the expected send XML to a String variable, then I just get the following
    message in a red box:
    ERROR: cannot find a suitable Constraint for this join link.
    Any clues as to what I'm doing wrong gratefully received.
    I'm using WLI 9.2.
    Cheers,
    SB

    I can get around this by manually modifying the .xq file that is created
    (but not populated with my query) to include
    the xquery mapping that I want, and it works fine. I still can't fathom out
    why the xquery transformation utility comes
    up with the error below.
    SB
    "Stanley Beamish" <[email protected]> wrote in message
    news:[email protected]..
    This is driving me crazy! If I create a process with a start node that
    receives an typed XML document (schema has compiled OK in the utilities
    project) then if I try to use a transformation to bind a String element from
    the expected send XML to a String variable, then I just get the following
    message in a red box:
    ERROR: cannot find a suitable Constraint for this join link.
    Any clues as to what I'm doing wrong gratefully received.
    I'm using WLI 9.2.
    Cheers,
    SB

Maybe you are looking for