Server logging duplicate identifier on topic error for push_notify and apspd - not sure why or how to stop

Need some help here -
I have been running OS X Server for a little over two years now on a MacMini and recently have found that the Server app is eating resources - pegging the CPU to 100% but not really sure why.
The system is supporting Filing sharing - not a big deal, two websites - again not a big deal, and Mail for two different domains - and appropriate DNS records.
All has had been good.  As this Mac Mini is also the iTunes library repository for the house, if it is taxed for some reason I see that show up in delays getting movies - and thus found that the server was maxing out the CPU.
What I see in the Log files is not helping much - I am getting repeats of the same apparent error --
Feb 18 15:27:49 spot.jlazyh.com push_notify[98297]: error: Error Domain=com.apple.APSProvider Code=11 "Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <81b526d7>" UserInfo=0x7fa904b134d0 {NSLocalizedDescription=Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <81b526d7>}
Feb 18 15:27:49 spot.jlazyh.com push_notify[98297]: error: Error Domain=com.apple.APSProvider Code=11 "Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <81b526d7>" UserInfo=0x7fa904dfa150 {NSLocalizedDescription=Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <81b526d7>}
Feb 18 15:27:49 spot.jlazyh.com apspd[224]: Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <82b526d7>
Feb 18 15:27:49 spot.jlazyh.com push_notify[98297]: error: Error Domain=com.apple.APSProvider Code=11 "Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <82b526d7>" UserInfo=0x7fa904817fc0 {NSLocalizedDescription=Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <82b526d7>}
Feb 18 15:27:49 spot.jlazyh.com apspd[224]: Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <83b526d7>
Feb 18 15:27:49 spot.jlazyh.com push_notify[98297]: error: Error Domain=com.apple.APSProvider Code=11 "Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <83b526d7>" UserInfo=0x7fa904b14350 {NSLocalizedDescription=Duplicate identifier on topic com.apple.mail.XServer.e5f32b2b-ed32-4188-94f1-f15c42c7f965: <83b526d7>}
This goes on and on - then something else gets logs, and then this starts up again as the logging event of interest.
As I do review my logs from time to time, I am pretty certain that it was not doing this prior to the upgrade.  
Any help and suggestions would be very much appreciated.
Cheers -
dan

Well I never setup an Exchange account, but with other accounts, when you go into Settings, then Mail, Calendar etc Settings. I can go into any of my mail accounts setup and there is a flip switch to just turn off. It leaves all the settings to be there later when you turn that account back on, but turning it off fully removes it from the Mail app.

