Long delay on KDE login caused by Pulseaudio

Hi all,
I am experiencing an annoying delay after logging into KDE. This happened very recently, where I moved to pure systemd and upgraded kde (I am not sure what the exact cause is). It looks like https://bbs.archlinux.org/viewtopic.php?pid=1157890, but instead of not starting, I get a long delay.
Example:
timestamp 0 - login
timestamp 8 - desktop is loaded partially and startup freezes
timestamp 33 - loading the desktop continues
This is very reproducable, I logout and login again - the issue repeats with the same times. I have isolated the problem to /usr/bin/start-pulseaudio-x11, line:
/usr/bin/pactl load-module module-x11-xsmp "display=$DISPLAY session_manager=$SESSION_MANAGER" > /dev/null
Stracing it shows that it freezes after sending the load-module command to pulseaudio over the native socket in /tmp/pulse-XXX/native and waiting for a response. This takes about 25 seconds, the same as in the example above.
The above timestamp tests have been performed by adding the next to ~/.bash_profile:
if mkdir /tmp/checks 2>/dev/null; then
for ((i=0; i<=40; i++)); do
[ -d /tmp/checks ] || break
p=00$i
p=${p:0-2}
ps xww -o user,pcpu,cmd >> /tmp/checks/$p-ps
cp $HOME/.xsession-errors /tmp/checks/$p-xe
sleep 1
done
fi &
I then use the next to check the differences between two ps outputs (after using wc -l to count the lines in the files and using `date -r XX-ps` to check the timestamp):
read a b; colordiff -u <(sed 's/[0-9]\.[0-9]//' $a-ps) <(sed 's/[0-9]\.[0-9]//' $b-ps)|less -r
Similar to http://lists.fedoraproject.org/pipermai … 11721.html which appears to be solved, but not for me.
Does anyone else experience this issue? Any solutions?
System is up-to-date, KDE 4.9.1, pulseaudio 2.1, systemd, laptop.
Edit: the problem occured since I patched kdm to set XAUTHORITY (not sure if that is related), after replacing with the original kdm binary, the issue seems to be gone is still existent.
Last edited by Lekensteyn (2012-09-16 20:50:27)

Well yes, that just avoids the issue by preventing start-pulseaudio-x11 from starting. I'll try that workaround until a real solution shows up. Thanks for your reply.
I'll try this patch from Ubuntu quantal does not seem to work:
From b4389a752385afd6e65e412a8488828ee3648fbd Mon Sep 17 00:00:00 2001
From: Zsolt Rizsanyi <[email protected]>
Date: Sun, 27 Jun 2010 15:16:13 +0100
Subject: [PATCH 2/2] In KDE only start pulseaudio from the KDE specific desktop file
src/daemon/pulseaudio.desktop.in | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/daemon/pulseaudio.desktop.in b/src/daemon/pulseaudio.desktop.in
index 99bdbd0..47b2eb4 100644
--- a/src/daemon/pulseaudio.desktop.in
+++ b/src/daemon/pulseaudio.desktop.in
@@ -6,5 +6,6 @@ _Comment=Start the PulseAudio Sound System
Exec=start-pulseaudio-x11
Terminal=false
Type=Application
+NotShowIn=KDE;
Categories=
GenericName=
Creating an empty ~/.config/autostart/pulseaudio.desktop overrides the one in /etc/xdg/ and seems to work.
Last edited by Lekensteyn (2012-09-16 22:21:58)

