Need Help with hijacked contact lists

Hello all, I am new here, so please forgive me if I'm posting to the wrong board...didn't really see anything more appropriate. I have a problem with a hijacked contact list:
I have three email accounts being forwarded to my BB Curve 8530.  Two from Yahoo and one from AOL.  In each of these accounts (when accessed directly from yahoo.com or aol.com) have different contacts.  Not all of these contacts are in my BB contact list.  The other day, one of my yahoo accounts was somehow hacked, and resulted in one of those spam "drugs for sale" emails being sent to people in my contact list.  Well, when I investigated, I discovered that actually, someone who is not even in that particular accounts contact list, but another account.  How is this possible?
If that is confusing, here's a better summary (using fake email addresses):
[email protected] sent a bogus email message to [email protected]
but, [email protected] is not in [email protected]'s address book.  it is in [email protected]  [email protected] is not listed in my BB device's contact list.
The only thing I can think os is somehow the BB was hacked, and someone was able to go through all linked contact lists, and send an email across all connected accounts.
How was this able to happen?  what can I do to stop it?
thanks!
Lee

This is the Welcome and Introductions section, so Greetings, and welcome!
The 8500 model section would be perfect for your questions,so we'll get it move there.
Meanwhile,
leevalon wrote:
The only thing I can think os is somehow the BB was hacked, and someone was able to go through all linked contact lists, and send an email across all connected accounts.
Sorry, not possible... UNLESS you gave your BlackBerry to someone to use for a while, during which time they spammed all your contacts. Did you?
Do you have a Security password set on the device? If you are afraid of the above happening, setting the password will just that impossible.
But it wasn't hacked.
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Need help with PHP contact form

    Hi guys,
    I've made a PHP contact form for my site and need help with a couple of things:
    The form action links an external PHP script (scripts/contact-form-script.php) but is there a way I can have it so the PHP script for the form is contained within the same PHP file as my contact form (contact.php)?
    I tried just putting the form code at the top of contact.php but the browser automatically reads the anti-spam re-direct, so maybe that needs revising too?
    The second thing is, how can I make the Name, Email and Message fields mandatory? So if a user tries to submit the form and hasn't filled in one of the required fields and clicks submit, contact.php reloads with a message at the top of the form saying something like 'Complete the required fields' and highlights the relevant field with a red border?
    Here's the code for contact.php:
    <form action="http://www.mydomain.com/scripts/contact-form-script.php" method="post" name="contact" id="contact">
    <p><strong>Name:*</strong><br />
    <input name="name" type="text" class="ctextField" /></p>
    <p><strong>E-mail:*</strong><br />
    <input name="email" type="text" class="ctextField" /></p>
    <p><strong>Telephone:</strong><br />
    <input name="telephone" type="text" class="ctextField" /></p>
    <p><strong>Company:</strong><br />
    <input name="company" type="text" class="ctextField" /></p>
    <p><strong>Address:</strong><br />
    <input name="address1" type="text" class="ctextField" /></p>
    <p><input name="address2" type="text" class="ctextField" /></p>
    <p><strong>Town:</strong><br />
    <input name="town" type="text" class="ctextField" /></p>
    <p><strong>County:</strong><br />
    <input name="county" type="text" class="ctextField" /></p>
    p><strong>Postcode:</strong><br />
    <input name="postcode" type="text" class="ctextField" /></p>
    <p><strong>Message:*</strong><br />
    <textarea name="message" cols="55" rows="8" class="ctextField"></textarea></p>
    <p><input name="submit" value="SEND MESSAGE" class="submitButton" type="submit" /><div style="visibility:hidden; width:1px; height:1px"><input name="url" type="text" size="45" id="url" /></div></p>
    </form>
    And this is the PHP I'm using to submit the form data for contact-form-script.php:
    <?php
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    $to = "[email protected]";
    $subject = "Contact from website";
    $message = $headers;
    $message .= "Name: " . $_POST["name"] . "\r\n";
    $message .= "E-mail: " . $_POST["email"] . "\r\n";
            $message= '
                <table cellspacing="0" cellpadding="8" border="0" width="500">
                <tr>
                    <td colspan="2"></td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td width="154" style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Name</strong></td>
                  <td width="314" style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$name.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>E-mail address:</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$email.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Telephone number:</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$telephone.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Company:</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$company.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Address</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$address1.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$address2.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Town</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$town.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>County</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$county.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Postcode</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$postcode.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                    <td colspan="2" style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Message</strong></td>
                </tr>              
                <tr bgcolor="#eeeeee">
                    <td colspan="2" style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$message.'</td>
                </tr>              
                <tr><td colspan="2" style="padding:0px;"><img src="images/whitespace.gif" alt="" width="100%" height="1" /></td></tr>
             </table>
    $url = stripslashes($_POST["url"]);
    if (!empty($url)) {
    header( 'Location: http://www.go-away-spam-robots.com' );
    exit();
    mail($to, $subject, $message, $headers);
    header( 'Location: http://www.mydomain.com/sent.php' ) ;
    ?>
    Any help on this would be greatly appreciated.
    Thank you and I hope to hear from you!
    SM

    Revised code with form validation for Name Email and Message:
    <?php
    if (array_key_exists('submit', $_POST)) {
        $name = $_POST['name'];
        $email = $_POST['email'];
        $telephone = $_POST['telephone'];
        $company = $_POST['company'];
        $address1 = $_POST['address1'];
        $address2 = $_POST['address2'];
        $town = $_POST['town'];
        $county = $_POST['county'];
        $postcode = $_POST['postcode'];
        $formMessage = $_POST['message'];
    if (empty($name)) {
                                                $warning['name'] = "Please provide your name";
    if (empty($email)) {
                                                $warning['email'] = "Please provide your email";
    if (empty($formMessage)) {
                                                $warning['message'] = "Please provide your message";
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    $to = "[email protected]";
    $subject = "Contact from website";
    $message = $headers;
    $message .= "Name: " . $_POST["name"] . "\r\n";
    $message .= "E-mail: " . $_POST["email"] . "\r\n";
    $headers  = "MIME-Version: 1.0\r\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
            $message= "
    <table cellspacing='0' cellpadding='8' border='0' width='500'>
                <tr>
                    <td colspan='2'></td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td width='154' style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Name</strong></td>
                  <td width='314' style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$name."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>E-mail address:</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$email."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Telephone number:</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$telephone."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Company:</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$company."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Address</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$address1."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$address2."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Town</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$town."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>County</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$county."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Postcode</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$postcode."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                    <td colspan='2' style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Message</strong></td>
                </tr>              
                <tr bgcolor='#eeeeee'>
                    <td colspan='2' style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$formMessage."</td>
                </tr>              
                <tr><td colspan='2' style='padding: 0px;'><img src='images/whitespace.gif' alt='' width='100%' height='1' /></td></tr>
             </table>
    $url = stripslashes($_POST["url"]);
    if (!empty($url)) {
    header( 'Location: http://www.go-away-spam-robots.com' );
    exit();
    if (!isset($warning)) {
    mail($to, $subject, $message, $headers);
    header( 'Location: http://www.mydomain.com/sent.php' ) ;
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    p {
        margin: 0;
        padding: 10px 0 0 0;
    .warning {
        color:#C00;
    </style>
    </head>
    <body>
    <form action="" method="post" name="contact" id="contact">
    <p><strong>Name:*</strong><br />
    <input name="name" <?php if (isset($warning['name'])) { echo "style='border: 1px solid #C00'"; } ?> type="text" class="ctextField" />
    <?php if (isset($warning['name'])) { echo "<p class='warning'>".$warning['name']."</p>"; }?>
    </p>
    <p><strong>E-mail:*</strong><br />
    <input name="email" <?php if (isset($warning['email'])) { echo "style='border: 1px solid #C00'"; } ?>type="text" class="ctextField" />
    <?php if (isset($warning['name'])) { echo "<p class='warning'>".$warning['email']."</p>"; }?>
    </p>
    <p><strong>Telephone:</strong><br />
    <input name="telephone" type="text" class="ctextField" /></p>
    <p><strong>Company:</strong><br />
    <input name="company" type="text" class="ctextField" /></p>
    <p><strong>Address:</strong><br />
    <input name="address1" type="text" class="ctextField" /></p>
    <p><input name="address2" type="text" class="ctextField" /></p>
    <p><strong>Town:</strong><br />
    <input name="town" type="text" class="ctextField" /></p>
    <p><strong>County:</strong><br />
    <input name="county" type="text" class="ctextField" /></p>
    <p><strong>Postcode:</strong><br />
    <input name="postcode" type="text" class="ctextField" /></p>
    <p><strong>Message:*</strong><br />
    <?php if (isset($warning['message'])) { echo "<p class='warning'>".$warning['message']."</p>"; }?>
    <textarea name="message" <?php if (isset($warning['message'])) { echo "style='border: 1px solid #C00'"; } ?> cols="55" rows="8" class="ctextField"></textarea></p>
    <p><input name="submit" value="SEND MESSAGE" class="submitButton" type="submit" /><div style="visibility:hidden; width:1px; height:1px"><input name="url" type="text" size="45" id="url" /></div></p>
    </form>
    </body>
    </html>

  • I need help with circular linked list

    Hi,
    I need help with my code. when I run it I only get the 3 showing and this is what Im supposed to ouput
    -> 9 -> 3 -> 7
    empty false
    9
    empty false
    3
    -> 7
    empty false
    Can someone take a look at it and tell me what I'm doing wrong. I could nto figure it out.
    Thanks.This is my code
    / A circular linked list class with a dummy tail
    public class CLL{
         CLLNode tail;
         public CLL( ){
              tail = new CLLNode(0,null); // node to be dummy tail
              tail.next = tail;
         public String toString( ){
         // fill this in. It should print in a format like
         // -> 3 -> 5 -> 7
    if(tail==null)return "( )";
    CLLNode temp = tail.next;
    String retval = "-> ";
         for(int i = 0; i < -999; i++)
    do{
    retval = (retval + temp.toString() + " ");
    temp = temp.next;
    }while(temp!=tail.next);
    retval+= "";}
    return retval;
         public boolean isEmpty( ){
         // fill in here
         if(tail.next == null)
              return true;
         else{
         return false;
         // insert Token tok at end of list. Old dummy becomes last real node
         // and new dummy created
         public void addAtTail(int num){
         // fill in here
         if (tail == null)
                   tail.data = num;
              else
                   CLLNode n = new CLLNode(num, null);
                   n.next = tail.next;
                   tail.next = n;
                   tail = n;
         public void addAtHead(int num){
         // fill in here
         if(tail == null)
              CLLNode l = new CLLNode(num, null);
              l.next = tail;
              tail =l;
         if(tail!=null)
              CLLNode l = new CLLNode(num, null);
              tail.next = l;
              l.next = tail;
              tail = l;
         public int removeHead( ){
         // fill in here
         int num;
         if(tail.next!= null)
              tail = tail.next.next;
              //removeHead(tail.next);
              tail.next.next = tail.next;
         return tail.next.data;
         public static void main(String args[ ]){
              CLL cll = new CLL ( );
              cll.addAtTail(9);
              cll.addAtTail(3);
              cll.addAtTail(7);
              System.out.println(cll);          
              System.out.println("empty " + cll.isEmpty( ));
              System.out.println(cll.removeHead( ));          
              System.out.println("empty " + cll.isEmpty( ));
              System.out.println(cll.removeHead( ));          
              System.out.println(cll);          
              System.out.println("empty " + cll.isEmpty( ));
    class CLLNode{
         int data;
         CLLNode next;
         public CLLNode(int dta, CLLNode nxt){
              data = dta;
              next = nxt;
    }

    I'm not going thru all the code to just "fix it for you". But I do see one glaringly obvious mistake:
    for(int i = 0; i < -999; i++)That says:
    1) Initialize i to 0
    2) while i is less than -999, do something
    Since it is initially 0, it will never enter that loop body.

  • Need help with drop down list in parameters

    Hi All,
    I have the following data set:
    DEPT1     DEPT2     DEPT3 DEPT4
    Commissioner's Office     Finance     Accounting     Accounts Payable
    Commissioner's Office     Finance     Accounting     Fiscal Analysis & Repo
    Commissioner's Office     Finance     Accounting     
    Commissioner's Office     Planning,Asset Mgt     Asset Management     Inventory & Tracking
    Commissioner's Office     Planning,Asset Mgt     Asset Management     Mobility & Congestion
    Commissioner's Office     Planning,Asset Mgt     Asset Management     Roadway Safety
    Commissioner's Office     Planning,Asset Mgt     Asset Management     
    Commissioner's Office     DesignProj Mgt & Tec     Bridge Dsgn Insp Hyd     
    In plus i have four parameters with searchlight options, the problem is when i select "Finance" from DEPT2 and in the next selection level i'm seeing all the departments "Accounting,Asset Management and Bridge Dsgn Insp Hyd" insted of just "Accounting". What i want is if i select a department in DEPT2, in the next drop down list(DEPT3) i want to see only the departement corresponding to the one i selected in dept2. Please need help.
    Thanks

    Hi
    First of all you need to be using Discoverer 10g or 11g Plus not 9.0.4. Assuming you have the right version you need to present the parameters in the correct order. You can change the order on the parameters screen by selecting Tools | Parameters from the toolbar. You then use the Move Up and Move Down buttons to place them in the right order so that DEPT1 is offered first, followed by DEPT2, then DEPT3 and then DEPT4.
    Next, you need to check the radion button on the bottom of the right-hand side that allows linking of parameters then you make DEPT2 dependent upon DEPT1, with DEPT3 dependent upon DEPT2 and so on.
    While this works without hierarchies it works best when you have a hierarchy in place and even better when there is a composite index on the 4 items.
    Best wishes
    Michael

  • Help with SPA9000 contact list

    Please help, I have been trying to confgure my SPA9000 to do something I thought would be easy....but so far it isn't.
    I have 2 sets of phones (941/942s)   extension 101,102,103,104 and another set 201,202,203,204
    when a call comes in I want to call the 1st range (all the 10? phones) , then after 20seconds, call the second range (all the 20? phones) and after 30 seconds cfwd to  voicemail
    I did have huntrgoups set up llike this
    600:name="All",100,101,102,103,105,109,hunt=al;30;1,cfwd=aa|500:name=Home,201,202,202,203,105,hunt=al;10;1,cfwd=600|
    Then I set the contact list to be 500 ( the first hunt group)
    .. but it doesnt work 
    does anybody know how this can be done ? 
    Many thanks 

    i'm not sure if it is possible to use cfwd to another hunt group ...also, i believe the delay that will be followed is the CFWD No Ans Delay under the Line in SPA9000 and not the delay in the Hunt Rule
    what if you simplify your hunt rule first by putting a single extension on the cfwd just to check if it will forward to an extension?  like 500:name=Home,201,202,202,203,105, cfwd=100 
    | isolate! isolate! isolate! |

  • Need help with my contacts and email - used to have ipod touch

    Hi all
    I had an ipod touch in the past that I used to sync through the laptop i'm on now. However, I sold that quite some time ago and just got a new iphone the other day. when I hooked it up to my laptop to set up, my old touch account came up. This normally wouldn't be a problem but now it's syncing all my OLD contacts (thousands of them) and old email accounts...some of which are not in my windows live mail anymore.
    How do I go about:
    1) getting rid of all these contacts that were just loaded onto the phone
    2) starting new to add only the contacts I have in my windows live contacts list?
    I've tried deauthorizing the computer but that didn't do anything other than delete old apps I had on the touch.
    Much appreciated!

    Were you provided an option to transfer the backup from your Touch to your iPhone that you accepted?
    Which supported application on your computer are you syncing contact info with?
    With Vista, this can be with Outlook 2003 or 2007, or with the address book used by Windows Mail with Vista - which is the name change for Outlook Express with Vista. The address book is called Windows Contacts I believe and the sync option for contact info is selected under the Info tab for your iPhone sync preferences.

  • I need help printing my contact list.  I used to be able to do it, but now I can't.

    I can no longer print out my contact list.  Is there a way to go it?  I used to get all my my conatcts info...name, address, telephone..etc...

    Thanks for your response, disconcerting though it may be.
    I guess I'll have to look at other platforms.

  • Foot stand not provided with my replacement WRT-350N - need help with Cisco contact

    Hi!
    I am starting to feel like Michael Douglas in the movie Falling Down and need some help.
    Story:
    I finally sent in my faulty WRT-350N router and when I got the replacement everything but the plastic foot stand was included. I want to have my router standing up to save desk space but now I have no foot.
    "OK, should not be hard to get Linksys to send me the missing foot stand" was my thought. Now I have called the RMA line and also emailed them and I get a similar answer like Michael Douglas got with a smile
    I keep hearing that I cannot get the part since it is not on the product's content list. Like that is *my* problem. I just want the part and do not care whether it is on a list or not. It is the part on top of the router in the picture. I even asked the Linksys representative to Google a bit for WRT-350N and there are foot stands on almost all pictures and it is definitely included in the box. I was told I could go nowhere else for help either with this. I really doubt that but fail to find a channel to Linksys that may be able to help.
    If some Linksys representative sees this please help me!
    Thanks, Niklas
    RMA XXXXX - missing router stand/foot
    (Mod note: Edited for guideline compliance. E-mail conversation removed.)
    Message Edited by kent07 on 07-01-2009 03:10 AM
    Solved!
    Go to Solution.

    Now it should be working. To moderators, this does not hold any personal info but just want to show the quite long text to read through for the RMA:
    Thank you for contacting Linksys Customer Service Department. First of all, we would like to inform you that, if your item has been purchased less than 2 years ago, you have the possibility of replacing it through the place of purchase.
    If you want to replace your item through Linksys, we are more than glad to provide you with our assistance. In order to create an RMA ( authorization number for the replacement under warranty), you can do it online at
    https://linksysrma.moduslink.com/Consumer/pag/ChooseRegion.aspx.
    On the other hand, if you prefer us placing the RMA, please reply to this email including the following information:
    Name:
    Last Name:
    Company Name:
    Street Address:
    City:
    Postal Code:
    Day Time Phone Number:
    Model (include version):
    Serial Number:
    Date of Purchase:
    Place of Purchase (store):
    Once the RMA is created, you will receive a confirmation e-mail with the RMA number on a shipping label ( not a prepaid, as the inbound shipping is up to the customer) and all the terms and conditions . You will have to print three copies of that label. The first copy you are going to stick it in the outside of the box, the second one you are going to join it in the inside of the box and the last one is a copy for you as assurance. Together with this e-mail it will also be included all the terms and conditions. We will strongly appreciate your reading them carefully before sending the item to us. In relation to this, it will be our pleasure to summarize some of the important conditions we state in order to clarify our standard procedure:
    Please write down the RMA# ( not the case id#) on the outside of the box with big numbers and letters. Moreover, we recommend our customers to use a traceable shipping method in order to get a tracking number for the delivery. This number will be helpful to track the package in case of any potential inconvenience. Remember that you will have to pay just for the inbound shipping while Linksys will be responsible for the rest of the expenses.
    Furthermore, remember to include all the accessories that were included in the original package: Power Supply, Cables, User Guide, CD's. Otherwise, warranty replacement will not be possible to be performed. All other accessories shipped that did not come in the original box may not be returned. Moreover, it is important to remember that you do not have to ship the original box. Also, include on the shipping box a copy of the proof of purchase, not the original.
    IMPORTANT: -If your product is part of a network kit just send the defective unit.
    If you have further questions do not hesitate to call us or replying to this e-mail. Our lines are open from Monday to Friday from 10 a.m. to 7 p.m. We recommend our customers to have the case id# handy.
    Regards,
    Linksys Customer Service - EMEA
    Linksys does NOT offer refunds, substitutions, credits, or upgrades.
    Linksys is NOT responsible for lost packages in transit. Please obtain a tracking number as a safeguard for your shipment. Linksys strongly suggests using a reputable shipping company that will provide a tracking number and will insure the package.
    Linksys is not able to accommodate walk-in customers.
    Processing the Defective Unit.
    Package your return unit(s) in one box, please make sure the contents are secure and that enough packaging material is included to prevent the unit(s) from moving around during shipping.
    Please ship the defective unit(s) to the address below.
    Linksys RMA/SILS/ML
    IJsseldijk 29 in Apeldoorn
    7325 WZ Apeldoorn
    The Netherlands
    All original Linksys accessories, such as power adapters, couplers/dongles, and antennas MUST BE RETURNED with the product.
    If you are replacing a product that belongs to a networking kit, only return the defective product listed on the previous web form belonging to the networking kit. Please do not include the working product.
    Linksys is NOT responsible for lost packages in transit. Please obtain a tracking number as a safeguard for your shipment. Linksys strongly suggests using a reputable shipping company that will provide a tracking number and will insure the package.
    Linksys is NOT responsible for lost or damaged personal accessories. If you have attached any accessories that did not come with the original product, please remove these items prior to returning your unit(s). In addition, if your product uses any internal fiber modules please also remove these items unless they are listed as one of the products on the RMA web form.
    Linksys is not responsible for data stored on the hard drive of the defective unit. If the defective unit has a hard drive and it cannot easily be removed form the defective unit, backup your data prior to shipping the defective unit to Linksys.
    The customer bears the cost of sending the defective unit(s) to Linksys including all customs fees and applicable taxes.
    A COPY of the proof of purchase must be included for all products. A valid proof of purchase includes a copy of the receipt, invoice, or packing slip from the retailer, or distributor. A copy of your credit card statement, internal requisition, or purchase order is NOT considered a valid proof of purchase. DO NOT SEND YOUR ORIGINALS.
    Processing the Replacement Unit.
    Linksys bears the cost of shipping the replacement unit to the CUSTOMER unless the expedited shipping option is chosen at the time the RMA is created.
    Upon receipt of the defective unit, a replacement unit is usually shipped within 3-5 business days
    Linksys ships replacement products via GLS ground to customers within the European Union. Non European Union Customer's replacements are shipped FedEx.
    In the event of a backorder, units will ship when available, and the shipping method will remain the same as the option selected at the time the RMA was created.
    If you wish to change the shipping method, YOU MUST contact the Linksys Customer Service department prior to the replacement unit being shipped. Once the unit has been shipped, the funds paid for expedited shipping cannot be refunded. The Customer Service phone numbers are listed below.
    Once you receive your replacement unit, test the unit, and verify that it is working properly.
    Damaged or missing part(s) must be reported within five business days of receiving the replacement unit(s).
    IMPORTANT: If your unit uses a power supply, make sure to use the power supply that comes with the replacement unit, and not the original power supply.
    COUNTRY
    PHONE NUMBER
    Austria
    01360 2772061
    Belgium
    02 627 7077
    Czech Republic
    800 800156
    Denmark
    82 332729
    Finland
    0800 523062
    France
    0800 881 026
    Germany
    0800 1013311
    Hungary
    06 80 204 548
    Iceland
    44 207 660 0121
    Ireland
    1 800 818 188
    Italy
    02 38 591012
    Lithuania
    44 207 660 0121
    Luxembourg
    32 2-627-7077
    Malta
    44 207 660 0121
    Netherlands
    0800 020 0101
    Norway
    235 00060
    Poland
    00800 331 1345
    Portugal
    213 180 081
    Spain
    900 902 207
    Sweden
    0851 992 251
    Switzerland
    022 5675 330
    Turkey
    212 444 2726
    United Kingdom
    0800 026 1418

  • Recommendations/help with  'Add Contact List'

    hello,
    i've run into a bit of a problem, need some expert advice
    before i lose my mind :)...
    i am trying to allow registered users to have a friend list.
    my problems:
    1) user is viewing their friend list and only their friends
    user_id shows up rather than their friends username...
    Here is the SQL i have as of now:
    SELECT userTable.user_id, userTable.username,
    friendTable.user_id, friendTable.them_user_id
    FROM userTable JOIN friendTable ON userTable.user_id =
    friendTable.user_id
    WHERE userTable.username = var1($_SESSION['MM_Username']
    2) when users click 'add friend' button (which is an insert
    form with 3 hidden fields, user_id, friend_id, MM_insertform), my
    code doesn't check if they are already friends with that person...
    not a huge deal, but i'd like to have this feature if i can...
    i'd be thankful for any advice, help, etc... thank you!

    > 1) user is viewing their friend list and only their
    friends user_id =
    shows up=20
    > rather than their friends username...
    > Here is the SQL i have as of now:
    > SELECT userTable.user_id, userTable.username,
    friendTable.user_id,=20
    > friendTable.them_user_id
    > FROM userTable JOIN friendTable ON userTable.user_id =3D
    =
    friendTable.user_id
    > WHERE userTable.username =3D
    var1($_SESSION['MM_Username']
    what happens if you include friendTable.username in the SQL
    statement?
    >=20
    > 2) when users click 'add friend' button (which is an
    insert form with =
    3 hidden=20
    > fields, user_id, friend_id, MM_insertform), my code
    doesn't check if =
    they are=20
    > already friends with that person... not a huge deal, but
    i'd like to =
    have this=20
    > feature if i can...
    There is a built in server behavior for Check Username that
    will check =
    for an existing user name. You might be able to modify that
    to meet =
    your needs. Keep in mind that modified code will work but
    disappear =
    from the Bindings/Server Behaviors panel.
    --=20
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: Dreamweaver CS3: The Missing Manual,
    DMX 2004: The Complete Reference, DMX 2004: A Beginner's
    Guide
    Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web =
    Development

  • I need help with drop down lists

    I have a form that does not have lots of space and I want to use drop down lists to fill in specific information that describes site conditions.  The problem I have is that the drop down list is only set up for a single line and that is not enough space for what I want in the drop down list.  In other words, I have items that are several sentences.   I have seen some descriptions of creating a drop down list that then fills in a text box that has multiple lines.  Unfortunately, that is not an ideal solution for me.  I just want the drop down list to select a single phrase.  Here is an example of what I want to be able to select in the drop down.
    The water heater spilled flue gases in excess of 5 minutes under worst case conditions.  The combusiton testing was completed with in 30 days of the invoice submittal. 
    The form does not allow me to create a field that goes all the way across the page so it needs to look something like this:
    The water heater spilled flue gases in excess of 5 minutes
    under worst case conditions.  The combusiton testing was
    completed with in 30 days of the invoice submittal.
    Any help is greatly appriciated.

    Thanks for responding.
    I have three items that are very similar in length and text for each drop down.  There are 9 drop downs right now.  I am using the drop downs to fill in a form that is used by several people and I want to keep things as simple as possible.  Associated with the drop down already is a check box.  When the check box is checked, it fills in a text box with a score (1 point, 5 points, etc).  That score then tallys for a total with all the other scores in another text box.  Using a drop box to fill in a text box is just getting to busy and than I have to distinguish each drop down item so it is clear which text you are selecting.

  • New to iPhone and need help with syncing contacts.

    I know how to change the settings in the iTunes view so that I can set it to sync, but when I started the transfer of my iPhone contacts it tells me that 25% of my contacts will change. What does this mean? Does this mean that the contacts on my iPhone will change, or the contacts in my Address Book on my MBP will change?
    I'm a bit confused by this. I don't want to lose my address book info (mostly e-mail contacts) and I don't want to contaminate my iPhone contacts with  the data in my Address Book.
    Thanks for any help.
    JRH 2

    One alternative would be to set up iCloud and then sync your contacts there.  This would keep them on www.iCloud.com (see http://www.apple.com/icloud/setup/ to set this up).  Another would be to sync them with Google by setting up a gmail account as and exchange account, which enables contact and calendar syncing.  To do this see http://support.google.com/mobile/bin/answer.py?hl=en&topic=14252&answer=138740.

  • Need help with merging contacts! Please help!!!

    Hey guys. I have a little problem with my iPhone 4 with iOS 7. I have recently synced all of my contacts with iCloud so that I will be able to export them to my pc, but this is not the problem. Since I was deleting some of the contacts I have noticed that there is a possibility (in the Edit Mode of the contact) to add a Facebook profile. So I tried to do this with a few contacts.
    I am attaching a photo of how my contact with Facebook profile linked to it looks like but it's in iCloud (I get the same thing on my iPhone).
    Sorry for all the black lines. So when I press the name Betyna ... under the Facebook option I get a new Facebook tab open which says - Page not found. Sorry, this page isn't available. The link you followed may be broken, or the page may have been removed.
    This is the same thing I get on my phone.
    Can someone help me with a solution to my problem, because I really want to link Facebook profiles to my phone contacts, but without the whole Settings/Facebook/Update Contacts and all?
    So please help!!!!!

    I'm creating an input source from the string, then i
    pass it to the parser. No, you don't. Look at the source again.
    byteStream = new
    new ByteArrayInputStream(string.getBytes());
    InputSource is = new InputSource(byteStream);
    parser.parse(byteStream, myParser);//the line that
    hat throws the exceptionYou aren't passing the InputSource to the parser at all.
    However, why are you using this roundabout way to pass the string to the parser? Why not justparser.parse(new InputSource(new StringReader(string)), myParser);?

  • Need help with Gmail Contact issue

    First I'm loving the phone! It's a great device and was a great decision to get. I haven't noticed any issues with the phone until today. When I purchased the phone on 3/22/13 everything synced up perfect. All my calendar entries and contacts sync from Gmail and has been fine since today. I got a log in error for my email and calendar this morning and I had an issue logging back in. So I removed the account and set it back up. Now all my contacts on my Gmail account are missing online. The contacts are still on my phone but not associated with my Gmail account. I went through most of them and some are associated with facebook, twitter and linkedin.
    Not sure how but that's not my issue. I will try to figure that out later. What I want is, if there's a way to transfer them back to my Gmail account?
    Again I have all the contacts and really don't want to manually enter them back into the phone.
    Any help will be grateful!

    From my own experience I had issues with Gmail. Later on I found out other people also had issues. These were with syncing.
    What may have happened is your Gmail account setup may have received the indication that you remotely deleted the contacts.
    As for myself, I found I had best results with Hotmail for syncing the contacts and etc.
    Jerry G.

  • We need help with unwanted contact requests

    In the last 2 weeks, I have received 13 unwanted contact requests that I have blocked, which is roughly 2 unwanted contact requests for every Skype message or call I'm interested in receiving. 
    All of my privacy settings are set to "Contacts" and I do not publish my Skype ID on LinkedIn, the only social media site I use.
    What else can I do?

    Hello Gilad,
    Thank you for your contact!
    The script does not work, no error message comes up, I am sure it`s a
    stupid mistake but neither my boss nor I are programmers.
    Please have a look at the form enclosed, the field in question (field
    name "calculated currency value", red border) is on the top right  and
    refers to the field "FX" (field name "FXname 4800") below (blue border)
    Both fields are in number format so I don`t know why this doesn't work,
    what else can it be?
    With kind regards
    Ursula

  • Help with transferring contact list

    So here's my problem, I had a Pearl 8130, and broke the trackball on it so it is no longer functional.  I just received my Curve in the mail today, and I want to move all my contacts from my Pearl to my Curve.  Everytime I plugged my phone into my computer, I hit "backup."  So my question is, how do I get them off of my Pearl?  If they are stored to my computer, what is the file they are stored in?  I can't seem to find anything anywhere, and there are no contacts from my phone in Outlook.  Is there another way to get them off my Pearl that won't require me using my trackball (it is literally gone).  Any help would be appreciated.  Thanks!
    Solved!
    Go to Solution.

    You are very welcome!
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for