Apps hang on quit

Here's the deal:
A couple days ago, around the time of the Adium 0.89.1 release and the Mac OS X 10.4.6 release, some apps, specifically Adium, Safari, iCal, and Mail will sometimes hang when I try to quit. Any open windows will close, but the app won't shut down until I Force Quit. It doesn't happen all the time, but I've noticed the longer I've had the app open, the more often it hangs on a quit. Everything is still usable, but I'd like to prevent this from happening.
To solve, I've tried repairing permissions from the install DVD, resetting PRAM (I realize this really shouldn't work anyways), using MacJanitor to clean out caches, restarting in Safe Boot, and restarting without any peripherals, but all to no avail. I've also reinstalled Adium 0.89.1, because I thought it might have something to do with the update, as now whenever I open it, I get a "this message should only appear once" message. I've also refrained from updating to 10.4.6, fearing it might make it worse.
Any suggestions?
14 iBook G4, 1(.07)GHz   Mac OS X (10.4.5)   iSight, 40 GB ext HD, 128 MB flash drive/ mouse combo

That's good news that it's limited to your user!
Log back into your normal user account:
Here's the whole litany for thoroughly checking your home folder.(in your case try #4 and #2 first)
1. Navigate to ~(yourhome/library/fonts - drag this folder to the desktop.
• Restart and test your applications.
• If they work start adding the fonts back few at a time.
( Likely suspects are Times RO & Helvetica Fractions, also if you do not use Classic you can trash the classic fonts.)
2. Check Preferences Thoroughly;
• Navigate to ~(yourhome/library/preferences drag this folder to the desktop.
• Restart and test your applications.
• If this works, save the old preferences folder somewhere else or on disk, name it "old prefs" .
** Note: A very important file is the "com.apple.Mail.plist" preference file located in the Preferences folder which contains all email account settings and general mail preferences (hold this one and replace if your problem is not with Mail).
You'll have to go through some of your System Preferences and apps to set the preferences back to how you like them. (Or if you have the time and inclination, "cherry pick" through until you find the problem one or two.)
3. Check Permissions Inside Home Folder
• Navigate to yourhome/library.
• Get Info (Command - i) on folders for apps you are having problems with.
• Open the "Ownership & permissions" disclosure triangle.
• Make sure you are the owner, with "read and write" access.
• Click on "apply to all"
• If this is correct, open the "Applications Support" folder and do the same procedure (Command+I) for the folders with the names of the applications you are having trouble with.
Note:
The reason to check this is because repairing permissions with Disk Utility doesn't touch permissions inside your home folder.
4. Navigate to yourhome/library/caches and drag this folder to the trash, then log out and back or restart. There is no need to replace this folder.
-mj
[email protected]

Similar Messages

  • Notes app hangs and quits when I unpin a sticky note

    Hi,
    I had pinned 2 notes on the desktop. I deleted one of those from the main notes window. Later when I tried unpinning that note from the desktop the application hung and then closed. Now neither of the 2 notes can be unpinned, even though these can be floated around the desktop, minimized or maximized.
    I was storing these on icloud.
    Has anyone else experienced this?
    Thanks.

    Just did this and it works even though the solution was for a different question.
    Try deleting ~/Library/Containers/com.apple.Notes
    For those who have the same problem above don't know how to delete a library file, this may be useful: You need to first reveal the Library file, which is done via Terminal. At Terminal write in chflags nohidden ~/Library/
    When you go to your user-level file in Finder, you will find the Containers folder, and from there the com dot apple do Notes folder. Simply delete the entire folder, close your Notes and reopen them. You will see that you no longer have duplicate notes since you deleted the on-board copies being saved on your computer and not in the cloud. This solution works perfectly.
    Hope it helps.
    Philip

  • IPad Mini 2 goes ballistic when being charged -- in other words, it hangs abruptly ; does not type properly. Moreover, in some instances open apps peculiarly force quit without the screen being touched whatsoever.

    iPad Mini 2 goes ballistic when being charged -- in other words, it hangs abruptly ; does not type properly. Moreover, in some instances open apps peculiarly force quit without the screen being touched whatsoever.

    Hi, RomeroSalsa. 
    Thank you for visiting Apple Support Communities. 
    I understand that you are experiencing an issue with the responsiveness of your iPad mini while charging.  I would need a little more information on how you are charging the device to provide a better answer.  While the steps below are not exactly labeled for this issue, they may help resolve the issue.
    If the battery doesn’t charge
    If the battery doesn’t charge, unplug your device and try these steps:
    Look at the connector at the bottom of your device and make sure it’s free of debris.
    If you're using a USB power adapter, make sure it's plugged in all the way and the power outlet is working. If you're connecting to a computer, make sure it's on and can charge your device. To charge an iPad, you might need to use a USB power adapter and plug into a power outlet.
    Try a different USB cable, USB power adapter, or USB port.
    If everything seems to be working, reconnect your device and wait for 30 minutes.
    If your device still doesn’t charge, try to restart it while it's connected to power. If you can't restart, reset your device.
    If you can’t charge your iPhone, iPad, or iPod touch
    -Jason H. 

  • Java Swing App hangs on socket loop

    H}ello everyone i've run into a bit of a snag with my application, its a simple chat bot right now but will evolve into a chat client soon. I can't do that however since my app hangs when i look through the readLine() function to receive data and i dont know how to fix this error. The code is below.
    The doSocket() function is where the while loop is if anyone can help me with this i'd be very greatful.
    * GuiFrame.java
    * Created on August 13, 2008, 9:36 PM
    import java.net.*;
    import java.io.*;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    * @author  brian
    public class GuiFrame extends javax.swing.JFrame {
        /** Creates new form GuiFrame */
        public GuiFrame() {
            initComponents();
        Socket client_sock = null;
        PrintWriter out = null;
        BufferedReader in = null;
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                         
        private void initComponents() {
            convertButton = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Test Bot");
            convertButton.setText("Connect");
            convertButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    convertButtonActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(41, 41, 41)
                    .addComponent(convertButton)
                    .addContainerGap(42, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(22, 22, 22)
                    .addComponent(convertButton)
                    .addContainerGap(26, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
    private void convertButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             
        if (convertButton.getText()=="Connect") {
                    String old;
                    try {
                        client_sock = new Socket("www.spinchat.com", 3001);
                        out = new PrintWriter(client_sock.getOutputStream(), true);
                        in = new BufferedReader(new InputStreamReader(client_sock.getInputStream()));
                    } catch (UnknownHostException e) {
                    } catch (IOException e) {
                try {
                    doSocket();
                } catch (IOException ex) {
                    Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        } else if (convertButton.getText()=="Disconnect") {
            out.println("e");
            out.close();
            try {
                client_sock.close();
                in.close();
            } catch (IOException ex) {
                Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
    private void doSocket() throws IOException {
        BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
        String userInput;
        String old;
            while ((userInput = stdIn.readLine()) != null) {
                old = userInput;
                if (userInput != old) {
                    String proto = userInput.substring(0, 0);
                    if (proto == ":") {
                        out.println("{2");
                        out.println("BI'm a bot.");
                        out.println("aNICKHERE");
                        out.println("bPASSHERE");
                    } else if (proto == "a") {
                        convertButton.setText("Disconnect");
                        out.println("JoinCHannel");
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new GuiFrame().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton convertButton;
        // End of variables declaration                  
    }Edited by: briansykes on Aug 13, 2008 9:55 PM
    Edited by: briansykes on Aug 13, 2008 9:56 PM

    >
    ..i've run into a bit of a snag with my application, its a simple chat bot right now but will evolve into a chat client soon. >Is this intended as a GUId app? If so, I would stick to using a GUI for input, rather than reading from the command line (which when I run it, is the DOS window that jumps up in the BG - quite counterintuitive). On the other hand, if it is intended as a non-GUId or headless app., it might be better to avoid any use of JComponents at all.
    My edits stick to using a GUI.
    Other notes:
    - String comparison should be done as
    s1.equals(s2)..rather than..
    s1 == s2- Never [swallow exceptions|http://pscode.org/javafaq.html#stacktrace] in code that does not work.
    - Some basic debugging skills are well called for here, to find where the program is getting stuck. When in doubt, print out!
    - What made you think that
    a) a test of equality on a member against which you had just set the value to the comparator, would logically lead to 'false'?
    old = userInput;
    if (userInput != old) ..b) A substring from indices '0 thru 0' would provide 1 character?
    String proto = userInput.substring(0, 0);
    if (proto == ":") ..
    >
    ..if anyone can help me with this i'd be very greatful.>Gratitude is often best expressed through the offering of [Duke Stars|http://wikis.sun.com/display/SunForums/Duke+Stars+Program+Overview].
    * GuiFrame.java
    * Created on August 13, 2008, 9:36 PM
    import java.net.*;
    import java.io.*;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.swing.*;
    * @author  brian
    public class GuiFrame extends JFrame {
        /** Creates new form GuiFrame */
        public GuiFrame() {
            initComponents();
        Socket client_sock = null;
        PrintWriter out = null;
        BufferedReader in = null;
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            convertButton = new JButton();
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            setTitle("Test Bot");
            convertButton.setText("Connect");
            convertButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    convertButtonActionPerformed(evt);
            GroupLayout layout = new GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(41, 41, 41)
                    .addComponent(convertButton)
                    .addContainerGap(42, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(22, 22, 22)
                    .addComponent(convertButton)
                    .addContainerGap(26, Short.MAX_VALUE))
            pack();
            setLocationByPlatform(true);
        }// </editor-fold>
    private void convertButtonActionPerformed(java.awt.event.ActionEvent evt) {
        if (convertButton.getText()=="Connect") {
                    String old;
                    try {
                        System.out.println( "Connect start.." );
                        client_sock = new Socket("www.spinchat.com", 3001);
                        out = new PrintWriter(client_sock.getOutputStream(), true);
                        in = new BufferedReader(new InputStreamReader(client_sock.getInputStream()));
                        System.out.println( "Connect end.." );
                    } catch (UnknownHostException e) {
                        e.printStackTrace();
                    } catch (IOException e) {
                        e.printStackTrace();
                try {
                    doSocket();
                } catch (IOException ex) {
                    Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        } else if (convertButton.getText()=="Disconnect") {
            out.println("e");
            out.close();
            try {
                client_sock.close();
                in.close();
            } catch (IOException ex) {
                Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        private void doSocket() throws IOException {
            System.out.println( "doSocket start.." );
            String userInput;
            String old;
            userInput = JOptionPane.showInputDialog(this, "Send..");
            while(userInput!=null && userInput.trim().length()>0) {
                System.out.println( "doSocket loop 1.." );
                String proto = userInput.substring(0, 1);
                System.out.println("proto: '" + proto + "'");
                if (proto.equals(":")) {
                    System.out.println("Sending data..");
                    out.println("{2");
                    out.println("BI'm a bot.");
                    out.println("aNICKHERE");
                    out.println("bPASSHERE");
                } else if (proto.equals("a")) {
                    convertButton.setText("Disconnect");
                    out.println("JoinCHannel");
                userInput = JOptionPane.showInputDialog(this, "Send..");
            System.out.println( "doSocket end.." );
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new GuiFrame().setVisible(true);
        // Variables declaration - do not modify
        private JButton convertButton;
        // End of variables declaration
    }

  • 10.6 -- All Office 2008 apps hang at splash screen. FontCache Tool runaway

    Did an upgrade of 10.5 to 10.6. Nearly everything works fine. Can't launch Office 2008. All apps hang at their splash screen; usually at Optimizing Font Menu Performance.
    Once an app is opened, in Activity viewer you'll find a process called FontCache Tool using >90% of the CPU (on my Core Duo MBP at least, YMMV). I suppose it's saying a lot about 10.6 that the computer is completely usable with that runaway process. Even after forcing the office app(s) to quit, Font Cache Tool stays running until it's killed manually.
    I have yet to find out if FontCache Tool is an Apple or MS process. I think it's microsoft.
    This happens under multiple users.
    This happens after reinstalling Office.
    This was an Office 2008 upgrade from Office 2004.
    After reinstall, and installing Rosetta, office 2004 will run, but office 2008 will not.
    Office 2008 is 12.2.1.
    I am running FontAgent Pro for font management, and so font book sees certain activated fonts as duplicates. (Validate fonts shows duplicate warnings but no errors). FontAgent Pro 4.0.3 is listed as Snow Leopard compatible. So is Office 2008.
    I have yet to do a clean SL install, which I'm guessing will fix it, but I'm curious if there is a sub-sledgehammer approach, or if I am the only person with this issue.
    Other probably irrelevant facts include that the computer is bound to both Active Directory and OS X OpenDirectory servers. Open Directory is running on Leopard 10.5 Server. It does have some managed preferences, including those for Office (e.g. to set default to .doc rather than .docx) but the situation persists even after removing those managed preferences.
    Normally really specific problems are easy to isolate and solve, but I'm at a loss.
    Any help appreciated
    keppie

    Hey i think i figured it out.
    Had the same prob. 10.6 12.2.1 entourage hanging.
    Renamed FCT, instantly prompted that a font was corrupt. Removed the corrupt Font: KufiStandardGK.ttf << this just happened to be my one corrupt font.
    A little troubleshooting i did leading up to this, I read your post and my situation was the same. I use Linotype X to manage fonts. I disabled all but the minimum fonts (i moved them into a folder font_trouble in the same folder)
    I also deleted every office pref/plist setting i thought relevant to startup which triggered the microsoft setup assistant (watched via the console app) and it ran through its check and then immediately the fontcachetool started and went awol on cpu time. Once i killed it--during the starting up of word and entourage... timing may be unrelated but i did them at nearly the same time.
    Ps. Your post was extremely well written and I apologize for my stream of consciousness, less than stelllar response... hope this helps if not feel free to ping me for more details on what I did...
    Good Luck.. All my office apps are running normally now.

  • App hang up when opening cc files?

    Are there any others having issues with opening InDesign CC files where the app hangs up and you have to force quite and restart it? This is happening way too often for me and I'm suspicious that it might have to do with Suitcase. Any help would be greatly appreciated. I've already had to force quit 3 times today. Thanks!

    Sorry if this is posted in the wrong forum
    Office questions should be posted on Microsoft's own forums for their Mac products:  http://www.officeformac.com/productforums

  • Adobe apps hang after upgrade to Yosemite

    Adobe apps hang after upgrade to Yosemite - requires force quit and reopen...any advice?

    thanks, Kurt...we'll see...I upgraded to Yosemite so I could load the newer Adobe CC anyway - I'll upgrade the suite to the cloud and see what happens

  • Mail.app hang due to postgresql permissions?

    I did a time machine restore, and all is fine except I can't use mail.app.  The app hangs before the GUI loads. The console is reporting this (over and over again):
    org.postgresql.postgres: 2011-07-21 08:40:56 EDT FATAL:  could not create log file "/Library/Logs/PostgreSQL.log": Permission denied
    com.apple.launchd: (org.postgresql.postgres[912]) Exited with code: 1
    So it seems mail.app can't use its database, due to a change in user-group permissions?  How can I repair this without resorting to a clean reinstall of Lion?

    Hi,
    I tried to bind my OD Lion server with the Directory Utility to OD itself so to the local database. Bad idea and the only way getting server up and running again was to restore TIme Machine Backup.
    After the restore Profile Manager did not work anymore (Error reading config). With the two lines mentioned here in the threat I was able to fix this problem:
    sudo touch /Library/Logs/PostgreSQL.log
    sudo chown _postgres:admin /Library/Logs/PostgreSQL.log
    I don't know what I would have done without that. I have to say I'm using Mac only for a few months now but problems with Windows machines are really nothing compared with what Mac OS is causing. It's a real disapointment for such an amount of money. Maybe Windows does not look that nice and fancy but behind the scenses there is at least good engeneering. Sorry for that lines. They don't belong here I'm just quite upset about this OS. Time Machine has saved me now two times from a absolute disaster by executing operating system tasks.

  • LOB apps hanging on install from Company Portal

    Hi,
    We're having issues with LOB (.appx) app installs from the Company Portal.  We're strictly using Intune for LOB app deployment to Win8.1 Enterprise devices.  When users attempt to install a LOB app, it just hangs at installing.  We've tried
    stopping the Intune service, rebooting, even quitting the Company Portal app, but nothing will either kickstart the install or stop it so they can try again.
    If there are multiple requests for the same app via the Company Portal (say 100-200) at around the same time, will the installs be done on a staggered basis, and it's just a matter of timing?
    I appreciate any insight here.

    As you seem not to have an answer for this. From my experience with Windows devices, if an app hangs on install, it has failed but not realised it. It may be something like a config file where it does not understand or is unable to process what to do and
    is unable to skip the step.
    I would normally suggest a local test as admin but cannot advise with appx unfortunately.
    Hope that helps.

  • Logic Pro 9 won't save, hangs and quits??

    I have just installed the latest software Logic Pro 9 with the latest update.
    It won't save it hangs and quits??
    Dean

    First of all, you are still in Learn Mode, as the button on the bottom right is still darkened. Click it so it becomes lighter, meaning learn mode is no longer active. Then proceed to delete all the assignments, in your screenshot I can see the top message is assigned to A#1 (look at the "input Message" values on the right). But the rest of the assignments do not look like you conciously made them, it's a bit of a mess. You should be aware that cmd-L opens the CA-window, and engages Learn Mode, meaning that whatever is the very first MIDI message you send will be "learnt" as a controller assignment, and it will no longer be availbale as regular MIDI. That's how notes can "disappear" if you're unaware of this function. To open the CA window without engaging Learn Mode, use cmd-K.
    (and clicking on the smaller picture will present the full size picture, no need to add that extra link.)
    http://documentation.apple.com/en/logicpro/controlsurfacessupport/index.html#cha pter=2%26section=0

  • Camera App Hangs On Startup

    Hi,
    the camera app hangs when I start it up. The shutter doesn't open (I can switch to the camera roll and view photos though). I tried restore twice, doesn't help. Sounds like a hardware issue to me!?
    Anyone else experienced something like this?
    Chris

    I forgot to post back with the results of my trip to the Apple Store. The tech restarted the phone with boot diagnostics which reported no camera present. His first thought was that the camera cable might have wiggled loose. He popped the cover, reseated the camera cable, and rebooted. Same result: no camera present. He deemed it faulty hardware and replaced the phone. I'm not sure how to access the boot diagnostics (Google probably knows), but it might be worth seeing if the camera hardware is detected. Hope this helps.

  • App hangs on tab click if connection in use

    If tab one is using connection1 and running a script and i click on tab2 which is also connected using connection1, the app hangs until tab1 finishes the script it was running and connection1 is again free.
    Shouldnt each tab really open a new connection with the same parameters as the connection from the connections list? If not then it should at least not let you select any tabs using connection1 while connection1 is busy so that you can continue working on tabs with other connections.
    I am using 1.5.0.53 on windowsxp.
    Thanks

    By default, all worksheets use the same single threaded connection. To get a worksheet with an unshared connection, use ctrl-shift-N

  • App Hangs in 3 consecutive days

    Hi all,
    11.2.0.1
    Aix 6.1
    Our database & app hangs for the first time, 3 consecutive days (Aug 11,12,13)  during run of batch jobs at 12AM.
    The batch operator said the batch job is deleting a table with only less than 1000 rows but was not able to lock the table as there lots of updates queues from lots of client app.
    I check the alert log for the said time period and this is the output. I saw similar occurences at 1AM
    Tue Aug 13 01:20:45 2013
    Clearing standby activation ID 2855092487 (0xaa2d4107)
    The primary database controlfile was created using the
    'MAXLOGFILES 16' clause.
    There is space for up to 10 standby redo logfiles
    Use the following SQL commands on the standby database to create
    standby redo logfiles that match the primary database:
    ALTER DATABASE ADD STANDBY LOGFILE 'srl1.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl2.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl3.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl4.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl5.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl6.f' SIZE 262144000;
    ALTER DATABASE ADD STANDBY LOGFILE 'srl7.f' SIZE 262144000;
    Tue Aug 13 02:00:00 2013
    Closing scheduler window
    Closing Resource Manager plan via scheduler window
    Clearing Resource Manager plan via parameter
    Tue Aug 13 04:36:07 2013
    WARNING: Heavy swapping observed on system in last 5 mins.
    pct of memory swapped in [9.53%] pct of memory swapped out [23.33%].
    Please make sure there is no memory pressure and the SGA and PGA
    are configured correctly. Look at DBRM trace file for more details.
    Tue Aug 13 05:07:14 2013
    Thread 1 cannot allocate new log, sequence 49033
    Private strand flush not complete
    AlertSunday Aug 11
    https://app.box.com/s/6ut7uk0o5y6tg2sjfzvn
    AlertMonday Aug 12
    https://app.box.com/s/gafa2d1ngn7hpen6tfky
    AlertTuesday Aug 13
    https://app.box.com/s/o5v5gtul1mr3yra6vbgj
    Do you have any idea what causes tha hang? Its weird because these did not happened before.
    Please help...
    Thanks a lot,
    zxy

    Thanks,
    Does these ASH, & AWR reports shows anything?
    ASH
    https://app.box.com/s/bmuafe2y39mzo036bbij
    https://app.box.com/s/jdfv3uauwhp7tttvqlig
    https://app.box.com/s/7r0sej0r77n3jay7n1fd
    AWR
    https://app.box.com/s/fdyx0rare2tskd291f1w
    https://app.box.com/s/0pd4u7kzt0p10rhgnivq
    https://app.box.com/s/sjotdxe57pssjitabrj2
    Thanks,

  • Yosemite mail.app hang

    I just upgraded to Yosemite and have found that Mail.app hangs. I would open it and 10 or 15 seconds later it would hang. I would get a spinning beach ball and Mail was listed as not responding in Activity Monitor.
    I was able to narrow down the problem to one account. The account works in Thunderbird on the same Mac, so I don't think the account is a problem.
    Any ideas how and can trouble shoot this, or otherwise diagnose and fix the problem?

    Hi railmeat,
    Sounds like you may be experiencing an issue with your Mail app. I would like to recommend that you use this article as a reference for troubleshooting this issue further:
     OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Apps hanging up in iTunes

    I have several iOS apps that seem to hang up now when downloading the update in iTunes. Each update downloads and then hangs at the last stage when it is "processing file".  Once 3 apps hang, the other apps waiting to download stop downloading. Anyone else experiencing this?  Any ideas?

    Is your last screen on your iPod Touch 3G supposed be page 12? It appears that you may have a lot of apps and the number of display screen/pages is above 11. iPod Touch 3G can only display up to 11 pages of apps. Your 12th page is shown in iTunes however dimmed.
    Let me know if I am correct on your assessment. If not then we have something else at hand.
    Axel F.

Maybe you are looking for

  • Saving a report generated pdf file on to report server

    Hi, This is a question regarding web access of Oracle Reports. I am generating a report through web by typing an url like this: http://chfux102.ems.allied.com:8100/cgi/oreports/run?chflims+destype=file+desname=./section1.pdf+report=COA_PF.rdf+desform

  • Airplay Unknown error message (-15008)

    Hi, I'm using an airplay speaker Philips_Fidelio 049A2C but getting the error message when trying to connect through Itunes on macbook pro. Does anyoneknow the solution for this please?

  • Download to excel in background

    Hi I want to download data to Excel as a background job. Are there any FM's that can be used for the same. I can not use GUI_DOWNLOAD in this case. I am working on a CRM5.0 system. Any pointers on the same would be really helpful. Regards Avinash

  • SAP BW Installation Error - Please Help

    Hello Everyone, I'm trying to install SAP SEM BW 7.00 in one of the servers that we have. During installation, In the Installation Master I'm selecting the central system from the following SAP NetWeaver 2004s Support Release 2 > SAP Systems > MS SQL

  • How to update equipment ship to party and sold party data

    Hi all, How to update equipment ship to party and sold party data? Is there any BAPI or FM?