Similar Messages

  • Clearing recent history causes very long delay with message "a script has stopped responding"

    When I take option to "Clear Recent History" from tools dropdown, there is a very long delay EVERY TIME, followed by this message:
    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: chrome://browser/content/sanitize.js:136
    This happens even when Javascript has been disabled. This problem first appeared just after installing Firefox version 4.0
    I can proceed to "Clear Recent History" only by again clicking that option after taking option to stop non responding script.

    I have resolved the problem (for now) by uninstalling Firefox 4.0 and reinstalling Firefox 3.6. When 4.1 becomes available I will try 4 again.

  • Intermittent very long delay before login available

    Windows 7 64 - SP1 fully updated.
    I have a few remaining Windows 7 desktops in my Domain.  Ocassionally (have not found a pattern) the user will boot up the computer or come back from lunch and try to unlock their computer.  The computer will go to a blank blue screen but no username
    or password field will display.  The mouse is responsive.   After a very long delay the credential fields will display and the user can log in.  This delay can be 20 mins or more.   This seems to happen to the same computers but
    only occasionally.  Sometimes a forced reboot is required.  After reboot the system usually works as expected.
    When searching for this issue and resolutions to it, I don't seem to find this exact issue - or I am not wording it correctly in a search.
    If this happened consistently, I would probably repair, or wipe and restore the system.   I am not seeing anything in the event log that would be related.
    I look forward to your advice.
    Fred Zilz

    Hi Fred,
    Since the delay occurred before your input the credential. It's not related with domain.
    Let's aim at the Windows 7 computer itself. Generally, it should be the winlogon process cannot load successfully.
    Did you use Aero theme?
    If yes, try disabling the Aero theme and use the Windows 7 Basic layout.
    Meanwhile, logon with the local administrator and perform a clean boot to see if there is some other service conflict:
    How to perform a clean boot in Windows
    http://support.microsoft.com/kb/929135
    Also disconnect all network and all external hardware to check if it occurs again.
    Karen Hu
    TechNet Community Support

  • Long delay when loading shell

    we have 2 test servers here we are using for one of our clients. In theory, both are configured the same, but we are experiencing a long delay (2 or 3 minutes) when login on to the machine.
    We get the delay when the shell is attempting to load. We get this issue if we login via ssh or if we do su - difuser.
    su difuser does not cause the delay.
    I've read about commenting out /usr/sbin/quota in /etc/profile, but that's not really an option for us.

    We found the issue and why un-commenting quota fixed it.
    We had a dead NFS mount. When the quota engin tried to check the quota on it, it would take forever to fail.

  • Long delay during first resize of visible JFrame (help!)

    I need to increase the size of a component in a visible JFrame (and with it the size of the frame itself). The way I did this using jdk 1.3.1 causes a problem in 1.4.0 and 1.4.1.
    When a component in a visible JFrame (such as a JPanel) is resized - using a setPreferredSize()-pack() sequence, there is a VERY long delay (~ 5 seconds) before the frame is fully redrawn. This only occurs the FIRST time the component is resized. Subsequent setPreferredSize()-pack() sequences take a reasonable amount of time.
    Here's a simple example:
    import java.awt.*;
    import javax.swing.*;
    public class PackDelayTest extends JFrame {
        JPanel pan;
        int width;
        static long tm;
        public static void main(String[] argv) {
                tm = System.currentTimeMillis();
            PackDelayTest2 test = new PackDelayTest();
                elapsed("in constructor");
            test.replace(); elapsed("repack 1");
            test.replace(); elapsed("repack 2");
            test.replace(); elapsed("repack 2");
            test.replace(); elapsed("repack 2");  
            System.exit(0);
        public PackDelayTest() {
            pan = new JPanel();
            pan.setLayout(new BoxLayout(pan,BoxLayout.Y_AXIS));
            getContentPane().add(pan);        
            JLabel label = new JLabel("Label 0");
            pan.add(label);  
            pack();
            setVisible(true);
            width = pan.getPreferredSize().width;
        public void replace() {            
           Dimension d = pan.getPreferredSize();
           pan.setPreferredSize(new Dimension(++width,d.height));     
           pack();
        static void elapsed(String mess) {
            long ct = System.currentTimeMillis();
            System.out.println("Elapsed milliseconds, " + mess + ": " +
                               (ct - tm));
            tm = ct;
    }Running this with Sun jdk 1.3.1 yields the timings:
    Elapsed milliseconds, in constructor: 2226
    Elapsed milliseconds, repack 1: 26
    Elapsed milliseconds, repack 2: 24
    Elapsed milliseconds, repack 2: 25
    Elapsed milliseconds, repack 2: 24Running the same code with jdk 1.4.1_0 yields
    Elapsed milliseconds, in constructor: 1773
    Elapsed milliseconds, repack 1: [bold]5747[/bold]
    Elapsed milliseconds, repack 2: 32
    Elapsed milliseconds, repack 2: 7
    Elapsed milliseconds, repack 2: 1Note the FIVE SECOND delay during the first setPreferredSize()- pack() sequence.
    This problem also occurs with 1.4.0, Blackdown 1.4.1 and IBM 1.4.0, so presumably it is something in Sun's 1.4 code.
    The only way I've found to avoid the initial delay is to set frame invisible
    before the setPreferredSize(), pack() sequence and visible afterwards. But of course this makes the window 'flash' and is very unplesant for users.
    I've looked at the source for pack() but it hasn't gotten me anywhere. If anyone has an idea about fixing this problem or working around it, I'd appreciate hearing about it.
    FYI I ran these tests under Linux, vanilla installations of SuSE 8.0 and 8.1
    Thanks,
    bw

    It turns out that this problem occurs under SuSE (8.0 and 8.1) but NOT under Redhat 8.0
    I do NOT understand how this is possible, but it is the case. Has anyone encountered any SuSE specific problems?
    fyi I've reproduced the problem on two rather different i386 machines (an AMD k7 and a Pentium III thinkpad), so it certainly doesn't have anything to do with hardware.
    bw

  • For installing software packages, long delay in recognizing startup disk

    I have found that any time I install software using an installer package (e.g. flip4mac) on my iMac, there is a long delay before my startup disk is recognized as a valid installation location. All of the other drives are evaluated immediately, but I'd say it's about 20 seconds before I get the option of my startup disk (green arrow pointing down at a picture of a hard drive).
    Does anyone know what is causing this and how I might alleviate the problem? It's annoying, and I wonder if it's a sign of some deeper problem.
    I do have a bootcamp partition that I rarely use, and I have an external USB drive that I use for time machine backups.

    The more external storage devices you have connected to your computer the longer it's going to take to for your computer to evaluate which volumes it can install on. Short of dismounting the external HD's first this is the price you will be paying for all the external devices. BTW I'm in the same boat, I have 3 EHD's daisy chained together using FW 800.

  • Problem With Listener Service: Long Delay Starting Listener, Intermittent Connections

    I am having trouble connecting to my Oracle database.  I'm not sure what the cause was, but now when I connect to a database that has been working fine for the past two years, I usually get a ORA-12541 error.
    I run lsnrctl status on the server and get a prinout like this:
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=dqaswn02)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
      TNS-00511: No listener
       64-bit Windows Error: 61: Unknown error
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
      TNS-00511: No listener
       64-bit Windows Error: 2: No such file or directory
    I've also tried manually stopping the service via services.msc and then restarting via lsnrctl start, but when I do this I get a really long delay (10+ minutes) before it returns with something like:
    TNS-01153: Failed to process string: 0í≈♥
    I'm pretty lost as to what is wrong.  I've been messing around with listener.ora, but I don't see anything problematic in there.  Here's a copy:
    # listener.ora Network Configuration File: E:\app\myc0714\product\11.2.0\dbhome_1\NETWORK\ADMIN\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = E:\app\myc0714\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:E:\app\myc0714\product\11.2.0\dbhome_1\BIN\OraClr11.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = TCP)(HOST = dqaswn02)(PORT = 1521))
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    # ADR_BASE_LISTENER = E:\app\myc0714
    LOG_FILE_LISTENER = LISTENER
    TRACE_LEVEL_LISTENER = SUPPORT
    TRACE_FILE_LISTENER = LISTENER
    However, a few times during this I've been able to connect to the server, via sqlplus, but it has taken 10 minutes before the connection comes online.  Once I'm connected, I can query my tables as expected, but I need an application to connect.
    If anyone has any ideas on what could be wrong, please let me know.

    When I opened up netca, I didn't have any listeners configured, which seems very strange.  When adding it, I get this message in the cmd window:
    Oracle Net Services Configuration:
    Configuring Listener:LISTENER
    ServiceAliasException: Could not save Service Alias: TNS-04406: Object already e
    xists
    Default local naming configuration complete.
    Listener configuration complete.
    Oracle Net Listener Startup:
        Running Listener Control:
          E:\app\myc0714\product\11.2.0\dbhome_1\bin\lsnrctl start LISTENER
        Listener Control complete.
        Listener start failed.
    I killed the service via services.msc again and tried starting the lsnrctl.  This time I've got a new listening service going:
    Starting tnslsnr: please wait...
    TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Production
    System parameter file is E:\app\myc0714\product\11.2.0\dbhome_1\network\admin\li
    stener.ora
    Log messages written to e:\app\myc0714\diag\tnslsnr\DQASWN02\listener\alert\log.
    xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DQASWN02.petroleumplace.
    com)(PORT=1521)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521
    ipc)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=DQASWN02.petroleumplace.
    com)(PORT=1521)))
    TNS-01153: Failed to process string: X☺∙♥
    I just tried starting the trace.  I'm waiting for it to connect, I guess.  I'll post anything I get out of it when it returns.

  • [SOLVED]Long delay opening files if multiple selection in file chooser

    neok wrote:
    Hi,
    When I try to open several files in an application, (example: Gimp), by multiple selection in the 'open' filechooser, there is a long delay (about 1 sec per file) before the Gimp starts opening image files. During this delay, the disk access LED flashes continuously and iotop indicates that its jbd2 accessing (writing) on the / partition on my SSD drive. This is despite the fact that the image files are on an external USB hard disk and the Gimp would have no reason to write anything on the / partition. Even if it did, the image files are small (50-100 kb) and such a long delay would be out of place.
    The significant thing is that the delay occurs _before_ the Gimp starts opening files. It seems the delay is in the filechooser making a list of the files to be opened. Once the Gimp starts opening files, it finishes quickly.
    This sort of thing happens with other apps that can open several files by multiple selection in a filechooser.
    Any hints please? I am lost here :-(
    The delay is caused by (apparently) GTK which writes to the ~/.local/share/recently-used.xbel file, to record all the files that are opened in the multiple selction. Even so, this writing seems too slow, even when opening a large number of files (the ones that I open by multiple selection, by an app that I am working on, are about 10k each, so opening a few hundred should not take the delay I see, about 30 sec).
    Anyhow, I patched the problem eventually by chattr +i ~/.local/share/recently-used.xbel to stop the writing. But I would prefer to disable the use of this file by configurtion rather than brute force, if there is such a choice.
    Last edited by neok (2012-03-13 04:55:31)

    neok wrote:
    Hi,
    When I try to open several files in an application, (example: Gimp), by multiple selection in the 'open' filechooser, there is a long delay (about 1 sec per file) before the Gimp starts opening image files. During this delay, the disk access LED flashes continuously and iotop indicates that its jbd2 accessing (writing) on the / partition on my SSD drive. This is despite the fact that the image files are on an external USB hard disk and the Gimp would have no reason to write anything on the / partition. Even if it did, the image files are small (50-100 kb) and such a long delay would be out of place.
    The significant thing is that the delay occurs _before_ the Gimp starts opening files. It seems the delay is in the filechooser making a list of the files to be opened. Once the Gimp starts opening files, it finishes quickly.
    This sort of thing happens with other apps that can open several files by multiple selection in a filechooser.
    Any hints please? I am lost here :-(
    I re-installed and reconfigured Arch so that I now have a fresh, uptodate system. In the process, I found that this problem occurs when I run the Gimp as a normal user. If I run it under sudo, all is well. I am strggling to find out why, but no results so far (have checked file permissions where I thought there may be a problem, but no joy).
    Any hints much appreciated.

  • Long delay when sending non-btinternet mail

    We are using Outlook Express/Windows mail client, and there is a long long delay when sending mail.
    It just hangs saying "Connecting..." in the status bar. Receiving email has no problems.
    Eventually it sometimes works or sometimes just times out.
    The smtp server is not btinternet/yahoo but our own email server, which we have been using for 10 years. There is no problem pinging the smtp server. e.g. smtp.ourserver.net
    It works without delays on other (non BT) home/business networks.
    We have tried plugging other laptops into this home network and trying to send email (to the same mail server) - same problem.
    It therefore seems to be peculiar to a BT Hub or BT as the ISP.
    The problem seems to have first appeared when an upgrade was made to cater for future fibre optic services.
    Any help would be greatly appreciated.

    Today I started from my Firewire-device with 10.4.11 and had ichat running from there. I chatted with my friend, who is on 10.5.1 - no problems at all. (so my router is not causing the problem, as I thought)
    Starting from 10.5.1 again I opened up Activity Monitor and found this message every 10 secs !
    25.12.07 25.12. 15:18:29 com.apple.launchd[138] (at.obdev.LittleSnitchUIAgent[654]) Exited with exit code: 1
    25.12.07 25.12. 15:18:29 com.apple.launchd[138] (at.obdev.LittleSnitchUIAgent) Throttling respawn: Will start in 10 seconds
    25.12.07 25.12. 15:18:39 com.apple.launchd[138] (at.obdev.LittleSnitchUIAgent[655]) posix_spawnp("/Library/Little Snitch/Little Snitch UIAgent.app/Contents/MacOS/Little Snitch UIAgent", ...): No such file or directory
    I remember that I installed Little snitch some time ago and removed it manually. Then today I run the official uninstaller for it. Still I cannot get rid of this activity. May be it has to do something with the text delay in ichat? How to delete all Little Snitch processes? How can someone find these data?
    Thanks for Feedback

  • Long delay between send button and actual send in mail

    When sending messages in mail, there is a long delay between the time I hit the send button and the actual sending begins.  Message and attachment size have no bearing.  The delay is usually about 30 seconds, but sometimes longer.

    There was info in the detail window when I opened it.  Also, it was not immediately connecting to the server, but when I clicked back on the regular mail window to send a test message, the server connected instantly.  Below is all that was in the details window:
    CONNECTED Jan 19 11:45:53.387 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46ed49310 -- thread:0x1032788a0
    READ Jan 19 11:45:53.601 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46ed49310 -- thread:0x1032788a0
    * OK [CAPABILITY st11p00mm-iscream023 1M XAPPLEPUSHSERVICE IMAP4 IMAP4rev1 SASL-IR AUTH=ATOKEN AUTH=PLAIN] iSCREAM ready to rumble (1M:12460) st11p00mm-iscream023
    WROTE Jan 19 11:45:53.756 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46ed49310 -- thread:0x7fc46d52ec20
    1.39 AUTHENTICATE ATOKEN MTY2MDIwMDk3ADE2NjAyMDA5NwBBUUFBQUFCUSt2ZmVHNVNBMGNLbDBsRElwQkdkc0hXNk9mdnFNVWM 9
    READ Jan 19 11:45:53.844 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46ed49310 -- thread:0x7fc46d52ec20
    1.39 OK [CAPABILITY XAPPLEPUSHSERVICE IMAP4 IMAP4rev1 ACL QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH LANGUAGE ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES CONDSTORE ENABLE CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES XSENDER X-NETSCAPE XSERVERINFO X-SUN-SORT ANNOTATE-EXPERIMENT-1 X-UNAUTHENTICATE X-SUN-IMAP X-ANNOTATEMORE XUM1 ID IDLE] User jfbohn1 logged in
    WROTE Jan 19 11:45:53.857 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46ed49310 -- thread:0x7fc46bd56e40
    2.39 ID ("name" "Mac OS X Mail" "version" "5.3 (1283)" "os" "Mac OS X" "os-version" "10.7.5 (11G63)" "vendor" "Apple Inc.")
    READ Jan 19 11:45:53.925 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46ed49310 -- thread:0x7fc46bd56e40
    * ID NIL
    2.39 OK Completed
    WROTE Jan 19 11:45:53.929 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46ed49310 -- thread:0x7fc46be61a30
    3.39 LIST "" ""
    READ Jan 19 11:45:53.996 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46ed49310 -- thread:0x7fc46be61a30
    * LIST (\Noselect) "/" ""
    3.39 OK Completed
    WROTE Jan 19 11:45:54.002 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46ed49310 -- thread:0x7fc46bd56e40
    4.39 LOGOUT
    CONNECTED Jan 19 12:33:43.623 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46d262650 -- thread:0x7fc46edb9cd0
    READ Jan 19 12:33:43.837 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46d262650 -- thread:0x7fc46edb9cd0
    * OK [CAPABILITY st11p00mm-iscream029 1M XAPPLEPUSHSERVICE IMAP4 IMAP4rev1 SASL-IR AUTH=ATOKEN AUTH=PLAIN] iSCREAM ready to rumble (1M:4364) st11p00mm-iscream029
    WROTE Jan 19 12:33:43.995 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46d262650 -- thread:0x7fc46ea98e90
    1.43 AUTHENTICATE ATOKEN MTY2MDIwMDk3ADE2NjAyMDA5NwBBUUFBQUFCUSt2ZmVHNVNBMGNLbDBsRElwQkdkc0hXNk9mdnFNVWM 9
    READ Jan 19 12:33:44.088 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46d262650 -- thread:0x7fc46ea98e90
    1.43 OK [CAPABILITY XAPPLEPUSHSERVICE IMAP4 IMAP4rev1 ACL QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH LANGUAGE ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES CONDSTORE ENABLE CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES XSENDER X-NETSCAPE XSERVERINFO X-SUN-SORT ANNOTATE-EXPERIMENT-1 X-UNAUTHENTICATE X-SUN-IMAP X-ANNOTATEMORE XUM1 ID IDLE] User jfbohn1 logged in
    WROTE Jan 19 12:33:44.093 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46d262650 -- thread:0x7fc46d229320
    2.43 ID ("name" "Mac OS X Mail" "version" "5.3 (1283)" "os" "Mac OS X" "os-version" "10.7.5 (11G63)" "vendor" "Apple Inc.")
    READ Jan 19 12:33:44.162 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46d262650 -- thread:0x7fc46d229320
    * ID NIL
    2.43 OK Completed
    WROTE Jan 19 12:33:44.167 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46d262650 -- thread:0x7fc46d229320
    3.43 LIST "" ""
    READ Jan 19 12:33:44.235 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46d262650 -- thread:0x7fc46d229320
    * LIST (\Noselect) "/" ""
    3.43 OK Completed
    WROTE Jan 19 12:33:44.241 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46d262650 -- thread:0x7fc46ea98e90
    4.43 LOGOUT
    CONNECTED Jan 19 12:34:12.742 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46edb7cf0 -- thread:0x7fc46d2e4d20
    READ Jan 19 12:34:12.957 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46edb7cf0 -- thread:0x7fc46d2e4d20
    * OK [CAPABILITY st11p00mm-iscream020 1M XAPPLEPUSHSERVICE IMAP4 IMAP4rev1 SASL-IR AUTH=ATOKEN AUTH=PLAIN] iSCREAM ready to rumble (1M:32403) st11p00mm-iscream020
    WROTE Jan 19 12:34:13.116 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46edb7cf0 -- thread:0x7fc46edc5c40
    1.44 AUTHENTICATE ATOKEN MTY2MDIwMDk3ADE2NjAyMDA5NwBBUUFBQUFCUSt2ZmVHNVNBMGNLbDBsRElwQkdkc0hXNk9mdnFNVWM 9
    READ Jan 19 12:34:13.204 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46edb7cf0 -- thread:0x7fc46edc5c40
    1.44 OK [CAPABILITY XAPPLEPUSHSERVICE IMAP4 IMAP4rev1 ACL QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH LANGUAGE ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES CONDSTORE ENABLE CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES XSENDER X-NETSCAPE XSERVERINFO X-SUN-SORT ANNOTATE-EXPERIMENT-1 X-UNAUTHENTICATE X-SUN-IMAP X-ANNOTATEMORE XUM1 ID IDLE] User jfbohn1 logged in
    WROTE Jan 19 12:34:13.211 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46edb7cf0 -- thread:0x7fc46d56a3d0
    2.44 ID ("name" "Mac OS X Mail" "version" "5.3 (1283)" "os" "Mac OS X" "os-version" "10.7.5 (11G63)" "vendor" "Apple Inc.")
    READ Jan 19 12:34:13.280 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46edb7cf0 -- thread:0x7fc46d56a3d0
    * ID NIL
    2.44 OK Completed
    WROTE Jan 19 12:34:13.287 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46edb7cf0 -- thread:0x7fc46ed7ba30
    3.44 LIST "" ""
    READ Jan 19 12:34:13.355 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46edb7cf0 -- thread:0x7fc46ed7ba30
    * LIST (\Noselect) "/" ""
    3.44 OK Completed
    WROTE Jan 19 12:34:13.363 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:p02-imap.mail.me.com -- port:993 -- socket:0x7fc46edb7cf0 -- thread:0x7fc46d56a3d0
    4.44 LOGOUT
    CONNECTED Jan 19 12:34:58.696 [kCFStreamSocketSecurityLevelNone]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    READ Jan 19 12:34:58.763 [kCFStreamSocketSecurityLevelNone]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    220 st11p02mm-asmtp003.mac.com -- Server ESMTP (Oracle Communications Messaging Server 7u4-24.01(7.0.4.24.0) 64bit (built Jan  3 2012))
    WROTE Jan 19 12:35:28.779 [kCFStreamSocketSecurityLevelNone]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    EHLO [192.168.1.30]
    READ Jan 19 12:35:28.846 [kCFStreamSocketSecurityLevelNone]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    250-st11p02mm-asmtp003.mac.com
    250-8BITMIME
    250-PIPELINING
    250-CHUNKING
    250-DSN
    250-ENHANCEDSTATUSCODES
    250-EXPN
    250-HELP
    250-XADR
    250-XSTA
    250-XCIR
    250-XGEN
    250-XLOOP 9DDFE32F5FFD44C1C6F842687D47D955
    250-STARTTLS
    250-NO-SOLICITING
    250 SIZE 0
    WROTE Jan 19 12:35:28.851 [kCFStreamSocketSecurityLevelNone]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    STARTTLS
    READ Jan 19 12:35:28.917 [kCFStreamSocketSecurityLevelNone]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    220 2.5.0 Go ahead with TLS negotiation.
    WROTE Jan 19 12:35:29.288 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    EHLO [192.168.1.30]
    READ Jan 19 12:35:29.355 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    250-st11p02mm-asmtp003.mac.com
    250-8BITMIME
    250-PIPELINING
    250-CHUNKING
    250-DSN
    250-ENHANCEDSTATUSCODES
    250-EXPN
    250-HELP
    250-XADR
    250-XSTA
    250-XCIR
    250-XGEN
    250-XLOOP 9DDFE32F5FFD44C1C6F842687D47D955
    250-AUTH PLAIN LOGIN ATOKEN WSTOKEN WETOKEN
    250-AUTH=LOGIN PLAIN
    250-NO-SOLICITING
    250 SIZE 0
    WROTE Jan 19 12:35:29.363 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    EHLO [192.168.1.30]
    READ Jan 19 12:35:29.429 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    250-st11p02mm-asmtp003.mac.com
    250-8BITMIME
    250-PIPELINING
    250-CHUNKING
    250-DSN
    250-ENHANCEDSTATUSCODES
    250-EXPN
    250-HELP
    250-XADR
    250-XSTA
    250-XCIR
    250-XGEN
    250-XLOOP 9DDFE32F5FFD44C1C6F842687D47D955
    250-AUTH PLAIN LOGIN ATOKEN WSTOKEN WETOKEN
    250-AUTH=LOGIN PLAIN
    250-NO-SOLICITING
    250 SIZE 0
    WROTE Jan 19 12:35:29.539 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    AUTH ATOKEN MTY2MDIwMDk3ADE2NjAyMDA5NwBBUUFBQUFCUSt2ZmVHNVNBMGNLbDBsRElwQkdkc0hXNk9mdnFNVWM 9
    READ Jan 19 12:35:29.618 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    235 2.7.0 ATOKEN authentication successful.
    WROTE Jan 19 12:35:29.628 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    MAIL FROM:<****>
    READ Jan 19 12:35:29.700 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    250 2.5.0 Address Ok.
    WROTE Jan 19 12:35:29.708 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    RCPT TO:<****>
    READ Jan 19 12:35:29.912 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    250 2.1.5 **** OK.
    WROTE Jan 19 12:35:29.921 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    DATA
    READ Jan 19 12:35:29.986 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    354 Enter mail, end with a single ".".
    WROTE Jan 19 12:35:29.995 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    From: John Bohn <****>
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    Subject: test server
    Date: Sat, 19 Jan 2013 12:34:58 -0800
    Message-Id: <****>
    To: John Bohn <****>
    Mime-Version: 1.0 (Apple Message framework v1283)
    X-Mailer: Apple Mail (2.1283)
    asdfs
    READ Jan 19 12:35:30.197 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:p02-smtp.mail.me.com -- port:587 -- socket:0x7fc46d2c7f80 -- thread:0x7fc470567950
    250 2.5.0 Ok, envelope id ****
    <Email Edited By Host>

  • Long delay when sending normal text message

    Whenever I send a standard message, there is always a long delay (8 secs) before it sends. I know it is not aol because it is all the time. I am running 10.5.1 on my macbook with iChat 4. I have tried reinstalling ichat including removing all pref files. Still no luck. Any help would be great! Thanks.

    Today I started from my Firewire-device with 10.4.11 and had ichat running from there. I chatted with my friend, who is on 10.5.1 - no problems at all. (so my router is not causing the problem, as I thought)
    Starting from 10.5.1 again I opened up Activity Monitor and found this message every 10 secs !
    25.12.07 25.12. 15:18:29 com.apple.launchd[138] (at.obdev.LittleSnitchUIAgent[654]) Exited with exit code: 1
    25.12.07 25.12. 15:18:29 com.apple.launchd[138] (at.obdev.LittleSnitchUIAgent) Throttling respawn: Will start in 10 seconds
    25.12.07 25.12. 15:18:39 com.apple.launchd[138] (at.obdev.LittleSnitchUIAgent[655]) posix_spawnp("/Library/Little Snitch/Little Snitch UIAgent.app/Contents/MacOS/Little Snitch UIAgent", ...): No such file or directory
    I remember that I installed Little snitch some time ago and removed it manually. Then today I run the official uninstaller for it. Still I cannot get rid of this activity. May be it has to do something with the text delay in ichat? How to delete all Little Snitch processes? How can someone find these data?
    Thanks for Feedback

  • Long delay launching application

    I have a problem with an application dispensed by webstart. Some users get long delays launching the application. Webstart hangs at the point of "checking for updates" and takes up to 20 mins to get past this point. The problem is not usually reliable. The few times I've got my hands on a computer which displays these symptoms it mysteriously decides to start working properly. Has anybody experienced anything similar or have any idea what might be happening?
    I noticed a bug with similar symptoms in the FAQ but I am not setting heap size so it's not that.
    The only common feature I've identified is that it doesn't appear to happen to people who don't have to authenticate on the web server.
    These are the details:
    There are about 100 people launching an application through webstart on various operating systems and with various network configurations - ie some are loading over a vpn and some access from outside the network.
    All users are accessing the same web server and all users go through a fairly restrictive firewall (though obviously open on port 80).
    There is a possibility that some of the files (in particular the jnlp file) get cached by servers routing the data. This has sometimes caused problems before.
    The server (running apache) requires authentication for all users not on the local network.
    The application is quite large and it takes about 30 mins to download via a 56k modem.
    There are regular updates to one of the jar files.

    sorry to revive an old thread... perhaps this may be of some help to you
    http://forum.java.sun.com/thread.jsp?forum=38&thread=376404

  • Browsing---long delays states it is 'loading' second third attempt works fine.

    When I enter a search topic---there is a long delay--tool bar states 'searching'. If I then re-enter after going out of the screen and then in again---the same thing happens. If I repeat the above---after two or three times search commences like normal.
    I find this very frustrating. If I go to another search engine this does not happen.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, possibly after detecting changes (update) to the Firefox program.<br />
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process.<br />
    See [[Server not found]] and [[Firewalls]] and http://kb.mozillazine.org/Firewalls<br />
    Other things that need attention, see http://www.mozilla.com/plugincheck/
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.0 r32
    # Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    Update the [[Shockwave|Shockwave for Director]] plugin to the latest version.<br>
    *http://www.adobe.com/shockwave/welcome/

  • Long delay when logging in Network User

    Hello,
    We are running into a weird problem.
    We have an XServe G5 2.0 GHz DP with 5 GB RAM, providing multiple services to a small school.
    The Users have Network-based accounts, and are authenticated via OD on the same server.
    Lately, Users have started experiencing a very long delay when logging in.
    At the login prompt, if they input the wrong password, they get "the shake" right away, which indicates that the authentication speed is rather fast. If they do input the right credentials, nothing happens for 25 - 30 seconds, and then login proceeds as usual, fairly quickly. The machines are normally responsive from there on, i.e. it is not a network performance issue. Also, even if no one is on the server, the first one to log in runs into the same issue, i.e. it is not a server overload issue. Does anyone have an idea what is going on? Any suggestions for a solution will be appreciated.
    Best regards,
    Alain Chammas

    Hi
    This could be down to a time sync issue. Are Server and Clients all using the same Network Time Server? Do you see a similar delay when presenting the login window displaying a list of network users? If you did not know this is a computer list mananged preference. Anything unusual in the system.log?
    Hope this helps, Tony

  • Long delay when trying to save print as PDF

    For some reason, there is a long delay, usually up to five minutes, before the system will allow me to save a print as a PDF. I ran disk utility and no issues arose. Anyone know why this is happening?

    HI,
    Make sure there is enough free space on the startup disk.
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure you always have a minimum of 10% to 15% free disk space at all times.
    Carolyn

Maybe you are looking for

  • SLOW BROADBAND ON iMac  BUT NOT ON WINDOWS!!!

    Right... I have a major problem. I got a new iMac 24", and everything runs perfectly. But... I have "8MB" Broadband, on my PC's (3 Different Windows Ones I Have) the bandwidth speed tests are off the chart usually about 500+ Kbps. But on my iMac 24"

  • Will there EVER be a usable Blu-ray designing software on the Mac??????

    I am SOOOO frustrated right now. I have a brand new Mac with FCP 7. I also have Adobe Encore. I also have Toast. I have been trying to use all three to make one BRD for 6 days! I first used Encore. The disk it made was all messed up (nothing new). Th

  • Wrong Behavior in forum table resize

    Look at the attached image. When an author name is very long (circled in red), it should be the one that is split on several line and the topic (thread) should be kept on as few line as possible otherwize you end up with that ugly result as seen on t

  • PowerBook G4 will not shut down after installing Leopard

    Hi - has anyone found shut down problems (or restart for that matter) after installing Leopard. I've got 30Gb of hard drive free on a Powerbook G4 (3 years old).

  • Safari randomly stops opening pages

    Hi Everyone, Since upgrading to Yosemite, Safari randomly stops opening pages. It works for a while, then if I put my computer to sleep, sometimes when I wake my computer, Safari will no longer opens pages. When this happens, all apps requiring inter