FaxSTF fails to send - but only from my main user account!

I bought FaxSTF in version 6 for OS 9, and version 10.5.3 for OS X. My woes with it in OS X are not so much of the kind that I've read while searching this area for answers; they are rather peculiar, and I suspect FaxSTF might not even be at fault (though I can't be sure). For what it's worth, let me also state up front that under OS 9 it worked almost rock-solidly. It was very, very versatile and amazingly reliable. Not so much in OS X; versatility and reliability are out the window. I'll explain:
In my main user account ('alex', admin account) no matter which application I try to fax from, when I click on the blue throbbing 'Fax' button, it stops throbbing and becomes grey and nothing else happens. I can only dismiss the print dialog by clicking on 'Cancel'. There is nothing I have tried which can change this behavior.
Things are better, though, in secondary, standard or admin user accounts on the same machines. From them, I can fax things with no problem whatsoever.
This is the second powerbook on which this is happening: the other one is my TiBook 550MHz running Tiger, also. What it's meant basically is that when I need to send a fax, I have to:
•save my document in a directory accessible by my other, secondary, accounts, then
•use Fast User Switching (thank goodness for that) and through my other account ...
•open the document (usually a PDF by now, so I only have to use Preview which loads fast enough) and
•enter the fax number manually (since my Address Book database is not accessible by the secondary account) and click on Fax.
Of course, if I need to keep track of sent faxes, I then have the additional step of exporting the fax into Fax format from FaxSTF from the secondary account, then over at my main account go into FaxSTF and import it for my records.
Not so practical...
Thankfully, FaxSTF is fine when receiving faxes while logged in my main account.
I was hoping that some useful hints/help will be available through the Discussion Area, as opposed to SmithMicro customer support; they take up to months to reply to an incident posted on their web-driven database, and when they do, their responses are almost meaningless most of the time, assuring me that my problem is not really happening, and reminding me of the correct procedure for doing things (it's the very procedure that doesn't work with me, but often times they haven't even read/understood my incident post in the first place. Very polite people, though; I'll give them that!)
As always, thanks in advance, people.

I would look into if the ports the smtp is using are open at all
if they are closed over 3g then it should work over wifi unles your wifi router block them too
and of cause if you set the wrong encryption or some of the other smtp settings then that too would
explain it

