Getting too many random skype contact requests bec...

someone linked me to a site called "skypecontacts.com" and now my name is on there or something and people are sending me random skype invites and its really weird getting all these invites and i dont want someone i know to send me an invite and then accidently say "ignore". The website thats causing this is called skypecontacts.com BTW. So how do I stop this?

Unfortunately, there is no option yet to stop any user from sending you friend requests.  Instead of Ignore, you can also consider clicking Block so a particular user won't be able to resend you contact requests in the future.
IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
| skypefordummies.blogspot.com | 

Similar Messages

  • Suddenly getting "Too Many Open File" error

    Dear All,
    I have listener program which have been working well for the past few months. Suddenly I start to get "Too Many Open File" error. What can be solution? Is it I need to increase the file descriptors or any other solution? Thank you.

    Dear Ejp,
    Attached below is my codes. I have remove some of the fields for db just to make the code a bit more easier to read. Where do you think is leaking?
    public class commServer {
    public static void main(String[] args) {
    try {
                   final ServerSocket serverSocketConn = new ServerSocket(8888);
                        while (true)
                                  try
                             Socket socketConn1 = serverSocketConn.accept();
    new Thread(new ConnectionHandler(socketConn1)).start();               
                                  catch(Exception e)
                                                 System.out.println(e.toString());
    catch (Exception e)
    System.out.println(e.toString());
    //System.exit(0);
    class ConnectionHandler implements Runnable {
    private Socket receivedSocketConn1;
    DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
    DateFormat formatter = new SimpleDateFormat("EEE, dd MMM yyyy");
    DateFormat inDf=new SimpleDateFormat("ddMMyyHHmmss");
    DateFormat outDf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    ConnectionHandler(Socket receivedSocketConn1) {
    this.receivedSocketConn1=receivedSocketConn1;
    //@Override
    public void run() {
    Connection dbconn = null;
    BufferedWriter w = null;
    BufferedReader r = null;
    try {
    PrintStream out = System.out;
         BufferedWriter fout = null;
    w = new BufferedWriter(new OutputStreamWriter(receivedSocketConn1.getOutputStream()));
    r = new BufferedReader(new InputStreamReader(receivedSocketConn1.getInputStream()));
    int m = 0, count=0;
    String line="";
    String n="";
    w.write("$PA\n");
    w.flush();
    while ((m=r.read()) != -1)
    Date dateIn = new Date();
         n = n + (char) m;
         int i = n.indexOf("GET");
                                  if(i != -1) {
                                       break;
         if (m==35)
         String ori = n;
         String noCheckSum = n.substring(0,(n.length()-4));
                   int addExist = n.indexOf("@");
    String[] slave = null;
    if(addExist!=-1)
         slave = noCheckSum.split("@");
              n = slave[0];
              //System.out.println(" slave : "+slave.length);
                   else
                        n = noCheckSum;
         String[] result = n.split(",");
         Statement stmt = null;
         w.write("$PA\n");
    w.flush();
                   int count1 = 0;
    Date date = Calendar.getInstance().getTime();
    String today = formatter.format(date);
                        String filename= "MyDataFile"+today+".txt";
    boolean append = true;
    FileWriter fw = null;
    try
    fw = new FileWriter(filename,append);
         fw.write(ori+" "+dateFormat.format(dateIn)+"\n");//appends the string to the file
         Date dateOut = new Date();
         fw.write("$PA"+" "+dateFormat.format(dateOut)+"\n");//appends the string to the file
    catch (IOException ex)
                        //ex.printStackTrace(new PrintWriter(sWriter));
                        System.out.println("MyError:IOException has been caught in in the file operation");
                        ex.printStackTrace();
                        finally
                   try
         if ( fw != null )
              fw.close();
         else
              System.out.println("MyError:fw is null in finally close");
                        catch(IOException ex){
                        System.out.println("MyError:IOException has been caught in fw is null in finally close");
                        ex.printStackTrace();
         try
                             String deviceID=result[3].trim();      
                             String dateTime=result[4].trim();                          
                             String[] result2 = result[10].split("'");                          
                             String gpsDate = result2[1].trim().substring(0,6);                    
                             String gpsTime = result2[1].trim().substring(6,12);                         
                             String gpsLat = result2[1].trim().substring(13,20);
                             String latitude = result2[1].trim().substring(13,20).substring(0,2)+"."+result2[1].trim().substring(13,20).substring(2,7);
                             String gpsLong = result2[1].trim().substring(21,29);
                             String longitude = result2[1].trim().substring(21,29).substring(0,3)+"."+result2[1].trim().substring(21,29).substring(3,8);
                             String speed = result2[1].trim().substring(30,33);                         
                             String course = result2[1].trim().substring(33,36);
                   String dateTimer = null;
                             try
                             Date inDate=null;
                             inDf.setTimeZone(TimeZone.getTimeZone("UTC"));
                             inDate=inDf.parse(dateTime);
                             outDf.setTimeZone(TimeZone.getTimeZone("Asia/Kuala_Lumpur"));
                                       dateTimer=outDf.format(inDate);
                             catch(ParseException ex)
                             System.out.println("MyError:Parse Error has been caught for date parse close");
              ex.printStackTrace();
                        dbconn = DriverManager.getConnection("jdbc:mysql://192.168.1.155:3306/db1?"+"user=db1&password=test1");
                   stmt = dbconn.createStatement();
                   String selectQuery2 = "Select * from tripData Where deviceID='"+ deviceID +"' and dateTimer>'"+dateTimer+"' Order By dateTimer Desc Limit 1";
                   ResultSet rs2 = stmt.executeQuery(selectQuery2);
                   String updateQuery = "";
                   if(rs2.next())
                        String previousLatitude="";
                        String previousLongitude="";
                        String previousSpeed="";
                        previousLatitude = rs2.getString("latitude");
                        previousLongitude = rs2.getString("longitude");
                        previousSpeed = rs2.getString("speed");
                        updateQuery = "UPDATE device SET " +
                                       "latitude='" + previousLatitude +
                                       "',longitude='" + previousLongitude +
                                       "',speed='" + previousSpeed +
                                       "' WHERE serialNumber='" + deviceID + "'";
                   else
                   updateQuery = "UPDATE device SET " +
                                       "latitude='" + latitude +
                                       "',longitude='" + longitude +
                                       "',speed='" + speed +
                                       "',course='" + course +
                                       "',dateTimer='" + dateTimer +
                                       "' WHERE serialNumber='" + deviceID + "'";
                        count = stmt.executeUpdate(updateQuery);                    
                   String insertQuery = "INSERT INTO tripData" +
                                       "(latitude,longitude,speed,course,dateTimer,deviceID)" + " VALUES ('" +
                                       latitude + "','" + longitude + "','" + speed + "','" + course + "','" + dateTimer + "','" + deviceID + "' )";
         count = stmt.executeUpdate(insertQuery);
              if(addExist!=-1)
              for(int iSlave=1; iSlave<slave.length ; iSlave++)
                                            String[] slaveDetails = slave[iSlave].split(",",-1);
                                            String slaveEventType = slaveDetails[0];
                                            String slaveGroup = slaveDetails[1];
                                            String slaveUnitID = slaveDetails[2];
                                            String slaveBattLevel = slaveDetails[3];
                                            String slaveSwitchStat = slaveDetails[4];
                                            String slaveTempHumid = slaveDetails[5];
                                       String slaveTemp="",slaveHumid="";                                   
                                       if(slaveTempHumid.length()>0)
                                       slaveHumid = slaveTempHumid.substring(5,7);
                                                 if(slaveTempHumid.charAt(0)=='P')
                                                 slaveTemp = "+"+slaveTempHumid.substring(1,3)+"."+slaveTempHumid.substring(3,5);                                                  
                                                 else if(slaveTempHumid.charAt(0)=='M')
                                                 slaveTemp = "-"+slaveTempHumid.substring(1,3)+"."+slaveTempHumid.substring(3,5);
                                       slaveBattLevel = slaveBattLevel.trim().substring(0,2)+"."+slaveBattLevel.trim().substring(2,3);
                                            String insertQuery2 = "INSERT INTO tripDataSlave" +
                                            "(dateTimer,deviceID,slaveUnitID,slaveEventType,slaveGroup,slaveBattLevel,slaveSwitchStat,slaveTemp,slaveHumidity)" + " VALUES ('" +
                                            dateTimer + "','" + deviceID + "','" + slaveUnitID + "','" + slaveEventType + "','" + slaveGroup + "','" + slaveBattLevel + "','" + slaveSwitchStat + "','" + slaveTemp + "','" + slaveHumid + "')";
              count = stmt.executeUpdate(insertQuery2);
                   catch (SQLException ex)
    System.out.println("MyError:Error : "+ex);
                        finally
                        try
                             if ( stmt != null )
                             stmt.close();
                             else
                                  System.out.println("MyError:stmt is null in finally close");
                        catch(SQLException ex){
                        System.out.println("MyError:SQLException has been caught for stmt close");
    ex.printStackTrace();
                        try
                             if ( dbconn != null )
                             dbconn.close();
                             else
                             System.out.println("MyError:dbconn is null in finally close");
                        catch(SQLException ex){
                        System.out.println("MyError:SQLException has been caught for dbconn close");
    ex.printStackTrace();
         n="";
    catch (IOException ex)
    System.out.println("MyError:IOException has been caught in in the main first try");
    ex.printStackTrace();
    finally
    try
         if ( w != null )
              w.close();
         else
              System.out.println("MyError:w is null in finally close");
    catch(IOException ex){
    System.out.println("MyError:IOException has been caught in w in finally close");
    ex.printStackTrace();
    }

  • I get too many ASC emails ... tried Frank Caggiano's solution but problem still unsolved ... even have all my email preferences set to NO ... any other suggestion? ... how do I get out of ASC?

    i get too many ASC emails ... tried Frank Caggiano's solution ... even have all my email preferences set to NO .... but problem still unsolved....any suggestion? by the way, how do i unlist myself from ASC?

    You cannot unlist yourself from the ASC. Only a host can do that and there has to be a very good reason for doing so, like a privacy concern or issue, something like that. If you do not want to participate in the community, just quit posting.
    Did you also check the box at the top of the post that you participated in and check Stop Email Notifications? It is in the Actions Box in the upper right corner of each page on the website. You have to go back to the post that you were in and select that as well.
    Do you see the Actions Box in the upper right corner of this screenshot?

  • I get unwanted skype contact requests

    Hi I have set my privacy settings to receiving messages only from those on my contact list but I continue to get multiple requests a day from spam/unwanted users.  I always block them but I would prefer to not receive them at all.  I don't know how they see my skype account or name to be able to contact me past the security settings.
    Thanks
    Jennifer

    Has anyone noticed that the sudden influx of unwanted contacts coincides with the closing off of MSN Messenger and Microsoft's insistence that one's original Skype entity MUST show your gender and birth date now.  Reading through some of the various messages about this problem it seems to be mostly (but not always, of course) women who are getting spammed with these contacts.  
    Come on Microsoft/Skype... it's time that a Privacy Option is instigated to enable a user to disallow contact requests by default.  Before you say this is unworkable, it just means that if you have "locked down" your privacy to only allowing, say, calls, video/share screen, and IMs from people in your contact list only, then if someone you know wants to be on your Skype contact list they would probably have asked you for your id another way and you could temporarily uncheck this option to "open it up".
    And how come when the Allow IMs from... anyone/people in my Contact list only is set to the latter option, these requests still come through anyway.  After all, they come as an IM.
    Even if the above suggestion wouldn't be practical, it's well past time that someone starting thinking out of the box for a solution.

  • Skype contact requests not going through to other ...

    Hi,
    I have this problem where I send a contact request to someone and their icon stays as a question mark and they say they haven't received the request for long intervals of time. I have four requests pending right now, with people I know well in real life that we exchanged Skype account with, and for about a week now the request just wouldn't go through to the other side. I've tried restarting and tried resending the requests.
    Does someone know what the source of this problem could be?
    Thanks in advance!
    -Y
    Solved!
    Go to Solution.

    I have changed all the setting to allow everyone but my contact request is not being received and calls not being answered.  Both computers have Windows 8 and when I send the request it says it was send but the person does not get anything on their screen about getting a contact request, they look in recent and nothing shows, looked in IM and nothing shows.  Where do they go to see they have a contact request?

  • Help please - Blackberry Torch - My password was entered incorrectly too many times and contacts deleted. No backup

    My friends child has entered my password incorrectly too many times and my contacts and texts are now gone. The last back up was completed in August 2011, I havent completed a new backup yet - Is there a way of getting all the data since then without a current backup? 

    Hi Cid_L,
    Welcome to the Community,
    Well that's a bad news, it seems no other source from where you can recover your data unless you had done backup using Blackberry Protect  and if you had not done that then I am sorry there is no other way of getting it back.
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Customer getting "too many received" error trying to send us an email

    We have a customer who's emails are bouncing back to them from our server and we cannot get their emails. The error they are getting says "too many received". What is that and how do I fix it?
    Thanks!
    Robert

    Here is what the log shows:
    Dec 22 10:33:59 alphagraphicscps postfix/smtpd[16714]: 349B2B681E: client=unknown[69.*]
    Dec 22 10:33:59 alphagraphicscps postfix/cleanup[17006]: 349B2B681E: message-id=<email removed>
    Dec 22 10:34:00 alphagraphicscps postfix/qmgr[13325]: 349B2B681E: from=<email removed>, size=151312, nrcpt=1 (queue active)
    Dec 22 10:34:00 alphagraphicscps postfix/smtpd[16714]: disconnect from unknown[69.*]
    Dec 22 10:34:02 alphagraphicscps postfix/smtpd[17009]: connect from localhost[127.*]
    Dec 22 10:34:02 alphagraphicscps postfix/smtpd[17009]: 82D1FB6831: client=localhost[127.*]
    Dec 22 10:34:02 alphagraphicscps postfix/cleanup[17006]: 82D1FB6831: message-id=<email removed>
    Dec 22 10:34:02 alphagraphicscps postfix/qmgr[13325]: 82D1FB6831: from=<email removed>, size=151792, nrcpt=1 (queue active)
    Dec 22 10:34:02 alphagraphicscps postfix/smtpd[17009]: disconnect from localhost[127.*]
    Dec 22 10:34:02 alphagraphicscps postfix/smtp[17007]: 349B2B681E: to=<email removed>, relay=127.**[127.**]:10024, delay=5.5, delays=3.1/0/0/2.4, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 82D1FB6831)
    Dec 22 10:34:02 alphagraphicscps postfix/qmgr[13325]: 349B2B681E: removed
    Dec 22 10:34:03 alphagraphicscps postfix/smtp[17011]: 82D1FB6831: to=<email removed>, relay=mail.simplybits.net[64.*]:25, delay=0.9, delays=0.01/0.01/0.08/0.8, dsn=2.0.0, status=sent (250 2.0.0 Message received OK [id=email removed])
    Dec 22 10:34:03 alphagraphicscps postfix/qmgr[13325]: 82D1FB6831: removed
    Dec 22 10:34:05 alphagraphicscps postfix/smtpd[15822]: connect from mail.simplybits.net[64.*]
    Dec 22 10:34:05 alphagraphicscps postfix/smtpd[15822]: 8B6F0B6832: client=mail.simplybits.net[64.*]
    Dec 22 10:34:05 alphagraphicscps postfix/cleanup[17006]: 8B6F0B6832: message-id=<email removed>
    Dec 22 10:34:06 alphagraphicscps postfix/qmgr[13325]: 8B6F0B6832: from=<email removed>, size=152412, nrcpt=1 (queue active)
    Dec 22 10:34:06 alphagraphicscps postfix/smtpd[15822]: disconnect from mail.simplybits.net[64.*]
    Dec 22 10:34:06 alphagraphicscps postfix/smtpd[17009]: connect from localhost[127.*]
    Dec 22 10:34:06 alphagraphicscps postfix/smtpd[17009]: 53ADCB683B: client=localhost[127.*]
    Dec 22 10:34:06 alphagraphicscps postfix/cleanup[17006]: 53ADCB683B: message-id=<email removed>
    Dec 22 10:34:06 alphagraphicscps postfix/smtpd[17009]: disconnect from localhost[127.*]
    Dec 22 10:34:06 alphagraphicscps postfix/qmgr[13325]: 53ADCB683B: from=<email removed>, size=152892, nrcpt=1 (queue active)
    Dec 22 10:34:06 alphagraphicscps postfix/smtp[17007]: 8B6F0B6832: to=<email removed>, relay=127.**[127.**]:10024, delay=0.96, delays=0.84/0/0/0.11, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 53ADCB683B)
    Dec 22 10:34:06 alphagraphicscps postfix/qmgr[13325]: 8B6F0B6832: removed
    Dec 22 10:34:07 alphagraphicscps postfix/smtp[17011]: 53ADCB683B: to=<email removed>, relay=mail.simplybits.net[64.*]:25, delay=0.86, delays=0.01/0/0.08/0.77, dsn=2.0.0, status=sent (250 2.0.0 Message received OK [id=email removed])
    Dec 22 10:34:07 alphagraphicscps postfix/qmgr[13325]: 53ADCB683B: removed
    Dec 22 10:34:08 alphagraphicscps postfix/smtpd[16714]: connect from mail.simplybits.net[64.*]
    Dec 22 10:34:08 alphagraphicscps postfix/smtpd[16714]: 8B41CB683C: client=mail.simplybits.net[64.*]
    Dec 22 10:34:08 alphagraphicscps postfix/cleanup[17006]: 8B41CB683C: message-id=<email removed>
    Dec 22 10:34:09 alphagraphicscps postfix/qmgr[13325]: 8B41CB683C: from=<email removed>, size=153512, nrcpt=1 (queue active)
    Dec 22 10:34:09 alphagraphicscps postfix/smtpd[16714]: disconnect from mail.simplybits.net[64.*]
    Dec 22 10:34:09 alphagraphicscps postfix/smtpd[17009]: connect from localhost[127.*]
    Dec 22 10:34:09 alphagraphicscps postfix/smtpd[17009]: 6CD31B6845: client=localhost[127.*]
    Dec 22 10:34:09 alphagraphicscps postfix/cleanup[17006]: 6CD31B6845: message-id=<email removed>
    Dec 22 10:34:09 alphagraphicscps postfix/smtpd[17009]: disconnect from localhost[127.*]
    Dec 22 10:34:09 alphagraphicscps postfix/qmgr[13325]: 6CD31B6845: from=<email removed>, size=153992, nrcpt=1 (queue active)
    Dec 22 10:34:09 alphagraphicscps postfix/smtp[17007]: 8B41CB683C: to=<email removed>, relay=127.**[127.**]:10024, delay=1.1, delays=0.96/0/0/0.11, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 6CD31B6845)
    Dec 22 10:34:09 alphagraphicscps postfix/qmgr[13325]: 8B41CB683C: removed
    Dec 22 10:34:10 alphagraphicscps postfix/smtp[17011]: 6CD31B6845: to=<email removed>, relay=mail.simplybits.net[64.*]:25, delay=1, delays=0.01/0/0.07/0.93, dsn=2.0.0, status=sent (250 2.0.0 Message received OK [id=email removed])
    Dec 22 10:34:10 alphagraphicscps postfix/qmgr[13325]: 6CD31B6845: removed
    Dec 22 10:34:11 alphagraphicscps postfix/smtpd[15822]: connect from mail.simplybits.net[64.*]
    Dec 22 10:34:11 alphagraphicscps postfix/smtpd[15822]: 6AC24B684B: client=mail.simplybits.net[64.*]
    Dec 22 10:34:11 alphagraphicscps postfix/cleanup[17006]: 6AC24B684B: message-id=<email removed>
    Dec 22 10:34:12 alphagraphicscps postfix/qmgr[13325]: 6AC24B684B: from=<email removed>, size=154612, nrcpt=1 (queue active)
    Dec 22 10:34:12 alphagraphicscps postfix/smtpd[15822]: disconnect from mail.simplybits.net[64.*]
    Dec 22 10:34:12 alphagraphicscps postfix/smtpd[17009]: connect from localhost[127.*]
    Dec 22 10:34:12 alphagraphicscps postfix/smtpd[17009]: 2D0BCB6854: client=localhost[127.*]
    Dec 22 10:34:12 alphagraphicscps postfix/cleanup[17006]: 2D0BCB6854: message-id=<email removed>
    Dec 22 10:34:12 alphagraphicscps postfix/smtpd[17009]: disconnect from localhost[127.*]
    Dec 22 10:34:12 alphagraphicscps postfix/qmgr[13325]: 2D0BCB6854: from=<email removed>, size=155092, nrcpt=1 (queue active)
    Dec 22 10:34:12 alphagraphicscps postfix/smtp[17007]: 6AC24B684B: to=<email removed>, relay=127.**[127.**]:10024, delay=0.78, delays=0.67/0/0/0.12, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 2D0BCB6854)
    Dec 22 10:34:12 alphagraphicscps postfix/qmgr[13325]: 6AC24B684B: removed
    Dec 22 10:34:13 alphagraphicscps postfix/smtp[17011]: 2D0BCB6854: to=<email removed>, relay=mail.simplybits.net[64.*]:25, delay=1.1, delays=0.01/0/0.08/1, dsn=2.0.0, status=sent (250 2.0.0 Message received OK [email removed])
    Dec 22 10:34:13 alphagraphicscps postfix/qmgr[13325]: 2D0BCB6854: removed
    Dec 22 10:34:14 alphagraphicscps postfix/smtpd[16714]: connect from mail.simplybits.net[64.*]
    Dec 22 10:34:14 alphagraphicscps postfix/smtpd[16714]: 7D09EB6855: client=mail.simplybits.net[64.*]
    Dec 22 10:34:14 alphagraphicscps postfix/cleanup[17006]: 7D09EB6855: message-id=<email removed>
    Dec 22 10:34:15 alphagraphicscps postfix/qmgr[13325]: 7D09EB6855: from=<email removed>, size=155712, nrcpt=1 (queue active)
    Dec 22 10:34:15 alphagraphicscps postfix/smtpd[16714]: disconnect from mail.simplybits.net[64.*]
    Dec 22 10:34:15 alphagraphicscps postfix/smtpd[17009]: connect from localhost[127.*]
    Dec 22 10:34:15 alphagraphicscps postfix/smtpd[17009]: 4351AB685E: client=localhost[127.*]
    Dec 22 10:34:15 alphagraphicscps postfix/cleanup[17006]: 4351AB685E: message-id=<email removed>
    Dec 22 10:34:15 alphagraphicscps postfix/smtpd[17009]: disconnect from localhost[127.*]
    Dec 22 10:34:15 alphagraphicscps postfix/qmgr[13325]: 4351AB685E: from=<email removed>, size=156192, nrcpt=1 (queue active)
    Dec 22 10:34:15 alphagraphicscps postfix/smtp[17007]: 7D09EB6855: to=<email removed>, relay=127.**[127.**]:10024, delay=0.81, delays=0.69/0/0/0.12, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 4351AB685E)
    Dec 22 10:34:15 alphagraphicscps postfix/qmgr[13325]: 7D09EB6855: removed
    Dec 22 10:34:15 alphagraphicscps postfix/smtpd[15822]: connect from home06561.cluj.astral.ro[85.*]
    Dec 22 10:34:16 alphagraphicscps postfix/smtp[17011]: 4351AB685E: to=<email removed>, relay=mail.simplybits.net[64.*]:25, delay=1.5, delays=0.01/0/0.08/1.4, dsn=5.4.0, status=bounced (host mail.simplybits.net[64.*] said: 554 5.4.0 Too many Received: headers (in reply to end of DATA command))
    Dec 22 10:34:16 alphagraphicscps postfix/cleanup[17006]: BCD29B6860: message-id=<email removed>
    Dec 22 10:34:16 alphagraphicscps postfix/bounce[17023]: 4351AB685E: sender non-delivery notification: BCD29B6860
    Dec 22 10:34:16 alphagraphicscps postfix/qmgr[13325]: BCD29B6860: from=, size=7886, nrcpt=1 (queue active)
    Dec 22 10:34:16 alphagraphicscps postfix/qmgr[13325]: 4351AB685E: removed
    Dec 22 10:34:17 alphagraphicscps postfix/smtp[17024]: BCD29B6860: to=<email removed>, relay=mail.simplybits.net[64.*]:25, delay=0.43, delays=0/0.01/0.09/0.34, dsn=2.0.0, status=sent (250 2.0.0 Message received OK [email removed])
    Dec 22 10:34:17 alphagraphicscps postfix/qmgr[13325]: BCD29B6860: removed

  • How do I open a library book on a recently acquired Samsung Nook?  I get "too many activations" error. I have an active adobe digital editions and my other devices work fine.  Custumer Support was unable to get the new device activated.

    I have a library book on the bookshelf of a newly acquired Samsung Nook but I cannot open it.  My other devices work fine but I cannot activate the new unit.  I get a "too many activations" error message.  Customer Services say I have a valid license but they deemed my problem to be a technical issue and referred me to the forum.  Thanks

    Step 1 - by trial and error...
    So far, I have been able to create physical files containing MP3 and JPG on the NAS using the Windows XP systems to copy from shared locations on the Vista and Win7 boxes.  This process has been aided by the use of a 600 GB SATA 2 capable hard drive enclosure.  I first attach to Win 7 or Win Vista and reboot to see the local drive spaces formatted on the portable device.  Then I copy files from the user's private directories to the public drive space.  When the portable drive is wired to an XP box, I can use Windows to move the files from the portable device to the NAS without any of the more advanced file attributes being copied to the NAS.  Once the files are on the NAS, I can add the new folder(s) to iTunes on any of the computers and voila, the data becomes sharable via iTunes.  So far, this works for anything that I have completely purchased, or for MP3's I made from the AIC files created when I purchased alblums via iTunes. 
    I have three huge boxes full of vynl records I've accumulated.  The ones that I've successfully digitized via a turntable attached to the sound card on one of my computers and third party software, have found their way to the NAS after being imported into iTunes and using it to bring down available album art work.  In general I've been reasonably well pleased with the sound quality of digital MP3 files created this way, but the software I've been using sometimes has serious problems automatically separating individual songs from the album tracks and re-converting "one at a time" isn't very efficient.

  • Getting Too many objects match the primary key oracle.jbo.Key...

    Hi,
    I am working on jDEV Version 11.1.1.2.0. In one of my page I am getting exception like "*Too many objects match the primary key oracle.jbo.Key......*".
    I have a Items EO and it's Child EO. I am using view criteria in Items VO and drag and dropped this as a Query panel (search criteria). On the right side top I am displaying results in a table. Below I have a Master form and Child table where users can add / edit the Model and it's child values. When user clicks on Save button I am calling BPELprocess (WSDL) which inserts into 3 other systems and return me the message. After Clicking the Save button and displaying the message if I search for the same model (which I created) then it will throw error like above. If I search for different Model it won't throw the error.
    For example I have created "TestModel" and If I type letter "T"in Input box and search then it will throw error. If I search for some other models which are not starting with letter "T" then it works fine.
    Any idea what may be the reason? Instead of calling services in the Save button I drag and dropped "Commit" button and tested then it works fine.
    This is really critical for my project. It would be great if someone can help me on this.
    Thanks
    MC

    JBO-27102: DeadViewRowAccessException
    Reason: Trying to access a ViewRow which is part of an obsolete/invalid collection. This could happen if a reference to the ViewRow is held by some business logic while the containing view object was removed.
    Solution: Find the referenced ViewRow either by re-querying or using findByKey methods to get a valid reference to the ViewRow. instead of create() can you try createInsert() or createAndInitRow()

  • Why Customer get too many "Connection reset by peer"

    Hi,
    I have CSS 11503 V7.50 without SSL Module.
    I have 4 real servers and LB method is Round Robin. Customer tests the methods by using two way.
    First A requestor try to connect service via VIP address.Second requestor try to connect to real servers by using directly real server IP address (Bypass Load balacer)
    Customer cheks the real server logs and sees that in first experiment (via VIP) there too many "connection reset by peer" messages. For second experiment there are few same messages.
    I wonder why real servers get this messages. Plus, why CSS reset flows. I know flow timeout does that. But if there are too many idle flows, it says something wrong?

    There is a command, but I was more thinking about the server side counter or log info.
    If you really want to see if the CSS sent a RESET or not, you can use the following engineering command
    CSS11503-2(debug)# symbol-table load SPRITZ
    Loading string table... 660,706
    Loading symbols........ 24,937
    Load complete.......... 1,259,194
    CSS11503-2(debug)# shell 1 1 FMShowReset
    FM RESET COUNTERS:
    Last FM Reset Case was 7
    0 Case 1: Server Flow not in WCC
    0 Case 2: Client Flow not in WCC
    0 Case 3: FM_ContentHandleUnexpectedTermination
    0 Case 4: Server not responding on backend, reset client
    0 Case 5: Server not responding on backend, reset server
    0 Case 6: WCC returns empty vector, reset client
    18 Case 7: Reset to server on DOS attack
    2 Case 8: FM_HandleEarlySpoofTermination
    0 Case 9: Reset client if join fails in spoof flow
    0 Case 10: TCP SYN Exceeded
    0 Case 11: Reset server on remap backend connection
    0 Case 12: WCC did not return WCC_TCP_SPOOF for FAUX SYN
    0 Case 13: FM_HandleFinalClose
    0 Case 14: FM_CreateRedirectServerReset
    0 Case 15: Flow reset, route change
    0 Case 16: Peer reset, route change
    0 Case 17: Peer Flow rejected, either WCC rejected or no egress port
    0 Case 18: Reset flow, bridge forwarding change
    0 Case 19: Reset flow, egress port went down
    0 Case 20: Client side connection reset sent
    0 Case 21: Server side connection reset sent
    0 Case 22: Reset client due to server reset
    0 Case 23: Received ACK to SYN, reset existing connection on server
    0 Case 24: Server side reset, server port down
    0 Case 25: Client side reset, client port down
    0 Case 26: Server side reset, client port down
    0 Case 27: Client side reset, server port down
    0 Case 28: MIDNAT reject, reset server
    0 Case 29: MIDNAT reject, reset client
    0 Case 30: FM_HandleTcpResetVipUnavailable
    0 Case 31: MID SPOOF reject, reset server
    0 Case 32: MID SPOOF reject, reset client
    Gilles.

  • A cautionary tale before we get too many 10.4.4 ate my ... remarks

    Already I'm beginning to see questions where the 10.4.4 update is. The logical thing to remember to do once it does appear:
    1. Backup your data.
    2. Repair permissions through Applications -> Utilities -> Disk Utility.
    3. Dismount and Disconnect third party peripherals.
    4. Make sure all third party software and hardware has been tested with the update that you are going to use.
    Then apply the update.
    Chances are it won't cause any problems, but if your system is already unstable from something else, updates don't usually fix stability except in instances stated in the update documentation. I would first get your instability diagnosed before attempting to apply any updates.

    All good advice on how to apply a update, I also like to use the combo updater on these little 100 MB updates.
    The best advice I can give, slow down.
    Let the update get used for a week or even 2 and let Apple tweak it. Read the many stories of the people saying it destroyed their data along with Cleveland. Plus does funny tricks and flips on their machine.
    Remember it is just a download , like any other from Apple and should not require any special moves other then the standard download steps of any other software update from Apple. Tweaks and forced installs are not required. Unless you want to play with it and take it for a spin. Some do, it's how we learn.
    A week will pass and when the stories of terror start dropping, especially on the model your using. Then follow the directions at the beginning of this post and the download directions for your machine and you should have no problems.
    This saves so much time, lost data and just plain headaches. It's just an update, you will not be a billionaire. You will not miss the dancing people of your preference and the dog will not be your only friend because again you just had to see. and now everything is in Russian and your frustrated. ?
    Good luck
    Geoff
    G4s 1.67 17" 2 Pismos. 2 G4 1.3 ghz iBooks to many PBs   Mac OS X (10.4.3)  

  • Time Machine backups: Get too many Backups all the time (constantly Backing

    My Time Machine back ups are always backing up, everyday, on the hour, everyday. I want to slow it down or schedule it to where I want to have it, to do its back ups, such as in the middle of the week at 3pm every wednesday or twice a week at 3pm to do the Back ups instead of every sec or min or hour evryday.
    Right now I have an external 2nd HD and I have the back connected to that 2nd HD and whenever the Time machine does its back up to that 2nd HD it makes a loud irritating crackling noise, and I think its because I need a new 2nd HD but haven't enough money yet to get a new one but plan to hopefully soon but for now I would like to control this Time machine back up schedule, How do I do this? am I able to do this? Does anybody have a solution?
    Thank you,
    Mrs.Trisha Foster

    Trisha Foster wrote:
    Right now I have an external 2nd HD and I have the back connected to that 2nd HD and whenever the Time machine does its back up to that 2nd HD it makes a loud irritating crackling noise, and I think its because I need a new 2nd HD but haven't enough money yet to get a new one but plan to hopefully soon but for now I would like to control this Time machine back up schedule, How do I do this? am I able to do this?
    You can't via Time Machine. And yes, that sort of noise from your external is a very bad sign. You can get even big externals for under $100 these days, so do it ASAP.
    It also sounds like the problems with the drive are making your backups run very slowly; normally they run hourly, and are very quick and unobtrusive.
    Under normal circumstances we usually advise against it, but there is a 3rd-party app, Time Machine Editor, that some folks use for this. Some say it works for them, others have had troubles with it, especially getting TM to work properly after they remove it.
    Since this is temporary, a better bet might be to turn TM off, and just do manual backups as rarely as you dare (via the TM icon in your menubar, or by right-clicking the TM icon in your Dock.)
    But please get a new drive soon. It's impossible to predict when it's going to fail completely.

  • Dual boot Win 7 & win 10 HP Envy laptop - get 'too many partitions'

    moved to Notebook and Laptop forum

    That is exactly what I am saying. The mSSD is not directly bootable. You have to put a bootloader configuration on the main 1 TB drive so it starts booting there and then hands to boot chores over to the mSSD. The mSSD slot in that laptop series is designed to hold a much smaller "acceleration" mSSD which works with the main hard drive. 

  • Ons.log getting too many and too large

    Hi,
    Just recently when I tried to connect to our staging database I found that I couldn't connect and it gave me the "disk is full" error. It was quite amazing because the archive logs were not large nor were their any backups on it. And it was a 200g disk partition. After doing some research we found out the the ons logs were the problem. There was probably like 40 or so log files and each was a gig and a half in size. My question is what causes these logs to be created and how can we manage them. Because we have development environment and it was setup exactly the same way as the staging, but we never had a problem like that on it (dev). How can we turn the logging off?
    Thank you.

    Take a look on thi Metalink Notes
    Doc-ID: 284602.1

  • I get too many emails.  Now I have almost 500.  How do I do a mass trash comand.

    I have almost 500 emails in the last 2 day.  How do I do mass trash of all these mails on my phone???

    You cannot unlist yourself from the ASC. Only a host can do that and there has to be a very good reason for doing so, like a privacy concern or issue, something like that. If you do not want to participate in the community, just quit posting.
    Did you also check the box at the top of the post that you participated in and check Stop Email Notifications? It is in the Actions Box in the upper right corner of each page on the website. You have to go back to the post that you were in and select that as well.
    Do you see the Actions Box in the upper right corner of this screenshot?

Maybe you are looking for

  • ERP integrator target applications greyed out

    Hi all, I'm configuring the ERP integrator within EMPA (to use with FDM later) but when registering target applications three of the four are greyed out. I have tried to delete and refresh them, re-deploy and so on but they stay greyed out. Can anyon

  • Volumes and raid sets disappeared

    I booted my machine and it gave me a question mark folder I booted it off an external drive but the internal bay hdds arent mounting. When I was looking through raid utility it says they are all good and viable disks in roaming but no raid sets or vo

  • Help needed to Trouble shoot

    I installed Directory SErver on Windows 2000 Advance Server. The directory server is responding but iplanet console is not responding (Not opening). How do i troubleshoot the problem. I am not an administrator. Thanks in Advance Krish

  • Avoid printing child items of Sales BOM in AR Invoice

    Hi All, I have a requirement to edit the print layout of AR Invoice to see only the parent item of the Sales BOM in SAP 2005. In SAP 2007, there is an option to Hide BOM Components in Print Out but how do I avoid printing child items in SAP 2005. Ple

  • IIII IIII  what is causing this?

    This is what happens every now and then to my G4 can anyone help? IIII IIII IIII IIII IIII IIII IIII IIII IIII IIII IIII IIII IIII IIII IIII it takes up the entire window. I am not using the key board when it happens.