Mail to users that don't exist....

Hiya
How can I make email sent to a non existant address ([email protected]) get bounced to the sender. At the moment everything is being received by my admin account.
Surely there is a way to set this up?
Please help....
shambeko

You have 'Copy undeliverable mail to' set to your admin account

Similar Messages

  • Deauthorizing computers that don't exist

    How am I supposed to deauthorize computers that don't exist? Every time I've had to reinstall Windows, iTunes eats up another "authorization". Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?

    Every time I've had to reinstall Windows, iTunes eats up another "authorization".
    Your supposed to deathorize BEFORE a re-install. Not after. iTunes makes it very easy to do that.
    Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?
    Apple makes it easy enough to de-authorize your computer. You can even do a de-authorize all once a year. Log on your account and you should be able to not only view your authorizations, but have an option to de-authorize all of them.

  • How do I show a count for rows that don't exist?

    Hi, I'm trying to count the number of records grouped by rank(B,C,R),month,and year. Basically, anytime a part fails testing a record is entered which records the failure Rank and occurrence date. A record is only inserted if a part failed for specific rank. So not all 3 ranks will have entries. I'm able to count all ranks by month,year that do exist. But how do I get values of 0 for the ranks that don't exist? I just created a table qa_rank that has just one column rank with 3 records(b,c,r). but its not being used as of now. rank is just a column in qa_occ record.Here is my query.
    select to_char(occdate,'YY') as yr, to_char(occdate,'MM') as mn,
    rank, count(occdate)
    from qa_occ
    where q.occdate between '1-Apr-2005'and '31-Mar-2006'
    and q.supplier = '11107'
    group by to_char(q.occdate,'YY'),to_char(q.occdate,'MM'),q.rank
    order by to_char(q.occdate,'YY'),to_char(q.occdate,'MM')
    which returns this
    YY MM RANK COUNT(OCCDATE)
    05 09 C 2
    05 10 C 2
    05 11 C 1
    05 11 R 1
    06 01 C 3
    06 02 C 1
    06 03 B 1
    06 03 C 2
    I need it to return C,B,R for everymonth. If no records exist then the count for the month,rank should be 0. Any ideas? Thanks.

    something like:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select * from qa_occ;
    OCCDATE   PART            R INDEXPOINTS
    15-SEP-05 B3661-RYPX-A000 C           4
    25-SEP-05 B3661-RYP-A000  C           4
    11-OCT-05                 C           7
    20-OCT-05 B3661-RYP-A000  C           4
    11-NOV-05                 C           4
    18-NOV-05 B3661-RYPX-A000 R           0
    11-JAN-06 B3661-RYP-A000  C           4
    25-JAN-06 3511-RNA0-0111  C           4
    27-JAN-06 3511-RNA0-0111  C           4
    15-FEB-06 3511-RNA0-0111  C           4
    07-MAR-06 B3661-RYP-A000  C           4
    14-MAR-06 B3661-RYP-A000  C           4
    15-MAR-06 3511-RNA0-0111  B          13
    13 rows selected.
    assuming that there are only three ranks available B, C,and R we considered this as a lookup values. now in the query below we incorporate an inline view for the lookup values:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select qa.yr, qa.mn,
    28         decode(qa.rank,lk.rank,qa.rank,lk.rank) rank,
    29         sum(decode(qa.rank,lk.rank,qa.cnt,0)) cnt
    30    from (select to_char(qo.occdate,'YY') as yr,
    31                 to_char(qo.occdate,'MM') as mn,
    32                 qo.rank,
    33                 count(qo.occdate) cnt
    34            from qa_occ qo
    35          group by to_char(qo.occdate,'YY'),
    36                   to_char(qo.occdate,'MM'),
    37                   qo.rank) qa,
    38         (select 'B' rank from dual
    39          union all
    40          select 'C' rank from dual
    41          union all
    42          select 'R' rank from dual) lk
    43  group by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank)
    44  order by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank);
    YR MN R        CNT
    05 09 B          0
    05 09 C          2
    05 09 R          0
    05 10 B          0
    05 10 C          2
    05 10 R          0
    05 11 B          0
    05 11 C          1
    05 11 R          1
    06 01 B          0
    06 01 C          3
    06 01 R          0
    06 02 B          0
    06 02 C          1
    06 02 R          0
    06 03 B          1
    06 03 C          2
    06 03 R          0
    18 rows selected.
    SQL>

  • Movies that don't exist

    front row looks in the movies folder and lists the contents, right?
    well it's showing titles in that are not in and have never been
    in my movies folder.
    nothing happens when selecting these (probably because they don't exist).
    of course i can't delete since they do not appear in the finder or
    spotlight search.
    i tried deleting everything in the movies folder, of course all
    that's left in front row are the movies that don't exist.
    any suggestions?
    Message was edited by: avinbc

    Are your movies, even though they're gone from the hard drive, listed in iTunes somewhere? That would make them appear in Front Row even under the Videos section.
    The Front Row preference file does not remember anything except which module was the last one you used.
    -Doug

  • Get rowns that don't exist in any of the tables.

    Hi,
    I need to implement some views to compare systems.
    This views will compare tables with the same structure and I want to extract the rows that don’t exist in any of the sides.
    I need to implement some views to compare only two tables, others to compare 3 tables and one to compare 5 tables and another to compare 10 tables!
    Each table can contains from a few rows up to 10 million rows (that was the biggest count I found for this tables).
    My test scenario:
    CREATE TABLE TEST_TABLE
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE2
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE3
    (COL1 NUMBER ,
    COL2 CHAR(25));
    insert into TEST_TABLE (COL1,COL2) values (1,'2');
    insert into TEST_TABLE (COL1,COL2) values (11,'t1');
    insert into TEST_TABLE2 (COL1,COL2)  values (1,'2');
    insert into TEST_TABLE2 (COL1,COL2) values (22,'t2');
    insert into TEST_TABLE3 (COL1,COL2) values (1,'2');
    insert into TEST_TABLE3 (COL1,COL2) values (33,'t3');To find the differences between two tables I implemented the following:
    select * from
    (select * from TEST_TABLE
    minus
    select * from TEST_TABLE2
    union all
    (select * from TEST_TABLE2
    minus
    select * from TEST_TABLE
    Result:
    COL1 COL2
    11     t1                      
    22     t2                       For the 3 tables comparison The result should be:
    Result:
    COL1 COL2
    11     t1                      
    22     t2                      
    33     t3                       For the other ones I can implement the same way, but for sure this is not the prettiest and most performing solution!
    How can I achieve the result I intent with the most performance?
    Thanks,
    Ricardo Tomás

    You didn't say if you allow duplicates in your tables, so i assumed you didn't.
    If a single table could have multiple occurrences of a given col1, col2 combination you would need to distinct the col1,col2 list from each table before doing the union all.
    ME_XE?  select
      2     col1, col2
      3  from
      4  (
      5     select col1, col2       from test_table
      6             union all
      7     select col1, col2       from test_table2
      8             union all
      9     select col1, col2       from test_table3
    10  )
    11  group by
    12     col1, col2
    13  having count(*) = 1;
                  COL1 COL2
                    33 t3
                    22 t2
                    11 t1
    3 rows selected.
    Elapsed: 00:00:00.01
    ME_XE?

  • How to stop iphoto from recovering photos that don't exist?

    I just bought my iMac and transferred all my photos from my backup drive to the iphoto library. In organizing my photos I must have deleted photos or had some corrupted photos in the transfer. Now, every time I open iphoto is says it has recovered 75 or so photos, creates a folder for them, but it's empty. How do I stop it from trying to recovery photos that don't exist? I've searched and have found nothing. The folder generated by iphoto as a recovered folder is empty...

    Welcome to the Apple Discussions.
    Can you give me an idea of why this type of error occurred
    Because of a minor glitch when iPhoto failed to clean up after an import.
    why has this now corrected the error?
    iPhoto should remove that Importing Folder at the end of the importing session. When you launched iPhoto again it saw the folder and (incorrectly) assumed there was an import in progress. Removing the folder means that iPhoto won't make that assumption.
    There is no reason to assume that the problem wil recur.
    Regards
    TD

  • Import photos that don't exist...

    When I import pictures into iPhoto from an external hard drive, there are mystery pictures that are showing up. These are pictures that used to exist on the HD but that I deleted from there.
    I deleted my entire iPhoto library and emptied the trash within iPhoto. I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
    I tried to re-import the pictures from the external HD to iPhoto, but AGAIN, the mystery pictures are there. I've checked the folder in the HD that they are showing up in. But, they are not there. I've even done a search on my computer, and the files don't exist.
    Please help me figure out why this is happening. I just don't know how to get rid of these pictures. I want them gone...completely!!!
    Thank you!!!

    I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
    Never make changes to the structure or content of the iPhoto library using the finder
    make sure you have the photos you want safe and drag the baad iPhoto library to the trash and empty it and then depress the option key and launch iPhoto and create anew library - now start using this correctly set up library
    LN

  • 'Raw' Data XMP view shows internal properties that don't exist in the data

    In FileInfo view for an image, if I switch to the 'Raw Data' tab, it shows photoshop:ColorMode and photoshop:ICCProfile. However, when I check the actual XMP data of the image e.g. using exiftool or a text editor, these properties do not exist in the XMP data.
    According to this thread: http://forums.adobe.com/message/5057589 these are both internal properties to PS / Bridge, which explains why they don't exist in the XMP. But why are they shown in the 'Raw' data view for the XMP then? Showing them here is just confusing as it makes it seem like they should exist in the XMP data.
    I can't really see any point in including nonexistent tags in the Raw Data view. But if it is deemed necessary, how about highlighting them a different color, such as using a grey font instead of black? At least it would indicate that they were different to the real data.
    P.S. This is with Bridge CS5, possibly the issue has been fixed in CS6?

    Hi Paul
    The issue is that the Bridge File Info panel is showing these tags in the XMP for the image, but if you check the XMP of the file, those tags aren't there.
    As a side issue, Bridge File Info panel is also showing the XMP in a different structure to that which exists in the actual file. There are two issues here really
    ACR is not writing the photoshop:ColorMode tag (or the photoshop:ICCProfile tag) to the JPEG (I checked the .xmp sidecar file for the RAW file and the photoshop:ColorMode tag does exist in there, but does not exist in the JPEG file converted through ACR).
    Bridge's File Info panel is showing data in the XMP that is not actually there.
    Although I would like the ColorMode tag added to the image, I don't think point 1 is a real issue, since the ICC profile is embedded okay. Point 2 does appear to be a bug (or at least it is confusing if it is intended behaviour).

  • Exchange 2013 SP1 displaying users that no longer exist

    I'm currently in the process of migrating my Exchange 2010 SP3 environment over to 2013 SP1 and am hoping someone can give me a hand with an issue I'm having in Exchange 2013.  After installation of 2013 with no errors returned, when I log in to the
    admin console I'm seeing users that have been deleted from my AD for quite some time with a mailbox type of "Legacy".  I've searched high and low to find these accounts and cannot find them anywhere.  I've searched through ADSI Edit and
    LDP and nothing.  If I click on any of these users and choose to edit I get this error message:
    The operation couldn't be performed because object 'GUID' couldn't be found on 'domain controller'.
    The odd thing to me is that these "Legacy" users are nowhere to be found on my Exchange 2010 server.
    Anyone have any other ideas of how and where I may be able to find these users?

    Below powershell script can help you find out the lingering objects in your AD.
    $myForest = [System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()
    $dclist = $myforest.Sites | % { $_.Servers } |% { $_.Name }
    $dcs_guid = get-qadobject -searchroot 'CN=Sites,CN=Configuration,DC=domain,DC=root' -Type nTDSDSA -IncludedProperties guid,dn -DontUseDefaultIncludedProperties | % {@{GUID=$_.guid;DN=$_.dn}}
    foreach ($dcforestname in $dclist){
        foreach ($dc_src_guid in $dcs_guid){
            $hostname = ((($dc_src_guid.DN).split(',')[1]).split('=')[1]).tostring()
            $dcfqdn = $dclist -like "$hostname*" | Out-String -Stream
            $dclist_arr = ($dcfqdn).split(".")
            $dcname = $dclist_arr[0]
            $dcdomain = $dclist_arr[1 .. ($dclist_arr.count-1)]
            $domain_dn = ""
            for ($x = 0; $x -lt $dcdomain.Length ; $x++){
                if ($x -eq ($dcdomain.Length - 1)){$Separator = ""}else{$Separator =","}
                [string]$domain_dn += "DC=" + $dcdomain[$x] + $Separator
            write-Host "repadmin /removelingeringobjects $dcforestname" $dc_src_guid.GUID $domain_dn "/advisory_mode >> lingering_debug.log"
    Regards, Riaz Javed Butt Consultant Microsoft Professional Services MCITP, MCITP (Exchange), MCSE: Messaging, MCITP Office 365

  • How to change protected variants created by users that no longer exist

    There are several older variants for which background jobs are scheduled for daily prcessing.  These variants were created and protected by uses that no longer exist in SAP.
    How to  unprotect and change these variants to reflect new requirements.

    Hi Anam
    1. Execute tcode VARCH and enter the program and variant name and make the changes, if the system allows you to do so.
    2. Check with the basis/security team if they can extend the validity and reset the password for the old ids.
    3. If the above doesnt work, you will need to copy the variants manually
    Moving forward, when you create/change jobs, request the basis/security team to create common ids like OTCADM, P2PADM, etc. Ensure that all the variants and jobs are created/changed using this common id. Basis/Security team can controll by opening and closing the ADM account on request from project team and the usage can be recorded for tracking.
    To check the jobs that use a known variant, use tables TBTCP, TBTCO.
    Best Regards
    Sathees Gopalan

  • Issues exist in release build that don't exist in debug build

    I've been working on a Flex 4.1 project and have recently noticed an issue that does not exist in the debug build.  Then when you export a release build and run it the issue appears.  This is the only change that's made that breaks it.  To me this seems to be a bug in the player, SDK, or compiler that I might need to post, but I figured I'd submit it here in case I'm missing something.
    Basically it seems to be an issue with objects in an ArrayCollection being instantiated as the correct class type before being added.
    When in debug mode, if you set a breakpoint to view the objects in the ArrayCollection you will see them appropriately as their Strongly Typed class.  However, when the release mode build is run it will throw an RTE on that same line indicating that the ArrayCollection members are ObjectProxy and they can't be cast into their Strongly Typed class.
    Here's the RTE that happens and right now I just need to know if I'm missing something, or if this looks like a bug, and to which bugbase it should be posted (Flash Player, Flex SDK, Flex Compiler, etc.)
    TypeError: Error #1034: Type Coercion failed: cannot convert mx.utils::ObjectProxy@28250141 to
    <confidential package path>.PlayerPageSummary.
        at <confidential package path>.service::InitializeStorefrontServiceResponseCommand/execute()
        at org.robotlegs.base::CommandMap/execute()
        at org.robotlegs.base::CommandMap/routeEventToCommand()
        at MethodInfo-1674()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at <confidential package path>::<confidential acronym>ModuleActor/dispatchLocal()
        at <confidential package path>.live::InitializeStorefrontService/result()
        at mx.rpc::AsyncToken/http://www.adobe.com/2006/flex/mx/internal::applyResult()
        at mx.rpc.events::ResultEvent/http://www.adobe.com/2006/flex/mx/internal::callTokenResponders()
        at mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
        at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()
        at mx.rpc::Responder/result()
        at mx.rpc::AsyncRequest/acknowledge()
        at DirectHTTPMessageResponder/completeHandler()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()

    Alex,
    Thanks for your help and here's an update on this from me.  We did try out your suggestion to see if "PlayerPageSummary can be retrieved via getClassAlias".  I'm not the one that did the testing, but my teammate who did, said that the class being registered was not the issue.
    While he was working on that I further investigated our ANT builder and configuration to see what might have been different between ANT building non-debug SWF and Flash Builder building non-debug SWF.  Turns out that my teammate had added some [ArrayElementType] metadata that I was not aware of.  Once I realized that, I added it as metadata to be kept in my flex-config.xml which ended up solving the debug vs. release mode issues.
    Afterwards, I double-checked the livedocs and also did some Googling.  From the above it appears that debug SWF keep all metadata without you needing to explicitly tell it to. On the other hand, outside of a handful of metadata tag such as [Bindable] release builds neeed to be told what to keep.
    Does this sound right?
    Also, do you know off the top of your head if this is documented by Adobe anywhere and what the link is?  I had a real tough time finding anything mentioning how debug SWF retain all metadata.
    Thanks again for your help!

  • Old Reminders in Notification Centre That Don't Exist in Reminders

    In the Notification Centre on my Mac I have 2 Reminders from 61 days ago listed, but I don't think they actually exist - if I click on them in the Notification Centre the Reminder application opens but on today, it doesn't go the the reminder I clicked on, and if I search in Reminders I can't find the entries either, neither can I if I go back 61 days in the application, they just don't exist.
    I've turned notifications for Reminder off and on, it doesn't make a difference; obviously this is a corruption in a cache or file somewhere, does anyone know where the Notification information is held and how I can get rid of these two incorrent entries?
         David
    Mac OS X 10.8.4

    I found it....
    Kill the /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/Notification Center process and deleted the .db file in ~/Library/Application Support/NotificationCenter - the NotificationCenter process automatically restarts (so be quick on the delete of the .db file!), rebuild the database and it's clean now, the two old Reminder entries have gone.

  • I just synced my IPhone 4S with my yahoo mail. It tells me about 4 unread messages that don't exist...

    I've already tried out the 'delete account' and double clicking the home button but they keep coming back. What do I do?

    Thanks for the quick reply VK! Unfortunately, neither of those suggestions produced any results.
    I'm thinking that somewhere there is a file or database that I can delete or rebuild? I know there aren't actually any unread messages as this problem only shows up in Mail.app on my computer, not in Thunderbird, webmail or iPhone.

  • Time Machine only keeps two days backup, displays old backups that don't exist. Occurs on two separate HDD's

    I have a 15" 2010 MBP C2D-2.53 in completely original form except it is running OSX 10.8. Applecare just ran out so that's not an option, FYI. Lately I went to fetch an old file from TM because the current file was corrupt and I noticed that TM was only backing up for the past couple of recent days. Oddly enough, it also displayed a couple of backups dated from 2010, even though the external HDD I'm using was purchased 2 months ago and the files displayed in the "2010" backup did not exist at that time so it's an impossibility. The backup disc is a toshiba canvio external 320gb USB.
    I thought that was odd so I zeroed and reformatted that disc using disc utility. I made it the TM disc again, did the usual backup without error and waited a couple of days. Sure enough, when I checked it had continued the trend of displaying the impossible 2010-dated backup and was still only backing up the past couple of days' material correctly. I decided that this was all getting a bit silly, so I plugged an old external WD USB hard drive, formatted it and made it my second time machine backup disc. Waited a couple of days, accessed it, saw the same exact thing as with the other external drive.
    I'm perplexed, however based on these rudimentary tests I'm guessing the culprit lies with the machine rather than the external hard drives. These facts may be unrelated, but I also notice that when I go to eject the toshiba external drive, it says something like "there is more than one partition, would you like to eject one or all" and the machine also had some work done on it by Apple recently. Specifically, a new logic board, airport card and complete erase/install where I reinstalled data successfully through migration assistant. The work was done due to kernel panics at boot. Thankfully for now I've also got CCC cloning the drive, but I do require the long-term snapshots that TM takes.
    Any help would be greatly appreciated, and I'm willing to do some digging to fix this issue.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Is there a method for suggesting apps that don't exist yet?

    As a frequent user of call forwarding, it would be great if when I input a phone number it displays as one of my Contacts. This would help avoid mistakes, such as mistyping my home phone number; I might miss that I inputted one wrong digit, but if Home didn't come up I'd see that immediately.
    Is there anywhere ideas like this can be posted?
    thanks.

    Smart album with face is none (I believe - check the available options)
    Unfortunately since iPhoto does not know that faces exist exist in photos that it has not found a face you will only get faces that you have not named - to see all photos with potential faces that iPhoto has not found you need to go through all photos and look - I used to add a keyword "face checked" after I went through a photo but fell behind and haven't gotten back to it - with that you can use keyword is not face checked to clean out ones you have done
    LN

Maybe you are looking for

  • Problem with database tool kit, and MS Office Tool kit.

    One of my programmer's who has the Office tool kit noticed this on Monday, and we haven't been able to find the problem yet. We use the database connectivity reads and writes to a MS Access database. This program reads the data from a Symbol Scanner,

  • Getter/setter methods -- how do I use the return values

    I'm just learning Java, and I haven't been to this site since the end of July, I think. I have a question regarding getter and setter methods. I switched to the book Head First Java after a poster here recommended it. I'm only about a hundred pages i

  • How to save session state for a text item

    hi @averyone, i designed in interactive report with one apex_item.text field, let's name it "count" normally the report has more then one pages. the report should work like a kind of a shopcart. the user enters some data into "count" and moves on to

  • How do you unlock an Ipad SIM card?

    I just upgradesd to the latest Ipad software. Once th Ipda restarted I got an error indicating the the SIM card was locked. How can I unlock it and get my Ipad back?

  • Average access points/square footage

    Hi, if I need a rough estimate on how many access points a 40,000 sq. ft. building would require, can I assume 1 access-point per 100 sq. ft.? Is that right?