Similar Messages

  • Mail won't send, but only from my apartment/airport

    It seems as if it has been for the last two weeks or so that anytime I attempt to send emails through Mail, that they won't send. But if I go to the coffee shop, or a friends apartment it sends with no issue.
    Is it a possibility I accidentally messed up some security/privacy setting in either Mail or with my Airport?
    macbook pro   Mac OS X (10.4.8)  

    not sure if this is the answer but I had a similar problem recently - my ISP changed required settings so my outbound mail had to be something like "SMTP.isp.com" instead of "smtp.gmail.com"
    It was a change they made over a weekend so I didn't know about it -- so my first suggestion would be to check with your ISP.
    Hope this helps.

  • Problems only on main user account, No problems on new test account.

    Hi,
    I am not sure how to describe the problem I am having other than to say take a look at the pictures and video and see if you can help guess whats causing it.
    http://www.youtube.com/watch?v=kN9FYRVgcv0
    http://picasaweb.google.com/BenLeeke/BlankBoxes?authkey=Gv1sRgCJuU1pin1uKJjgE&fe at=directlink
    I seem to have blank pop up boxes despite using the latest browsers and OS. I am running OS 10.6.2 on a macbook and have tried Firefox, Chrome and Safari.
    This problem also occurs in Dreamweaver and File Maker. Although not all the time. The dreamweaver problem is very annoying. A pop up box for file management turns black, occupies most of the screen and cannot be closed. So a restart of DW is needed.
    This problem does not occur when I switch users on the same mac. So it seems to be not browser related but related to my main user account. Strange.
    I do not have this problem on any of my other macs so it's defiantly this particular macbook specific.
    I also get blank drop downs in other programs although sometime it does work and if you click half way down a list it will choose an item but you have no idea what you are choosing.
    Should I try and migrate to another user account? How would I do this?
    Any ideas?
    Thanks in advance

    If the issue is limited to your user account try starting up Safe Mode (It will take more time to startup in Safe Mode because it runs a directory check.)
    If your apps functions correctly that way, go to System Preferences >> Accounts >> Login Items, and remove them. Boot normally and test. If not go to ~(yourHome)/Library/Contextual Menu Items and move whatever is there to the desktop. Then do the same with /Library/Contextual Menu Items. Lastly, try moving ~(yourHome)/Library/Fonts to your desktop and restarting.
    -mj
    Log out/in or restart, if that sorts it start putting items back one at a time until you find the culprit.

  • ODBC fails but only from ASP page (12154)

    I have a working Win2k/MDAC 2.6 box, that can connect perfectly to an Oracle 8.1.7 on another machine. I can TNS ping this host, I set up an ODBC DSN and I can connect from the Oracle ODBC Test program. I wrote a simple script (see below) to test the connection, and run it as a Windows script (i.e. double click on the file) and it runs perfectly. All is great.
    BUT, when I copy the exact same script into an ASP file (surround the script the the "<%" and "%>" delimiters) and run it, I get this:
    ORA-12154 TNS could not resolve service name.
    Anyone have any ideas why this script fails but ONLY from ASP??
    Here is my simple script:
    dim rs, conn
    set conn = CreateObject("ADODB.Connection")
    conn.open "ora817"
    Thanks very much,
    Marc Fairorth

    I am using asp connecting an oracle 8.1.5
    Using this :
    Set Conn=Server.CreateObject("ADODB.Connection")
    Set RS=Server.CreateObject("ADODB.RecordSet")
    Conn.Open Connection
    RS.open SQL1, Conn
    The only difference to your script is the server option
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Marc Fairorth ([email protected]):
    I have a working Win2k/MDAC 2.6 box, that can connect perfectly to an Oracle 8.1.7 on another machine. I can TNS ping this host, I set up an ODBC DSN and I can connect from the Oracle ODBC Test program. I wrote a simple script (see below) to test the connection, and run it as a Windows script (i.e. double click on the file) and it runs perfectly. All is great.
    BUT, when I copy the exact same script into an ASP file (surround the script the the "<%" and "%>" delimiters) and run it, I get this:
    ORA-12154 TNS could not resolve service name.
    Anyone have any ideas why this script fails but ONLY from ASP??
    Here is my simple script:
    dim rs, conn
    set conn = CreateObject("ADODB.Connection")
    conn.open "ora817"
    Thanks very much,
    Marc Fairorth<HR></BLOCKQUOTE>
    null

  • BB is not giving me option to send but only save in draft.

    I have a BB Curver 8300.  Some mails when try to reply, BB is not giving me option to send but only save in draft.
    I tried deleting Service book and resending it is not working..
    I took backup and then Wiped the Handel, restored the backup. Still no luck..
    Pl advice. Thx
    My carrier is LoopMobile

    Only some mail? Most likely that email not giving you that option was enabled by the service book(s) you deleted.
    Try sending your Service Books again.
    On your BlackBerry device, go to:
    1. Options > Advanced > Host Routing Table > Menu > Register.
    2. Resend your service books from your carrier BIS site:
    From your handheld device:   http://www.blackberry.com/btsc/KB15402
    Go to the Personal Email Set Up icon and log in. Then under Help!, select Service Books, then select Send service Books.
    From your desktop PC:  http://www.blackberry.com/btsc/KB02830
    North American Carriers - scroll down to select your carrier
    WorldWide Carriers - Find your carrier on the list
    3. With the BlackBerry device powered ON, remove the battery a few seconds and then reinsert the battery to reboot. This reboot, even if you have already done this, is often needed to install the service books.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • All my email has disappeared from iCloud.  I did not delete it, and now it's working again, but only from 28 August 2013.  What happened to my old emails? How do I get them back? thanks

    All my email has disappeared from iCloud.  I did not delete it, and now it's working again, but only from 28 August 2013.  What happened to my old emails? How do I get them back? thanks

    Have you checked whether the emails are visible at http://icloud.com ? If they are, it's a problem between your Mac and the website; sign out in System Preferences>iCloud and sign back in again.
    If they aren't, then it's a server problem and you need to contact Support. If you currently happen to have AppleCare, either because you recently bought Apple hardware or have paid to extend the inititial period, you can contact them here:
    http://www.apple.com/support/icloud/contact/
    You will need the serial number of the covered hardware.
    If you are not covered by AppleCare, then - in common with other free email services - there is no free support and you may be asked to pay a fee; if so you should argue that this is a problem they've caused (it's not the first time, by the way) and you shouldn't be charged.

  • Why can I not send e-mails from my e-mail account? I can receive e-mails. Not an iCloud account. It is a Bell Aliant account.

    Why can I not send e-mails from my e-mail account? I can receive e-mails. It is not an iCloud account it is a Bell Aliant account. An account I pay for.
    This is the second time in three months this has occurred. Bell Aliant suggested I contact Apple directly as the only option is to remove my e-mail account and reconfigure it. This will mean losing all my files. These files are very important as my account is a business account.
    Bell Aliant thought perhaps it is an Apple problem and that Apple may better be able to remedy the situation without me losing my e-mail files.

    Sorry ?
    An Internet email provider losses all your Mail and it's Apple's fault ??
    Did they explain how the app managed to delete all of your mail and then not even let you have access ?
    If that was the case the app should still be able to access the empty folders.
    I know there is often blame and counter blame in these situations but there are limits.
    9:50 pm      Friday; April 10, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • HT4623 The APP application on my iPad does not function properly - any downloads requested immediately fail and send me back to the main iPad screen.  Any suggestions on how to fix this - all software has been updated to iOS 5.1.1 and no other updates are

    The APP application on my iPad does not function properly - any downloads requested immediately fail and send me back tot he main iPad screen.  Any suggestions on to hoe to fix this?  The software has been updated to iOS 5.1.1, and no furthe updates are available.

    This is my boilerplate response when app downloads are stalled or in the "waiting" mode. There are a bunch of things here to try.
    Tap on the "installing" icon and see if you can pause the install, then tap on it again in order to resume the install.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download and install at a time on the iPad so that could be what is causing the problem.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>iTunes & App Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>iTunes & App Store>Sign in and see if the install resumes.
    If all else fails, download the updates or the apps in iTunes on your computer and then sync the content to your iPad.

  • When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    http://www.joshjacob.com/mac-development/tnef.php

  • Using Sansung S3, not yet possible to share all the open tabs (using NFC) with another NFC phone. But only the one main tab I am currently browsing is possible.

    Using Sansung S3, Android 4.1.2, Firefox 24.0; not yet possible to share all the open tabs (using NFC) with another NFC phone. But only the one main tab I am currently browsing is possible to share. Is this the feature of current NFC feature of Firefox?
    If so, when will there be feature to share all the tabs?
    Thanks.

    I'm not sure if we will implement this. Sharing all the tabs you have open have many more security and privacy issues. Someone forgets that they had a tab open they did not want to share or miss-clicks on the share all option.
    We are looking into better ways to share tabs with devices that are nearby. Especially if they are on the same WiFi network.

  • Since upgrading to 10.8 I've had alot of issues burning DVD's. I've had the drive replaced and now I can burn from a new user account but not the old one. Is there any way of making the old one work?

    Since upgrading to 10.8 I've had alot of issues burning DVD's. I've had the drive replaced and now I can burn from a new user account but not the old one. Is there any way of making the old one work?
    Just want to avoild spending hours migrating everything across....

    Yes, I can read but just can't write DVD's. I get:
    This disc can’t be verified and might be unreliable. Try again using a new blank disc (error code 0x80020063).
    Originally I thought it was the old Moutain Lion DVD drive issue (but have had the drive recently replaced by Apple), so I tried creating a new account, which worked.
    In the old account I have reset SMU, Pram... but no change.

  • Slow going from Login to full loading of desktop in main user account

    Lately my beloved Macbook Pro has developed a problem in the main user account. It is taking too long to load the desktop & menu bar after Login. I don't know quite how to approach troubleshooting this, because my alternate user loads fine. I am going to post a full Console dump in the hope that somebody can see what my Mac is wrestling with:
    1/3/09 12:21:44 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/AVCAssistant.plist
    1/3/09 12:21:44 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    1/3/09 12:21:44 AM com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    1/3/09 12:21:44 AM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    1/3/09 12:21:44 AM com.apple.launchd[1] (com.apple.mio.AVCAssistant) Conflict with job: 0x100760.AVCAssistant over Mach service: com.apple.mio.AVCAssistant
    1/3/09 12:21:44 AM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    1/3/09 12:21:44 AM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    1/3/09 12:21:54 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 5 seconds
    1/3/09 12:25:04 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[82]) Exited: Terminated
    1/3/09 12:25:04 AM com.apple.launchd[1] ([0x0-0x4004].com.wacom.TabletDriver[89]) Exited: Terminated
    1/3/09 12:25:04 AM com.apple.launchd[1] (com.wacom.wacomtablet[81]) Exited with exit code: 255
    1/3/09 12:25:04 AM com.apple.launchctl.Aqua[118] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    1/3/09 12:25:04 AM com.apple.launchctl.Aqua[118] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    1/3/09 12:25:05 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 10 seconds
    1/3/09 12:25:06 AM com.apple.FolderActions.enabled[119] launchctl: Error unloading: com.apple.FolderActions.folders
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:23 AM Finder[135] [QL ERROR] Generator database update takes too long... we will use what we currently have
    1/3/09 12:25:25 AM SystemUIServer[134]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/3/09 12:25:26 AM [0x0-0x16016].com.kensington.mouseworks.background[161] Kensington FastUserSwitch: Session On Console
    1/3/09 12:25:26 AM [0x0-0x16016].com.kensington.mouseworks.background[161] Kensington FastUserSwitch: Session User ID = 501
    1/3/09 12:25:26 AM [0x0-0x16016].com.kensington.mouseworks.background[161] Kensington FastUserSwitch: Installing User Switch Notifications
    1/3/09 12:25:34 AM SystemUIServer[134] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/3/09 12:25:34 AM com.apple.launchd[116] (0x101040.VersionCueCS3monitor) Failed to check-in!
    1/3/09 12:25:38 AM SystemUIServer[134] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/3/09 12:25:40 AM SystemUIServer[134] MenuMeterCPU loaded.
    1/3/09 12:25:41 AM SystemUIServer[134] MenuCracker: Loading 'SSMenuExtra'.
    1/3/09 12:25:43 AM FontAgent Activator[163] file /InsiderBuild/4.0.3/FAPro/Activation/Daemon/FASDatabaseIndexing.m line 83 caught NSInvalidArgumentException because * -[NSCFDictionary setObject:forKey:]: attempt to insert nil key
    1/3/09 12:25:45 AM SystemUIServer[134] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/3/09 12:25:46 AM SystemUIServer[134] MenuMeterMem loaded.
    1/3/09 12:25:46 AM SystemUIServer[134] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/3/09 12:25:47 AM SystemUIServer[134] MenuMeterNet loaded.
    1/3/09 12:25:54 AM [0x0-0x1f01f].com.apple.systemevents[176] com.apple.FolderActions.enabled: Already loaded
    1/3/09 12:25:55 AM [0x0-0x1d01d].com.charcoaldesign.magical[169] MBS Debug: MakeCFURLfromFolderItem
    1/3/09 12:25:55 AM [0x0-0x1d01d].com.charcoaldesign.magical[169] MBS Debug: REALFSRefFromFolderItem for ref
    1/3/09 12:25:55 AM [0x0-0x1d01d].com.charcoaldesign.magical[169] MBS Debug: REALFSRefFromFolderItem got ref
    1/3/09 12:25:55 AM com.apple.launchd[116] ([0x0-0x11011].com.apple.systemuiserver[134]) Exited: Terminated
    1/3/09 12:25:56 AM SystemUIServer[180]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/3/09 12:25:56 AM SystemUIServer[180] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/3/09 12:25:57 AM SystemUIServer[180] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuMeterCPU loaded.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuCracker: Loading 'SSMenuExtra'.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuMeterMem loaded.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuMeterNet loaded.
    1/3/09 12:26:03 AM com.apple.Safari[187] YES
    1/3/09 12:27:30 AM com.apple.launchd[116] (0x10c890.Locum[279]) Exited: Terminated
    1/3/09 12:27:40 AM com.apple.launchd[116] (0x10c820.Locum[280]) Exited: Terminated
    1/3/09 12:29:12 AM com.apple.launchd[116] (0x10c680.Locum[359]) Exited: Terminated
    1/3/09 12:29:53 AM com.apple.launchd[116] (0x10c680.Locum[363]) Exited: Terminated
    1/3/09 12:31:38 AM com.apple.launchd[116] (0x10c6f0.Locum[365]) Exited: Terminated
    1/3/09 12:32:09 AM Mail[369] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/3/09 12:32:20 AM com.apple.Safari[373] YES
    1/3/09 12:33:11 AM [0x0-0x29029].com.apple.Safari[370] Debugger() was called!
    1/3/09 12:41:12 AM com.apple.Safari[384] YES
    1/3/09 12:56:21 AM com.apple.Safari[411] YES
    1/3/09 12:57:48 AM [0x0-0x31031].com.apple.systemevents[424] com.apple.FolderActions.enabled: Already loaded
    1/3/09 12:57:51 AM com.apple.KernelEventAgent[24] KernelEventAgent: sysctl_queryfs: No such file or directory
    1/3/09 12:57:51 AM com.apple.loginwindow[23] Sat Jan 3 00:57:51 Macintosh.local loginwindow[23] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:57:51 AM com.wacom.wacomtablet[120] Sat Jan 3 00:57:51 Macintosh.local WacomTabletDriver[120] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:57:51 AM com.wacom.wacomtablet[120] Sat Jan 3 00:57:51 Macintosh.local WacomTabletDriver[120] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:57:51 AM [0x0-0x31031].com.apple.systemevents[424] Sat Jan 3 00:57:51 Macintosh.local System Events[424] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:57:51 AM [0x0-0x31031].com.apple.systemevents[424] Sat Jan 3 00:57:51 Macintosh.local System Events[424] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:57:51 AM WacomTabletDriver[120] HIToolbox: received notification of WindowServer event port death.
    1/3/09 12:57:51 AM com.apple.loginwindow[23] Sat Jan 3 00:57:51 Macintosh.local loginwindow[23] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:57:51 AM SyncServer[404] Handling SIGTERM in kqueue callback from runloop
    1/3/09 12:57:51 AM com.apple.launchd[116] (com.apple.pboard[129]) Exited: Terminated
    1/3/09 12:57:51 AM com.apple.launchd[116] ([0x0-0x31031].com.apple.systemevents[424]) Exited: Terminated
    1/3/09 12:57:51 AM com.apple.launchd[116] (com.apple.AOSNotification[175]) Exited: Terminated
    1/3/09 12:57:51 AM com.apple.launchd[116] (com.apple.UserEventAgent-Aqua[126]) Exited: Terminated
    1/3/09 12:58:11 AM com.apple.launchd[116] (com.wacom.wacomtablet[120]) Exit timeout elapsed (20 seconds). Killing.
    1/3/09 12:58:11 AM com.apple.launchd[116] (com.wacom.wacomtablet[120]) Exited: Killed
    1/3/09 12:58:11 AM com.apple.launchd[1] ([0x0-0x38038].com.wacom.TabletDriver[457]) Exited: Terminated
    1/3/09 12:58:11 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[456]) Exited: Terminated
    1/3/09 12:58:11 AM com.apple.launchd[1] (com.wacom.wacomtablet[455]) Exited with exit code: 255
    1/3/09 12:58:11 AM com.apple.launchctl.Aqua[463] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    1/3/09 12:58:11 AM com.apple.launchctl.Aqua[463] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    1/3/09 12:58:12 AM com.apple.FolderActions.enabled[464] launchctl: Error unloading: com.apple.FolderActions.folders
    1/3/09 12:58:14 AM SystemUIServer[478]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/3/09 12:58:17 AM SystemUIServer[478] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/3/09 12:58:17 AM SystemUIServer[478] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/3/09 12:58:18 AM [0x0-0x44044].com.kensington.mouseworks.background[495] Kensington FastUserSwitch: Session On Console
    1/3/09 12:58:18 AM [0x0-0x44044].com.kensington.mouseworks.background[495] Kensington FastUserSwitch: Session User ID = 501
    1/3/09 12:58:18 AM [0x0-0x44044].com.kensington.mouseworks.background[495] Kensington FastUserSwitch: Installing User Switch Notifications
    1/3/09 12:58:18 AM SystemUIServer[478] MenuMeterCPU loaded.
    1/3/09 12:58:18 AM FontAgent Activator[496] file /InsiderBuild/4.0.3/FAPro/Activation/Daemon/FASDatabaseIndexing.m line 83 caught NSInvalidArgumentException because * -[NSCFDictionary setObject:forKey:]: attempt to insert nil key
    1/3/09 12:58:20 AM SystemUIServer[478] MenuCracker: Loading 'SSMenuExtra'.
    1/3/09 12:58:20 AM com.apple.launchd[116] (0x104830.VersionCueCS3monitor) Failed to check-in!
    1/3/09 12:58:20 AM SystemUIServer[478] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/3/09 12:58:20 AM SystemUIServer[478] MenuMeterMem loaded.
    1/3/09 12:58:21 AM SystemUIServer[478] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/3/09 12:58:21 AM SystemUIServer[478] MenuMeterNet loaded.
    1/3/09 12:58:21 AM [0x0-0x4d04d].com.apple.systemevents[508] com.apple.FolderActions.enabled: Already loaded
    1/3/09 1:11:32 AM com.apple.Safari[532] YES
    1/3/09 1:21:44 AM com.apple.launchd[1] (com.18james.anacron[536]) Stray process with PGID equal to this dead job: PID 539 PPID 1 anacron
    1/3/09 10:25:07 AM dotmacsyncclient[647] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:8FBE376E-33BE-4CDA-B31E-10D8B1909714, auto-retries=2, manual-retries=0
    1/3/09 10:25:23 AM com.apple.Safari[657] YES
    1/3/09 10:25:26 AM Mail[656] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/3/09 10:26:35 AM Mail[656] GET /Library/Application Support/Mail/Alias.xml (FAILED), httpStatusCode:402, errorType:100, transactionState:5, txnId:258C47B4-3D1D-4F2D-92C3-9730C55FD124, auto-retries=0, manual-retries=0
    1/3/09 10:34:53 AM com.apple.Safari[701] YES
    1/3/09 10:34:57 AM dotmacsyncclient[703] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:78A8C5DA-42BA-4E31-8306-BB30C0AF525E, auto-retries=2, manual-retries=0
    1/3/09 10:34:57 AM com.apple.AOSNotification[513] 2009-01-03 10:34:57.681 dotmacsyncclient[703:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:78A8C5DA-42BA-4E31-8306-BB30C0AF525E, auto-retries=2, manual-retries=0
    1/3/09 10:40:24 AM com.apple.Safari[714] YES
    1/3/09 10:56:02 AM com.apple.Safari[731] YES
    1/3/09 10:56:13 AM dotmacsyncclient[724] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:EC6B45DF-DFB9-4D99-AFE6-5F301B625FC5, auto-retries=2, manual-retries=0
    1/3/09 10:57:07 AM dotmacsyncclient[733] POST /marketeer (FAILED), httpStatusCode:401, errorType:101 (domain=Error domain 4, code=-4), transactionState:5, txnId:BEB7EBC2-CFF4-4C7C-8687-CBAFED4C9A28, auto-retries=2, manual-retries=0
    1/3/09 10:57:07 AM com.apple.AOSNotification[513] 2009-01-03 10:57:07.464 dotmacsyncclient[733:10b] POST /marketeer (FAILED), httpStatusCode:401, errorType:101 (domain=Error domain 4, code=-4), transactionState:5, txnId:BEB7EBC2-CFF4-4C7C-8687-CBAFED4C9A28, auto-retries=2, manual-retries=0
    1/3/09 10:58:09 AM Smultron[737] Error loading /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL: dlopen(/Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL, 265): no suitable image found. Did find:
    /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL: GC capability mismatch
    1/3/09 10:58:09 AM Smultron[737] Error loading /Library/InputManagers/PicLens/PicLens.bundle/Contents/MacOS/PicLens: dlopen(/Library/InputManagers/PicLens/PicLens.bundle/Contents/MacOS/PicLens, 265): no suitable image found. Did find:
    /Library/InputManagers/PicLens/PicLens.bundle/Contents/MacOS/PicLens: GC capability mismatch
    1/3/09 11:11:43 AM com.apple.Safari[781] YES
    1/3/09 11:12:23 AM dotmacsyncclient[782] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CA26F4BE-11A0-467F-BC0A-CF8D2CA66B8C, auto-retries=2, manual-retries=0
    1/3/09 11:12:23 AM com.apple.AOSNotification[513] 2009-01-03 11:12:23.180 dotmacsyncclient[782:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CA26F4BE-11A0-467F-BC0A-CF8D2CA66B8C, auto-retries=2, manual-retries=0
    1/3/09 11:26:34 AM dotmacsyncclient[826] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:583139A4-0574-4254-880A-610F987EEC41, auto-retries=2, manual-retries=0
    1/3/09 11:26:53 AM com.apple.Safari[834] YES
    1/3/09 11:26:58 AM DashboardClient[835] (com.apple.widget.CSSCheatSheet) file:///Users/garyp/Library/Widgets/CSS%20Cheat%20Sheet.wdgt/index.html: Can't find variable: loaded (line: 13)
    1/3/09 11:26:58 AM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 11:26:58.475 DashboardClient[835:10b] (com.apple.widget.CSSCheatSheet) file:///Users/garyp/Library/Widgets/CSS%20Cheat%20Sheet.wdgt/index.html: Can't find variable: loaded (line: 13)
    1/3/09 11:26:59 AM DashboardClient[835] (com.apple.widget.zipcoder) file:///Users/garyp/Library/Widgets/ZipCoder2.0.wdgt/Scripts/Scroller.js: Null value (line: 83)
    1/3/09 11:26:59 AM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 11:26:59.938 DashboardClient[835:10b] (com.apple.widget.zipcoder) file:///Users/garyp/Library/Widgets/ZipCoder2.0.wdgt/Scripts/Scroller.js: Null value (line: 83)
    1/3/09 11:27:00 AM DashboardClient[835] com.kamalaboulhosn.radarinmotion2: illegal type passed to setPreferenceForKey: undefined
    1/3/09 11:27:00 AM DashboardClient[835] com.kamalaboulhosn.radarinmotion2: illegal type passed to setPreferenceForKey: undefined
    1/3/09 11:27:00 AM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 11:27:00.230 DashboardClient[835:10b] com.kamalaboulhosn.radarinmotion2: illegal type passed to setPreferenceForKey: undefined
    1/3/09 11:27:00 AM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 11:27:00.231 DashboardClient[835:10b] com.kamalaboulhosn.radarinmotion2: illegal type passed to setPreferenceForKey: undefined
    1/3/09 11:29:24 AM [0x0-0x57057].com.apple.Safari[700] Debugger() was called!
    1/3/09 11:42:01 AM com.apple.Safari[895] YES
    1/3/09 11:57:18 AM com.apple.Safari[916] YES
    1/3/09 11:57:34 AM dotmacsyncclient[908] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:90C93484-D763-4FEE-9621-31F6944AA8A3, auto-retries=2, manual-retries=0
    1/3/09 12:13:01 PM com.apple.Safari[941] YES
    1/3/09 12:19:29 PM DashboardClient[836] (com.iSlayer.iStatpro4.widget) file:///Users/garyp/Library/Widgets/iStat%20pro.wdgt/scripts/core.js: TypeError: Value undefined (result of expression this.isSectionEnabled) is not object. (line: 528)
    1/3/09 12:19:29 PM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 12:19:29.737 DashboardClient[836:10b] (com.iSlayer.iStatpro4.widget) file:///Users/garyp/Library/Widgets/iStat%20pro.wdgt/scripts/core.js: TypeError: Value undefined (result of expression this.isSectionEnabled) is not object. (line: 528)
    1/3/09 12:19:49 PM com.apple.launchd[116] (0x10db30.Locum[959]) Exited: Terminated
    1/3/09 12:21:12 PM com.apple.launchd[116] (0x10db30.Locum[962]) Exited: Terminated
    1/3/09 12:26:57 PM com.apple.launchd[116] ([0x0-0x3e03e].com.apple.dock[473]) Stray process with PGID equal to this dead job: PID 836 PPID 1 DashboardClient
    1/3/09 12:26:57 PM com.apple.launchd[116] ([0x0-0x3e03e].com.apple.dock[473]) Stray process with PGID equal to this dead job: PID 835 PPID 1 DashboardClient
    1/3/09 12:26:58 PM [0x0-0x3e03e].com.apple.dock [836] line 528: TypeError: Value undefined (result of expression this.isSectionEnabled) is not object.
    1/3/09 12:26:58 PM [0x0-0x3e03e].com.apple.dock (event handler):Can't find variable: loaded
    1/3/09 12:26:58 PM [0x0-0x3e03e].com.apple.dock (event handler):Null value
    1/3/09 12:26:59 PM [0x0-0x71071].com.apple.systemevents[975] com.apple.FolderActions.enabled: Already loaded
    1/3/09 12:27:02 PM com.apple.loginwindow[433] Sat Jan 3 12:27:02 Macintosh.local loginwindow[433] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:27:02 PM com.wacom.wacomtablet[465] Sat Jan 3 12:27:02 Macintosh.local WacomTabletDriver[465] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:27:02 PM com.wacom.wacomtablet[465] Sat Jan 3 12:27:02 Macintosh.local WacomTabletDriver[465] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:27:02 PM [0x0-0x71071].com.apple.systemevents[975] Sat Jan 3 12:27:02 Macintosh.local System Events[975] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:27:02 PM [0x0-0x71071].com.apple.systemevents[975] Sat Jan 3 12:27:02 Macintosh.local System Events[975] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:27:02 PM WacomTabletDriver[465] HIToolbox: received notification of WindowServer event port death.
    1/3/09 12:27:02 PM WacomTabletDriver[465] port matched the WindowServer port created in BindCGSToRunLoop
    1/3/09 12:27:02 PM com.apple.loginwindow[433] Sat Jan 3 12:27:02 Macintosh.local loginwindow[433] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:27:02 PM com.apple.launchd[116] (com.apple.AOSNotification[513]) Exited: Terminated
    1/3/09 12:27:02 PM com.apple.launchd[116] ([0x0-0x50050].com.apple.AppleSpell[522]) Exited: Terminated
    1/3/09 12:27:02 PM com.apple.launchd[116] (com.apple.pboard[475]) Exited: Terminated
    1/3/09 12:27:02 PM com.apple.launchd[116] (com.apple.UserEventAgent-Aqua[471]) Exited: Terminated
    1/3/09 12:27:02 PM com.apple.launchd[116] ([0x0-0x71071].com.apple.systemevents[975]) Exited: Terminated
    1/3/09 12:27:02 PM com.wacom.wacomtablet[465] Sat Jan 3 12:27:02 Macintosh.local WacomTabletDriver[465] <Error>: kCGErrorRangeCheck : On-demand launch of the Window Server is allowed for root user only.
    1/3/09 12:27:02 PM com.wacom.wacomtablet[465] Sat Jan 3 12:27:02 Macintosh.local WacomTabletDriver[465] <Error>: kCGErrorRangeCheck : Set a breakpoint at CGErrorBreakpoint() to catch errors as they are returned
    1/3/09 12:27:02 PM com.apple.launchd[116] (com.wacom.wacomtablet[465]) Exited with exit code: 255
    1/3/09 12:27:06 PM com.apple.KernelEventAgent[24] KernelEventAgent: sysctl_queryfs: No such file or directory
    1/3/09 12:27:16 PM com.apple.launchd[1] ([0x0-0x77077].com.wacom.TabletDriver[1014]) Exited: Terminated
    1/3/09 12:27:16 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[1013]) Exited: Terminated
    1/3/09 12:27:16 PM com.apple.launchd[1] (com.wacom.wacomtablet[1012]) Exited with exit code: 255
    1/3/09 12:27:44 PM com.apple.loginwindow[986] Sat Jan 3 12:27:44 Macintosh.local loginwindow[986] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:27:44 PM com.apple.KernelEventAgent[24] KernelEventAgent: sysctl_queryfs: No such file or directory
    1/3/09 12:27:44 PM com.apple.loginwindow[986] Sat Jan 3 12:27:44 Macintosh.local loginwindow[986] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:27:51 PM com.apple.loginwindow[1084] Shutdown NOW!
    1/3/09 12:27:51 PM com.apple.loginwindow[1084] System shutdown time has arrived
    1/4/09 12:01:25 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/AVCAssistant.plist
    1/4/09 12:01:25 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    1/4/09 12:01:25 AM com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    1/4/09 12:01:25 AM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    1/4/09 12:01:25 AM com.apple.launchd[1] (com.apple.mio.AVCAssistant) Conflict with job: 0x100760.AVCAssistant over Mach service: com.apple.mio.AVCAssistant
    1/4/09 12:01:25 AM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    1/4/09 12:01:25 AM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    1/4/09 12:01:34 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 6 seconds
    1/4/09 12:02:19 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[82]) Exited: Terminated
    1/4/09 12:02:19 AM com.apple.launchd[1] ([0x0-0x4004].com.wacom.TabletDriver[87]) Exited: Terminated
    1/4/09 12:02:19 AM com.apple.launchd[1] (com.wacom.wacomtablet[81]) Exited with exit code: 255
    1/4/09 12:02:19 AM com.apple.launchctl.Aqua[122] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    1/4/09 12:02:19 AM com.apple.launchctl.Aqua[122] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    1/4/09 12:02:19 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 10 seconds
    1/4/09 12:02:21 AM com.apple.FolderActions.enabled[123] launchctl: Error unloading: com.apple.FolderActions.folders
    1/4/09 12:02:23 AM com.apple.launchctl.System[2] BootCacheControl: could not fetch history: Cannot allocate memory
    1/4/09 12:02:23 AM com.apple.launchctl.System[2] BootCacheControl: could not stop cache/fetch history: Cannot allocate memory
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:38 AM Finder[140] [QL ERROR] Generator database update takes too long... we will use what we currently have
    1/4/09 12:02:40 AM SystemUIServer[139]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/4/09 12:02:43 AM [0x0-0x17017].com.kensington.mouseworks.background[166] Kensington FastUserSwitch: Session On Console
    1/4/09 12:02:43 AM [0x0-0x17017].com.kensington.mouseworks.background[166] Kensington FastUserSwitch: Session User ID = 501
    1/4/09 12:02:43 AM [0x0-0x17017].com.kensington.mouseworks.background[166] Kensington FastUserSwitch: Installing User Switch Notifications
    1/4/09 12:02:44 AM com.apple.launchd[120] (0x101040.VersionCueCS3monitor) Failed to check-in!
    1/4/09 12:02:45 AM SystemUIServer[139] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/4/09 12:02:48 AM FontAgent Activator[169] file /InsiderBuild/4.0.3/FAPro/Activation/Daemon/FASDatabaseIndexing.m line 83 caught NSInvalidArgumentException because * -[NSCFDictionary setObject:forKey:]: attempt to insert nil key
    1/4/09 12:02:49 AM SystemUIServer[139] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/4/09 12:02:50 AM SystemUIServer[139] MenuMeterCPU loaded.
    1/4/09 12:02:51 AM SystemUIServer[139] MenuCracker: Loading 'SSMenuExtra'.
    1/4/09 12:02:53 AM SystemUIServer[139] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/4/09 12:02:54 AM SystemUIServer[139] MenuMeterMem loaded.
    1/4/09 12:02:55 AM SystemUIServer[139] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/4/09 12:02:55 AM SystemUIServer[139] MenuMeterNet loaded.
    1/4/09 12:03:00 AM [0x0-0x1f01f].com.apple.systemevents[182] com.apple.FolderActions.enabled: Already loaded
    1/4/09 12:03:09 AM com.apple.Safari[191] YES
    1/4/09 12:05:06 AM com.apple.launchd[120] (0x10c080.Locum[195]) Exited: Terminated
    1/4/09 12:05:49 AM com.apple.launchd[120] (0x10c080.Locum[226]) Exited: Terminated
    1/4/09 12:07:56 AM [0x0-0x23023].com.apple.Safari[287] Debugger() was called!
    1/4/09 12:18:22 AM com.apple.Safari[385] YES
    1/4/09 12:33:34 AM com.apple.Safari[414] YES
    1/4/09 12:48:45 AM com.apple.Safari[440] YES
    1/4/09 1:01:26 AM com.apple.launchd[1] (com.18james.anacron[457]) Stray process with PGID equal to this dead job: PID 460 PPID 1 anacron
    1/4/09 1:03:59 AM com.apple.Safari[477] YES
    1/4/09 1:16:56 AM Mail[494] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/4/09 1:18:42 AM com.apple.Safari[506] YES
    1/4/09 1:30:03 AM com.apple.launchd[120] (0x10c470.Locum[531]) Exited: Terminated
    1/4/09 11:35:27 AM Mail[610] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/4/09 11:36:09 AM com.apple.Safari[620] YES
    1/4/09 11:36:53 AM dotmacsyncclient[612] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CBC29DFA-35A7-4820-89FB-2419321BF66B, auto-retries=2, manual-retries=0
    1/4/09 11:40:15 AM [0x0-0x34034].com.apple.Safari[622] Debugger() was called!
    1/4/09 11:41:10 AM Mail[610] GET /Library/Application Support/Mail/Alias.xml (FAILED), httpStatusCode:402, errorType:100, transactionState:5, txnId:7C389A3C-86BD-49BF-8B29-1EB40F3A4F03, auto-retries=0, manual-retries=0
    1/4/09 11:52:43 AM dotmacsyncclient[632] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:193C523E-1AF4-49D3-8003-079EAB844A03, auto-retries=0, manual-retries=0
    1/4/09 11:52:17 AM com.apple.Safari[639] YES
    1/4/09 12:08:06 PM com.apple.Safari[664] YES
    1/4/09 12:08:51 PM dotmacsyncclient[657] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:43140CC6-6048-43B8-8D5C-0E4987A62826, auto-retries=0, manual-retries=0
    1/4/09 12:09:10 PM dotmacsyncclient[665] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:A5D636AB-1E36-4EDC-A2F2-D4113C6290DF, auto-retries=2, manual-retries=0
    1/4/09 12:09:10 PM com.apple.AOSNotification[184] 2009-01-04 12:09:10.487 dotmacsyncclient[665:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:A5D636AB-1E36-4EDC-A2F2-D4113C6290DF, auto-retries=2, manual-retries=0
    1/4/09 12:12:02 PM com.apple.launchd[120] (0x10bf80.Locum[682]) Exited: Terminated
    1/4/09 12:13:27 PM com.apple.launchd[120] (0x10bf80.Locum[685]) Exited: Terminated
    1/4/09 12:24:13 PM com.apple.Safari[701] YES
    1/4/09 12:25:10 PM dotmacsyncclient[694] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:36F91B84-2DC5-4304-92EF-549BA41D192F, auto-retries=1, manual-retries=0
    1/4/09 12:25:18 PM dotmacsyncclient[702] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:DA241077-C668-4D7D-8DFB-1F641FAA776C, auto-retries=2, manual-retries=0
    1/4/09 12:25:18 PM com.apple.AOSNotification[184] 2009-01-04 12:25:18.581 dotmacsyncclient[702:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:DA241077-C668-4D7D-8DFB-1F641FAA776C, auto-retries=2, manual-retries=0
    1/4/09 12:25:35 PM [0x0-0x3f03f].com.apple.systemevents[704] com.apple.FolderActions.enabled: Already loaded
    1/4/09 12:25:43 PM com.apple.loginwindow[23] Shutdown NOW!
    1/4/09 12:25:43 PM com.apple.loginwindow[23] System shutdown time has arrived
    1/4/09 9:42:12 PM com.apple.launchctl.System[2] BootCacheControl: could not open /var/db/BootCache.playlist: No such file or directory
    1/4/09 9:42:12 PM com.apple.launchctl.System[2] BootCacheControl: could not unlink playlist /var/db/BootCache.playlist: Unknown error: -1
    1/4/09 9:42:13 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/AVCAssistant.plist
    1/4/09 9:42:13 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    1/4/09 9:42:13 PM com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    1/4/09 9:42:13 PM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    1/4/09 9:42:13 PM com.apple.launchd[1] (com.apple.mio.AVCAssistant) Conflict with job: 0x100910.AVCAssistant over Mach service: com.apple.mio.AVCAssistant
    1/4/09 9:42:13 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    1/4/09 9:42:13 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    1/4/09 9:42:19 PM com.apple.launchd[1] (com.18james.anacron[40]) Stray process with PGID equal to this dead job: PID 44 PPID 1 anacron
    1/4/09 9:42:36 PM org.ntp.ntpd[14] Error : nodename nor servname provided, or not known
    1/4/09 9:44:49 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[84]) Exited: Terminated
    1/4/09 9:44:49 PM com.apple.launchd[1] ([0x0-0x5005].com.wacom.TabletDriver[92]) Exited: Terminated
    1/4/09 9:44:49 PM com.apple.launchd[1] (com.wacom.wacomtablet[83]) Exited with exit code: 255
    1/4/09 9:44:49 PM com.apple.launchctl.Aqua[122] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    1/4/09 9:44:49 PM com.apple.launchctl.Aqua[122] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    1/4/09 9:44:51 PM com.apple.FolderActions.enabled[123] launchctl: Error unloading: com.apple.FolderActions.folders
    1/4/09 9:45:08 PM SystemUIServer[138]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/4/09 9:45:09 PM Finder[139] [QL ERROR] Generator database update takes too long... we will use what we currently have
    1/4/09 9:45:12 PM [0x0-0x16016].com.kensington.mouseworks.background[163] Kensington FastUserSwitch: Session On Console
    1/4/09 9:45:12 PM [0x0-0x16016].com.kensington.mouseworks.background[163] Kensington FastUserSwitch: Session User ID = 501
    1/4/09 9:45:12 PM [0x0-0x16016].com.kensington.mouseworks.background[163] Kensington FastUserSwitch: Installing User Switch Notifications
    1/4/09 9:45:15 PM SystemUIServer[138] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/4/09 9:45:15 PM com.apple.launchd[120] (0x101040.VersionCueCS3monitor) Failed to check-in!
    1/4/09 9:45:18 PM SystemUIServer[138] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/4/09 9:45:19 PM FontAgent Activator[166] file /InsiderBuild/4.0.3/FAPro/Activation/Daemon/FASDatabaseIndexing.m line 83 caught NSInvalidArgumentException because * -[NSCFDictionary setObject:forKey:]: attempt to insert nil key
    1/4/09 9:45:21 PM SystemUIServer[138] MenuMeterCPU loaded.
    1/4/09 9:45:22 PM SystemUIServer[138] MenuCracker: Loading 'SSMenuExtra'.
    1/4/09 9:45:26 PM SystemUIServer[138] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/4/09 9:45:26 PM SystemUIServer[138] MenuMeterMem loaded.
    1/4/09 9:45:27 PM SystemUIServer[138] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/4/09 9:45:27 PM SystemUIServer[138] MenuMeterNet loaded.
    1/4/09 9:45:30 PM [0x0-0x1e01e].com.apple.systemevents[181] com.apple.FolderActions.enabled: Already loaded
    1/4/09 9:46:03 PM com.apple.Safari[191] YES
    1/4/09 9:46:18 PM dotmacsyncclient[160] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:1B2CA0EE-AD01-4148-BFD9-9CF8CF8665D2, auto-retries=2, manual-retries=0
    1/4/09 9:46:51 PM com.apple.launchd[120] (0x10c000.Locum[220]) Exited: Terminated
    1/4/09 9:48:21 PM com.apple.launchd[120] (0x10c8b0.Locum[226]) Exited: Terminated
    1/4/09 9:48:43 PM com.apple.launchd[120] (0x10bfd0.Locum[221]) Exited: Terminated
    1/4/09 9:48:59 PM Mail[301] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/4/09 10:01:18 PM com.apple.Safari[321] YES
    1/4/09 10:02:09 PM dotmacsyncclient[323] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:0A941175-1ADF-40B7-BD65-4BC019E0F310, auto-retries=0, manual-retries=0
    1/4/09 10:03:05 PM dotmacsyncclient[329] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:60D72AB3-8EEF-47DC-83FB-4C65A64D7868, auto-retries=0, manual-retries=0
    1/4/09 10:03:05 PM com.apple.AOSNotification[180] 2009-01-04 22:03:05.674 dotmacsyncclient[329:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:60D72AB3-8EEF-47DC-83FB-4C65A64D7868, auto-retries=0, manual-retries=0
    1/4/09 10:08:47 PM [0x0-0x24024].com.apple.Safari[319] Debugger() was called!
    1/4/09 10:17:41 PM com.apple.Safari[357] YES
    1/4/09 10:18:36 PM dotmacsyncclient[350] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:0BA3B5CC-44ED-450D-9331-A964C246ACE2, auto-retries=2, manual-retries=0
    1/4/09 10:18:47 PM dotmacsyncclient[360] POST /marketeer (FAILED), httpStatusCode:503, errorType:100, transactionState:5, txnId:D55361B4-CC5A-42E3-8A03-766BD098AEF6, auto-retries=1, manual-retries=0
    1/4/09 10:18:47 PM com.apple.AOSNotification[180] 2009-01-04 22:18:47.085 dotmacsyncclient[360:10b] POST /marketeer (FAILED), httpStatusCode:503, errorType:100, transactionState:5, txnId:D55361B4-CC5A-42E3-8A03-766BD098AEF6, auto-retries=1, manual-retries=0
    1/4/09 10:33:48 PM com.apple.Safari[389] YES
    1/4/09 10:36:13 PM dotmacsyncclient[390] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A66A17AF-E8B4-4F0F-B095-E9EB263D3738, auto-retries=1, manual-retries=0
    1/4/09 10:36:13 PM com.apple.AOSNotification[180] 2009-01-04 22:36:13.641 dotmacsyncclient[390:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A66A17AF-E8B4-4F0F-B095-E9EB263D3738, auto-retries=1, manual-retries=0
    1/4/09 10:49:45 PM dotmacsyncclient[417] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:8B62AC5C-96DF-4AAF-A22C-C4E66878AE17, auto-retries=0, manual-retries=0
    1/4/09 10:49:11 PM com.apple.Safari[424] YES
    1/4/09 10:50:38 PM dotmacsyncclient[425] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:B31EE160-5B92-4702-9741-09C79144E801, auto-retries=2, manual-retries=0
    1/4/09 10:50:38 PM com.apple.AOSNotification[180] 2009-01-04 22:50:38.436 dotmacsyncclient[425:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:B31EE160-5B92-4702-9741-09C79144E801, auto-retries=2, manual-retries=0
    1/4/09 10:58:59 PM [0x0-0x24024].com.apple.Safari[319] 090104 22:58:59 [Warning] Can't open and lock time zone table: Table 'mysql.timezone_leapsecond' doesn't exist trying to live without them
    1/4/09 10:58:59 PM [0x0-0x24024].com.apple.Safari[319] /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/mysqld: ready for connections.
    1/4/09 10:58:59 PM [0x0-0x24024].com.apple.Safari[319] Version: '4.1.18-classic' socket: '/Users/garyp/Library/Caches/Acrobat/8.0_x86/Organizer70' port: 0 MySQL Classic (Commercial)
    1/4/09 11:04:56 PM dotmacsyncclient[501] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:BB6D22F2-666C-4E09-8FFF-38A40BC54440, auto-retries=2, manual-retries=0
    1/4/09 11:05:20 PM com.apple.Safari[509] YES
    1/4/09 11:16:52 PM com.apple.Safari[596] YES
    1/4/09 11:17:43 PM dotmacsyncclient[598] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:CA7607EB-9D45-4FF4-BC3A-CE82ED0A7D11, auto-retries=0, manual-retries=0
    1/4/09 11:17:43 PM com.apple.AOSNotification[180] 2009-01-04 23:17:43.804 dotmacsyncclient[598:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:CA7607EB-9D45-4FF4-BC3A-CE82ED0A7D11, auto-retries=0, manual-retries=0
    1/4/09 11:20:44 PM dotmacsyncclient[621] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:BFEF2FCD-9568-4BEA-9C67-88EEB4108A42, auto-retries=0, manual-retries=0
    1/4/09 11:30:00 PM com.apple.launchd[1] (0x10d760.cron[700]) Could not setup Mach task special port 9: (os/kern) no access
    1/4/09 11:30:51 PM com.apple.Safari[762] YES
    1/4/09 11:31:42 PM dotmacsyncclient[769] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:676A08C0-B93A-44AA-9ACB-C27A6BEE8F8E, auto-retries=0, manual-retries=0
    1/4/09 11:31:42 PM com.apple.AOSNotification[180] 2009-01-04 23:31:42.128 dotmacsyncclient[769:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:676A08C0-B93A-44AA-9ACB-C27A6BEE8F8E, auto-retries=0, manual-retries=0
    1/4/09 11:35:03 PM com.apple.launchd[1] (org.postfix.master[939]) Stray process with PGID equal to this dead job: PID 941 PPID 1 qmgr
    1/4/09 11:36:16 PM dotmacsyncclient[1016] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:1205F6C6-0527-405F-AA91-06B08990F769, auto-retries=2, manual-retries=0
    1/4/09 11:43:07 PM com.apple.Safari[1078] YES
    1/4/09 11:44:35 PM dotmacsyncclient[1080] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A198FDAE-57B1-4E92-A692-3FA53AD8A712, auto-retries=1, manual-retries=0
    1/4/09 11:44:35 PM com.apple.AOSNotification[180] 2009-01-04 23:44:35.055 dotmacsyncclient[1080:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A198FDAE-57B1-4E92-A692-3FA53AD8A712, auto-retries=1, manual-retries=0
    1/4/09 11:51:43 PM com.apple.Safari[1158] YES
    1/4/09 11:52:28 PM dotmacsyncclient[1147] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:B930DB10-C352-49FC-9F6F-464A1517D20A, auto-retries=1, manual-retries=0
    1/4/09 11:52:50 PM dotmacsyncclient[1168] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:9333CE91-B570-4784-AD6C-14DC2301696F, auto-retries=2, manual-retries=0
    1/4/09 11:52:50 PM com.apple.AOSNotification[180] 2009-01-04 23:52:50.854 dotmacsyncclient[1168:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:9333CE91-B570-4784-AD6C-14DC2301696F, auto-retries=2, manual-retries=0
    1/4/09 11:54:47 PM Transmit[1118] Favorite:passwordFromKeychain: no keychain item found for ftp-dom.earthlink.net anitaeubank.com -25300
    1/5/09 12:05:54 AM com.apple.quicklook[1291] Mon Jan 5 00:05:54 Macintosh.local quicklookd[1291] <Error>: Corrupt JPEG data: premature end of data segment
    1/5/09 12:05:54 AM com.apple.quicklook[1291]
    1/5/09 12:05:54 AM com.apple.quicklook[1291] Mon Jan 5 00:05:54 Macintosh.local quicklookd[1291] <Error>: Corrupt JPEG data: premature end of data segment
    1/5/09 12:05:54 AM com.apple.quicklook[1291]
    1/5/09 12:07:54 AM com.apple.Safari[1318] YES
    1/5/09 12:08:19 AM dotmacsyncclient[1308] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A00494AE-3835-4A0D-9CD2-EFCD204CB74D, auto-retries=0, manual-retries=0
    1/5/09 12:08:47 AM dotmacsyncclient[1323] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CB4A6E4A-290D-4450-BAFC-8764E2C18648, auto-retries=2, manual-retries=0
    1/5/09 12:08:47 AM com.apple.AOSNotification[180] 2009-01-05 00:08:47.351 dotmacsyncclient[1323:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CB4A6E4A-290D-4450-BAFC-8764E2C18648, auto-retries=2, manual-retries=0
    1/5/09 12:18:57 AM com.apple.launchd[120] (0x10d400.Locum[1414]) Exited: Terminated
    1/5/09 12:23:34 AM com.apple.Safari[1456] YES
    1/5/09 12:23:47 AM dotmacsyncclient[1446] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:3D1D272C-8EF5-4B47-B9B3-13C56FC02111, auto-retries=2, manual-retries=0
    1/5/09 12:28:01 AM com.apple.launchd[120] (0x10e8e0.Locum[1522]) Exited: Terminated
    1/5/09 12:28:28 AM Disk Inventory X[1526] .scriptSuite warning for attribute 'scriptStyle' of class 'NSTextStorage' in suite 'ExtendedText': 'OAStyle.OAStyle' is not a valid type name.
    1/5/09 12:28:28 AM Disk Inventory X[1526] NSScriptSuiteRegistry does not respond to -_setClassDescription:forAppleEventCode: -- not hooking up extra alias (and thus, breaking some AppleScripts)
    1/5/09 12:29:42 AM Disk Inventory X[1526] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:29:42 AM Disk Inventory X[1526] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:38:58 AM dotmacsyncclient[1609] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:297F0F65-6057-4BEF-84B9-6DF609BF22BD, auto-retries=2, manual-retries=0
    1/5/09 12:39:14 AM com.apple.Safari[1620] YES
    1/5/09 12:40:02 AM dotmacsyncclient[1623] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:EE946786-3DC2-479E-9335-FCCC4D42BD14, auto-retries=0, manual-retries=0
    1/5/09 12:40:27 AM Disk Inventory X[1526] An instance 0x96f0b0 of class MainWindowController is being deallocated while key value observers are still registered with it. Observation info is being leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x3980c1e0> (
    <NSKeyValueObservance 0x397cb9d0: Observer: 0x397c3250, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x397cb960>
    <NSKeyValueObservance 0x3980c350: Observer: 0x397c4480, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x397cb960>
    1/5/09 12:40:02 AM com.apple.AOSNotification[180] 2009-01-05 00:40:02.062 dotmacsyncclient[1623:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:EE946786-3DC2-479E-9335-FCCC4D42BD14, auto-retries=0, manual-retries=0
    1/5/09 12:41:22 AM [0x0-0x24024].com.apple.Safari[319] 090105 0:41:22 [Note] /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/mysqld: Normal shutdown
    1/5/09 12:41:24 AM [0x0-0x24024].com.apple.Safari 090105 0:41:24 [Note] /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/mysqld: Shutdown complete
    1/5/09 12:42:05 AM Disk Inventory X[1646] .scriptSuite warning for attribute 'scriptStyle' of class 'NSTextStorage' in suite 'ExtendedText': 'OAStyle.OAStyle' is not a valid type name.
    1/5/09 12:42:05 AM Disk Inventory X[1646] NSScriptSuiteRegistry does not respond to -_setClassDescription:forAppleEventCode: -- not hooking up extra alias (and thus, breaking some AppleScripts)
    1/5/09 12:42:12 AM Disk Inventory X[1646] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:42:12 AM Disk Inventory X[1646] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:46:44 AM com.apple.launchd[120] (0x10dce0.Locum[1677]) Exited: Terminated
    1/5/09 12:49:09 AM com.apple.launchd[120] (0x10dce0.Locum[1744]) Exited: Terminated
    1/5/09 12:50:26 AM com.apple.launchd[120] (0x10dc40.Locum[1749]) Exited: Terminated
    1/5/09 12:52:21 AM Disk Inventory X[1646] An instance 0x9f6ea0 of class MainWindowController is being deallocated while key value observers are still registered with it. Observation info is being leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x39444b20> (
    <NSKeyValueObservance 0x39408490: Observer: 0x393fbb20, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x39408420>
    <NSKeyValueObservance 0x39444d20: Observer: 0x39400e70, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x39408420>
    1/5/09 12:52:00 AM com.apple.launchd[120] (0x10dc40.Locum[1757]) Exited: Terminated
    1/5/09 12:54:30 AM com.apple.Safari[1775] YES
    1/5/09 12:54:50 AM dotmacsyncclient[1764] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:B25AFB25-3CB0-470E-8561-981CE70C593F, auto-retries=2, manual-retries=0
    1/5/09 12:55:27 AM Disk Inventory X[1777] .scriptSuite warning for attribute 'scriptStyle' of class 'NSTextStorage' in suite 'ExtendedText': 'OAStyle.OAStyle' is not a valid type name.
    1/5/09 12:55:27 AM Disk Inventory X[1777] NSScriptSuiteRegistry does not respond to -_setClassDescription:forAppleEventCode: -- not hooking up extra alias (and thus, breaking some AppleScripts)
    1/5/09 12:56:23 AM Disk Inventory X[1777] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:56:23 AM Disk Inventory X[1777] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 1:01:31 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc debug: VLC media player - version 0.9.5 Grishenko - (c) 1996-2008 the VideoLAN team
    1/5/09 1:01:31 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc debug: libvlc was configured with ./configure '--enable-release' '--enable-update-check' '--with-macosx-sdk=/Developer/SDKs/MacOSX10.4u.sdk' 'PKGCONFIGPATH=:/opt/local/lib/pkgconfig'
    1/5/09 1:01:31 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc debug: translation test: code is "C"
    1/5/09 1:01:33 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    1/5/09 1:01:34 AM [0x0-0x69069].org.videolan.vlc[1808] [00000363] a52 decoder: A/52 channels:2 samplerate:48000 bitrate:256000
    1/5/09 1:01:34 AM [0x0-0x69069].org.videolan.vlc[1808] No accelerated IMDCT transform found
    1/5/09 1:01:56 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc: Status file authenticated
    1/5/09 1:03:14 AM com.apple.launchd[120] (0x10d0a0.Locum[1825]) Exited: Terminated
    1/5/09 1:04:18 AM [0x0-0x69069].org.videolan.vlc[1808] [00000379] main update download: /Users/garyp/Downloads/vlc-0.9.8a-intel.dmg authenticated
    1/5/09 1:05:17 AM Disk Inventory X[1777] An instance 0x16825e80 of class MainWindowController is being deallocated while key value observers are still registered with it. Observation info is being leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x18bed330> (
    <NSKeyValueObservance 0x18bca070: Observer: 0x18bc2410, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x18bca000>
    <NSKeyValueObservance 0x18bed470: Observer: 0x18bc3640, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x18bca000>
    1/5/09 1:05:48 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc debug: VLC media player - version 0.9.5 Grishenko - (c) 1996-2008 the VideoLAN team
    1/5/09 1:05:48 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc debug: libvlc was configured with ./configure '--enable-release' '--enable-update-check' '--with-macosx-sdk=/Developer/SDKs/MacOSX10.4u.sdk' 'PKGCONFIGPATH=:/opt/local/lib/pkgconfig'
    1/5/09 1:05:48 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc debug: translation test: code is "C"
    1/5/09 1:05:48 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    1/5/09 1:05:58 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc: Status file authenticated
    1/5/09 1:06:43 AM com.apple.launchd[120] (0x10db70.Locum[1859]) Exited: Terminated
    1/5/09 1:08:16 AM com.apple.launchd[120] (0x10a810.Locum[1881]) Exited: Terminated
    1/5/09 1:08:33 AM com.apple.launchd[120] (0x10a810.Locum[1882]) Exited: Terminated
    1/5/09 1:09:58 AM dotmacsyncclient[1897] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:43F06314-E29C-4660-803F-CD312A71B333, auto-retries=2, manual-retries=0
    1/5/09 1:10:12 AM com.apple.Safari[1905] YES
    1/5/09 1:10:23 AM [0x0-0x79079].com.apple.Safari[1907] Debugger() was called!
    1/5/09 1:10:34 AM com.apple.launchd[120] (0x10dee0.Locum[1908]) Exited: Terminated
    1/5/09 1:10:51 AM dotmacsyncclient[1906] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:72130295-5054-4550-A8DD-A7B34A8E6E4F, auto-retries=2, manual-retries=0
    1/5/09 1:10:51 AM com.apple.AOSNotification[180] 2009-01-05 01:10:51.479 dotmacsyncclient[1906:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:72130295-5054-4550-A8DD-A7B34A8E6E4F, auto-retries=2, manual-retries=0
    1/5/09 9:36:36 AM com.apple.Safari[1998] YES
    1/5/09 9:37:50 AM Mail[2007] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/5/09 9:40:48 AM Mail[2007] GET /Library/Application Support/Mail/Alias.xml (FAILED), httpStatusCode:402, errorType:100, transactionState:5, txnId:333A444A-4D57-4613-8136-B522678517BA, auto-retries=0, manual-retries=0
    1/5/09 9:50:19 AM com.apple.Safari[2014] YES
    1/5/09 9:57:20 AM [0x0-0x80080].com.apple.Safari[2013] Debugger() was called!
    1/5/09 10:01:21 AM com.apple.launchd[120] (0x10be60.Locum[2050]) Exited: Terminated
    1/5/09 10:06:03 AM com.apple.launchd[1] (com.18james.anacron[2056]) Stray process with PGID equal to this dead job: PID 2059 PPID 1 anacron
    1/5/09 10:07:06 AM com.apple.Safari[2073] YES
    1/5/09 10:22:16 AM com.apple.Safari[2100] YES
    1/5/09 10:37:09 AM com.apple.Safari[2138] YES

    If the alternate user account is an admin account and login works correctly, then it appears that there's a conflict or corruption within the main account. If the alternate user account isn't an admin account, create a new admin account. While logged into the appropriate admin account, backup the main account's folder, delete the main account, selecting the save data option (which is stored in /Users/Deleted Users/ as a disk image), recreate the main account using the same username/password combo, log out and back into the recreated main account. If it boots normally, then the problem's solved, open the saved data dmg file in /Users/Deleted Users/, open the /Library/Preferences/ folder from the saved data, open the current /Users/restored account/Library/Preferences/ folder, and slowly copy plist files from the saved data folder to the current one that don't exist in it. Log out and back in to ensure there's no conflict and things still work correctly. Resolving conflicts or identifying corrupt plist files is a laborious process. Good luck.
    See http://discussions.apple.com/thread.jspa?messageID=4703015 for more details on this process.

  • Why can't i import photos from a different user account?

    Why when i import photos to iphoto from my user account it works fine. If i try importing them from the other user account it the photo it shows the event folder in the events page but when you go into it there are no photos, and when you close the app it dissappears completely. I dont understand why it is doing this? The iphoto library is actually from the other user account so there shoudnlt be any sharing issues. The only thing is that i iorignially installed on the other user account but it all started when i updated it to iphoto11 and installed it on my account. that shouldnt make a difference though??
    Also if it is not possible to be able to import from both accounts how can i change it so that the other account is able to import only and not from my account?

    I have the same iphoto library selected for both user acounts
    How?
    and share my photos is checked on both accounts from preferences.
    If they use the same Library, why are you sharing this way?

  • Sync Certain Content From A Different User Account On Same Mac?

    With the iPad, is it possible to sync certain content from a different user account on the same Mac? Is this possible?
    Imagine a MacBook with 2 user accounts on it. User A has an iPad and wants to sync their own Music to it. However, User A wants User B's iPhoto library synced to their iPad. User A also wants User B's Calendars synced to their iPad.

    Alternatively, is it possible to only sync one-way, from a MacBook to an iPad? What I mean is, is it possible to sync your iCal data from a MacBook to an iPad, but prevent any changes on the iPad getting synced back into the MacBook?

  • Safari (7.0.1) is non-responsive (spinning pinwheel) upon start up.  It will work in temp user account but not in my main user acct.  I tried reinstall via comman-r prompt on start up but the problem persists.  Any suggestion for reinstall or repair?

    Safari is non-responsive after intitial start up.  Before it can load the homepage (google), it will hang and give a perpetual pinwheel until I force quit the program.  Safari works in temporary user account but not in my primary user account.  I have reinstalled osx via the command-r upon start up and the problem still persists.  Any suggestions on how to reinstall or repair safari?

    Thanks for thinking about my problem. I've already experimented with creating a new user, a co-administrator. The programs don't crash when that account is running, just as they don't crash when the guest-user's account runs. So it seems that the problem is limited to the default user's account, which is the one that was running when I installed the updates to the OS and the firmware. Another clue is that the programs that crash as soon as they are launched are *probably* the ones that were open at that time in that account. Yet deleting Saved Application States does not keep the programs from crashing when next launched.
    So the mystery continues, but these additional facts will help with the diagnosis, I hope.
    Thanks again for your suggestion.
    Gordon

Maybe you are looking for