Similar Messages

  • Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.

    also say explorer not reading SWF files and I have to reload them? Not sure what that is either,
    Thanks
    Jim

    Hi Nancy
    Trying to update my site got to make some changes.  Do you work on sites via remote? I am on Cloud.
    : Nancy O. 
    Sent: Monday, September 01, 2014 3:47 PM
    To: James Neidner
    Subject:  Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    created by Nancy O. <https://forums.adobe.com/people/Nancy+O.>  in Dreamweaver support forum - View the full discussion <https://forums.adobe.com/message/6692200#6692200>

  • Duplicates in the results of my scan...not sure why?

    Hello,
    I'm using the following bit of code to scan all computers in a file to look for the IP Address, Subnet Mask, DNS Servers, MAC Address and Gateway.
    It's working, but I'm seeing in my results sometimes multiple lines of exactly the same information for some of the computers I'm scanning?  I'm asking this community if they can think of why this would occur?
    Thank you.
    Here is my code:
    $dataColl = @()#Makes an array, or a collection to hold all the object of the same fields.
    $outputresults = "C:\Apps\Powershell_Scripts\Diskspace\subnetscan.csv"
    #process {
    foreach ($Computer in (get-content C:\Apps\Powershell_Scripts\Diskspace\servers.txt))
    if(Test-Connection -ComputerName $Computer -Count 1 -ea 0) {
    $Networks = Get-WmiObject Win32_NetworkAdapterConfiguration -ComputerName $Computer | ? {$_.IPEnabled}
    foreach ($Network in $Networks) {
    $IPAddress = $Network.IpAddress[0]
    $SubnetMask = $Network.IPSubnet[0]
    $DefaultGateway = $Network.DefaultIPGateway
    $DNSServers = $Network.DNSServerSearchOrder
    $IsDHCPEnabled = $false
    If($network.DHCPEnabled) {
    $IsDHCPEnabled = $true
    $MACAddress = $Network.MACAddress
    $OutputObj = New-Object -Type PSObject
    $OutputObj | Add-Member -MemberType NoteProperty -Name ComputerName -Value $Computer.ToUpper()
    $OutputObj | Add-Member -MemberType NoteProperty -Name IPAddress -Value ($IPAddress -join ",")
    #$OutputObj | Add-Member -MemberType NoteProperty -Name IPAddress -Value $IPAddress
    $OutputObj | Add-Member -MemberType NoteProperty -Name SubnetMask -Value $SubnetMask
    #$OutputObj | Add-Member -MemberType NoteProperty -Name Gateway -Value $DefaultGateway
    $OutputObj | Add-Member -MemberType NoteProperty -Name Gateway -Value ($DefaultGateway -join “,”)
    #$OutputObj | Add-Member -MemberType NoteProperty -Name IsDHCPEnabled -Value $IsDHCPEnabled
    $OutputObj | Add-Member -MemberType NoteProperty -Name DNSServers -Value ($DNSServers -join ",")
    $OutputObj | Add-Member -MemberType NoteProperty -Name MACAddress -Value $MACAddress
    $dataColl += $OutputObj
    $dataColl | Export-Csv -noTypeInformation -path $outputresults

    Are you running PowerShell 2.0, by chance?  Your code looks like it should work fine on PowerShell 3.0 or later, but there's one little "gotcha" with foreach loops in PowerShell 2.0:
    $collection = $null
    foreach ($item in $collection)
    Write-Host "Loop Body Executed"
    In PowerShell 2.0, the loop body will execute once, which people tend not to expect.  This was treated as a bug, and in PowerShell 3.0, if the collection is null, the loop doesn't do anything.  Even with that bug taken into account, I'm not sure
    how you're getting duplicate results, but you can try adding a check to make sure $Networks is not null before you enumerate over it, just to see if it helps:
    $outputresults = "C:\Apps\Powershell_Scripts\Diskspace\subnetscan.csv"
    get-content C:\Apps\Powershell_Scripts\Diskspace\serverstst.txt |
    ForEach-Object {
    $computer = $_
    if (Test-Connection -ComputerName $Computer -Count 1 -ea 0) {
    $Networks = Get-WmiObject Win32_NetworkAdapterConfiguration -ComputerName $Computer | ? {$_.IPEnabled}
    if ($Networks)
    foreach ($Network in $Networks) {
    $IPAddress = $Network.IpAddress[0]
    $SubnetMask = $Network.IPSubnet[0]
    $DefaultGateway = $Network.DefaultIPGateway
    $DNSServers = $Network.DNSServerSearchOrder
    $IsDHCPEnabled = $false
    If ($network.DHCPEnabled) {
    $IsDHCPEnabled = $true
    $MACAddress = $Network.MACAddress
    $OutputObj = New-Object -Type PSObject
    $OutputObj | Add-Member -MemberType NoteProperty -Name ComputerName -Value $Computer.ToUpper()
    $OutputObj | Add-Member -MemberType NoteProperty -Name IPAddress -Value ($IPAddress -join ",")
    #$OutputObj | Add-Member -MemberType NoteProperty -Name IPAddress -Value $IPAddress
    $OutputObj | Add-Member -MemberType NoteProperty -Name SubnetMask -Value $SubnetMask
    #$OutputObj | Add-Member -MemberType NoteProperty -Name Gateway -Value $DefaultGateway
    $OutputObj | Add-Member -MemberType NoteProperty -Name Gateway -Value ($DefaultGateway -join “,”)
    #$OutputObj | Add-Member -MemberType NoteProperty -Name IsDHCPEnabled -Value $IsDHCPEnabled
    $OutputObj | Add-Member -MemberType NoteProperty -Name DNSServers -Value ($DNSServers -join ",")
    $OutputObj | Add-Member -MemberType NoteProperty -Name MACAddress -Value $MACAddress
    $OutputObj
    } |
    Export-Csv -noTypeInformation -path $outputresults

  • Best keyboard and mouse for typesetting and design (not sure where else to put this)

    So, we got a new Mac Pro. I don't think this keyboard is going to work so well for typesetting. Too little travel on the keys I think. And the wireless mouse.... it's OK but I definitely need something different.
    Pros and Cons
    Apple keyboard: Pros - The function keys at the top for controlling audio, ejecting the CD tray, screen brightness etc.
    Cons - You have to hold the "fn" key and hit F12 to get to the Widgets. Didn't have to do that with our G5 keyboard. Metal body.... I'm CONSTANTLY shocking myself on this thing from the static of the carpet. Key travel.... they don't go down very far. Not sure if that is desirable or not.
    Magic Mouse: Pros - Multitouch surface is nice for moving left and right when zoomed in on something or moving an image around. The other multitouch gestures are pretty cool as well. It's wireless, that's nice. Havent had one of those before.
    Cons - It just feels like crap in my hand. It doesn't have the standard "hump" that most mice have to fill up your hand.
    So... what do people think? Ideas? Thoughts?

    TwitchOSX wrote:
    Well... turning on the "Use all F1, F2, etc. keys as standard function keys" makes the F12 go to the Widgets panel and F11 makes all the windows flow out off the edges so you can see the desktop, but then nothing else works so the F3 key that makes all the windows small and shows the different desktops doesn't work, the brightness keys don't do anything, the audio keys don't do anything...... argh. It's one or the other!
    Not true. The setting reverses the function of the Fn key. So to adjust brightness you have to press "Fn + F1/F2", and without Fn it does what F1 ought to do. (Barring what John says; the system takes precedence in stealing functions.)
    There is no way to get what you want: both sets of functions at once. Perhaps you could have a custom keyboard made, with two rows of function keys. (In the Good Ol' Days of WordPerfect 5, you could buy a custom keyboard with four rows of function keys, one for each of "Plain", "Alt", "Shift", and "Control" modifiers. Only for the truly lazy, too wary to press-and-hold a modifier key for a quarter of a second.)

  • Whenever I try to login to my instagram an error appears saying that they couldn't connect to their login server ... What is that for? And how to fix that?

    Whenever I try to login to my instagram an error appears saying that they couldn't connect to their login server ... What is that for? And how to fix that?

    I called Apple Support and they walked me through it. They told me to basically copy and paste my music to the external hard drive. (I think.) Or maybe it was they had me transfer a folder to the EHD. I don't exactally remember it was a few years back. But I tried to plug in the EHD before starting and...nothing. Still says same thing, "locate file."

  • Iphone is dead, gone  to insurance co. for replacement. They say because "Find My iPhone" is still active, they can't replace or try to fix it. problem is can't log in to de-activate it, cos email account does not exist anymore. How can I de-activate it?

    iphone is dead, gone  to insurance co. for replacement. They say because "Find My iPhone" is still active, they can't replace or try to fix it. problem is can't log in to de-activate it, cos email account does not exist anymore. How can I de-activate it?

    You never used your iPhone?
    You never logged into iTunes?
    Your AppleID & Password for iCloud&  iPhone should be the same AppleID &Password you used to log in here and post a message.
    -> Find your Apple ID

  • I updated to OS X 10.9.2 and turned on my calendar sync in iCloud, now my calendar is unavailable and shows moving calendar to server acount for 3 days. Not sure how to reset or gain access? Please help!

    I updated to OS X 10.9.2 and turned on Calendar sync in iCloud, now my calendar is unavailable and shows "moving calendars to server account" for 3 days. Not sure how to reset or access calendar. I can only force quit the app and when I restart it, it goes right to the same message. I have also tried turning off the sync in iCloud to no avail. Please help. I need my calendar!

    Try the solution posted by melosaris here: https://discussions.apple.com/message/23475967#23475967.

  • ERROR -- Checksum error for Hidden and Protected item ID

    Hello all,
    I usually get the error:
    Checksum error for Hidden and Protected item ID (10785219011206310), value (on), posted checksum (C1DEF33B4C8D57845151B7D18363B3D7), expected checksum (********************************), index_i (3), index_j (2), index_m (1);
    I have already found one thread with this question - Checksum error for Hidden and Protected item ID
    but there are no answers to this problem.
    Any thoughts how to solve this and what is causing it??
    Regards Pedro.

    Pedro,
    Read under the improved security section in the below article.
    http://www.oracle.com/technology/products/database/application_express/html/3.1_new_features.html
    I used to receive the same error because I was trying to update the value of the hidden and protected item on the same page repeatedly.
    I changed the item type to hidden to avoid the error.
    Hope this helps,
    Dippy

  • Checksum error for Hidden and Protected item ID

    Hi,
    I created an icon which is called 'Find an employee'. When a clicked on that icon, it shows employee id and employee name. And near these names there is a select button. But, it gives the following error:
    Checksum error for Hidden and Protected item ID (1558647128276141385), value (KING ), posted checksum (3F6EC88428199012945F76490A29168B), expected checksum (********************************), index_i (4), index_j (3), index_m (3);
    Is there anyone who knows the reason of this error?
    Regards,
    Edited by: user13385266 on 23-Jul-2010 06:00

    Erro Checksum error for Hidden and Protected item ID (1118508917223363)
    Edited by: taylor gao on 2011-1-13 下午6:26

  • Checksum error for Hidden and Protected item

    I have a region with 3 items - a Text field, a Text area and a Hidden and Protected item. When clicking on the save button the record should be written to the table. However I get the following error:
    ++Checksum error for Hidden and Protected item ID (7676217916943303), value (), posted checksum (1060941776BCEA7DDAE813A442DF01E3), expected checksum (********************************), index_i (8), index_j (1), index_m (3);++
    When I change the hidden and protected field to a regular text field I am able to successfully process the page.
    Do I have to do anything different when I have a hidden and protected field? Would appreciate any suggestions/comments to help resolve this issue.
    Regards,
    Ghazi

    If you have client-side code that changes the value of a "Hidden and Protected" item after the item/value has been emitted to the page by Application Express, you need to change the item type to Hidden, instead.
    Scott

  • No sound in Browsers and low memory errors for Snood and Ultimate Solitaire

    No sound in Browsers and low memory errors for Snood and Ultimate Solitaire. Those are what I'm experiancing. The no sound happens in Safari, Firefox and Opera. Both Snood and Ultimate Solitaire won't load because of 'Not Enough Memory' yet I have 2gigs. Other applications work fine with sound. ie iTunes, GarageBand, etc are ok. I've deleted Snood Prefs with no effect. Any ideas?
    thanks

    No sound in Browsers and low memory errors for Snood and Ultimate Solitaire. Those are what I'm experiancing. The no sound happens in Safari, Firefox and Opera. Both Snood and Ultimate Solitaire won't load because of 'Not Enough Memory' yet I have 2gigs. Other applications work fine with sound. ie iTunes, GarageBand, etc are ok. I've deleted Snood Prefs with no effect. Any ideas?
    thanks

  • When i try to download the new version of iTunes, I get an error message saying the download was for 32bit and I need the 64bit. How do i download 64bit?!?!

    When i try to download the new version of iTunes, I get an error message saying the download was for 32bit and I need the 64bit. How do i download 64bit?!?!

    Which I get. But clicking on that link you provided does not give you the option of choosing between 32 and 64 bit installers.
    Yeah, that was certainly a 32-bit installer file being referred to in the other message, too. (The 64-bit installer file is called iTunes64Setup.exe.)
    Just in case it's an issue with your normal browser not working properly with the system-detection equipment on the page (there's a javascript control that checks for operating system specifics, and is supposed to deliver the correct Mac or Windows installers), let's try a different web browser for the download. If you use Firefox instead of IE (or vice versa), do you get offered an iTunes64Setup.exe instead of an iTunesSetup.exe?

  • Solved: checksum error for hidden and protected item ID

    hi all,
    I have 3 tabs namely search,create and reports.
    when i move from
    search to create ----> works fine
    search to reports----> works fine
    create to reports ---> works fine
    create to search ---> works fine
    but after comming to reports tab when i click to any of the tabs
    error occurrs as follows
    Checksum error for Hidden and Protected item ID (5322228830115090), value (R4897903101326173), posted checksum (A2328AA561179133CD115ABB81EB0333), expected checksum (********************************), index_i (2), index_j (1), index_m (1);
    Please could any guide me to rectify this error?
    Note: This error happened after i copied a report from the create page to the report page. and that report page is having an hidden item.
    Thanks in advance
    bye Srikavi

    Hi all,
    i changed the hidden and protected item as hidden.
    Works fine.
    but, a question if it is hidden and protected item what should be the solution?
    why this kind of error occured?
    bye
    Srikavi

  • Erro Checksum error for Hidden and Protected item ID (1118508917223363)

    i am generating one report with delete option.For delete Link i am using one HIdden item P1_SELECT
    when i select it with text field then no error.but when i select it hidden then it show me
    Checksum error for Hidden and Protected item ID (1118508917223363), value (2), posted checksum (C4733DF9C658202B914CF661E2349FFC), expected checksum (********************************), index_i (6), index_j (4), index_m (4);How can i remove this error.
    Thanks

    Hi,
    The problem is when you are creating an item "Hidden and protected" so apex will associate a checksum value for that item's value and as you are changing the value, the checksum will not changed.
    If there is no security issue use "Hidden" instead of "Hidden and protected" for that item.
    Regards,
    Kartik Patel
    http://patelkartik.blogspot.com/
    http://apex.oracle.com/pls/apex/f?p=9904351712:1

  • Assigning a new tax key for V0 and VAT not possible

    Hi Experts,
    Invoice is been created successfully in SUS , XML transfered to XI which in turn created the IDOC in ECC.
    I get the below error while transferring theinvoice IDOC from XI to ECC.
    Assigning a new tax key for V0 and VAT not possible
    Message no. FD008
    Diagnosis
    In Financial Accounting customizing, the tax ID transferred in the invoice is missing so that the system cannot determine a tax code. The system could not determine an entry with the value V0 nor with the value VAT .
    Procedure
    In Financial Accounting customizing, include the external tax ID and a corresponding internal tax code for the present partner.
    Please let me know if I am missing any setup in ECC as I have already maintained the setup in OBCA, OBCD and OMRY.
    Thanks,
    -Devi Swain

    Hi Devi,
    Can you please tell me ,how you resolved this issie,I am getting same error.I I have already maintained the setup in OBCA, OBCD and OMRY.
    Thanks,
    -Sunil

Maybe you are looking for

  • 5th gen iPod Touch crashes spontaneously

    Hi there My 5th Gen iPod Touch crashes at random times, usually when on wifi.  When it does this, it resets my clock by ten or twenty or thirty minutes and I have to fix the time because it does not automatically restore via the Internet.  I tried re

  • Black background in map VB 2.0 ( TM 9.0)

    Hi all, may anybody can help. We work on a Democase for SAP TM. VB 2.0 works with Content from TM 9.0 because the objects are shown in the map, but the Background is black. We using the "Default" entry in VB 2.0 matched with NAVTEQ Maps ( Standard en

  • Microsoft Silverlight and Adobe AIR

    I ran across this by being curious but I have installed on my system the Microsoft Silverlight Plugin and the Adobe AIR plugin... I am curious as to when and/or how these two plugins can be integrated into the Safari browser... I know for definite th

  • HT1688 I have lost my iphone.  I have my locator on. can apple help me find it?

    I have lost my iphone.  I have my iphone's locator on.  Can Apple help me fine it?  I have 30% battery life left on it.

  • Target Value in Numbers'09

    Bonjour, Basically, spreadsheets are designed for "*what if*" question while target value is the answer to "*how to*". Let's take an example A1=1 (value) A2= 2*A1-3 (formula) Result is -1. "*What if*" A1=2 ? Answer is A2= 1. Now, "*how to*" obtain th