I need help with Mac Mail

"The Yahoo! IMAP server “imap.mail.yahoo.com” rejected the password for user "******""
Why does this happen? I enter my Yahoo password correct and i click "Remember in Keychain"
Wondering how i fix this. Thank you!
<Email Edited By Host>

If you haven't made any changes and suddenly the Mail program tells you a password is rejected, in most cases the password is just fine and there's nothing wrong with your computer. There's a little dance that goes on between your computer and the mail server when you check your mail and each step has a time limit set to it. If at any step time runs out the dance ends and Mail tells you there was a problem and in most cases the error message tells you that the password failed rather than reporting there was a time out error.
There's a reason for this that only programmers would care about. In most cases if you ignore the error message and try again later your mail comes through. What's really crazy is that sometimes (and this happened to me with both iCloud and gmail earlier this week) you can't get mail with the Mail app but you can log in with Safari and get your mail just fine. That's nice because you can verify that you really do know your password but annoying because it makes you think something may be wrong with your computer.

Similar Messages

  • Need help with mac and java

    Hi, I'm trying to develop an application on a Machintosh OSX 10.2.8 machine.
    I'm having a herrendous time trying to get quicktime to work on it.
    I've somehow managed t oget 1.3.1 and QTJava.jar to work together but now i need encryption, however that requires 1.4+
    Now 1.4.1 doesnt work with quicktime
    I've downloaded the latest software upgrades but Ive got no idea how to set up quicktime to work with java 1.4.1
    Now to add on top of that mac reports it can use AES encryption. this is from source code ripped striaght from this website.
    But first and foremost can anyone, annyonee help me out with setting up 1.4.1 with quicktime?
    Thank you

    If you need encryption with Java 1.3.1, download the JCE from either Sun (http://java.sun.com/products/jce/) or Bouncy Castle (http://www.bouncycastle.org/).
    Cheers,
    --Arnout                                                                                                                                                                                                                                                                                                                                                                   

  • Need help on .Mac mail

    Hi all
    I can´t read my e-mails on my Touch , I get all the info but when I tap on the e-mail I want to read it only shows the basic info , from , to, subject ect but the text ( content ) stays blank , zero , nada
    Do I have to convert or change any setting to be able to get full access to my mails on the touch ?
    Thanks for any help
    Saludos

    That's incorrect information.
    You can scroll down the email message using two fingers.
    Place two fingers on the message text and drag in the direction you want to scroll.
    .Mac and gmail work fine with the touch.
    The only problem with .mac is that it will crash Safari if you allow it to auto fill your recipient's email address when you send an email. The solution is to enter the address manually.

  • Need help with PHP mail script

    I  have created a  log in system  . In that when the  user completes the  registration process an auto reply(auto-reply@domain)  will generate and  sent this to users email id regarding about the user  name and password  (Lo gin Details). After formal approval from the admin  the user will  get a user activation mail with log in link.
    But , my problem is  these are work only for mail accounts from my  domain  only(test@domain). its not send any of above mentioned details  to other  mail services like gmail or yahoo etc.
    i discussed this   with some others, they said its the problem with your mail function   configuration. but i didn't get any needful information as am a  beginner  in PHP scripting.
    i have contacted this with my  hosting service they said its the  problem with  php mail () function  and use php mailer() instead mail().
    please give me a solution for the same..
    Here am ataching my code..
    <?php
    include 'dbc.php';
    $err = array();
    if($_POST['doRegister'] == 'Register')
    foreach($_POST as $key => $value) {
        $data[$key] = filter($value);
    if(empty($data['full_name']) || strlen($data['full_name']) < 4)
    $err[] = "ERROR - Invalid name. Please enter atleast 3 or more characters for your name";
    //header("Location: register.php?msg=$err");
    //exit();
    // Validate User Name
    if (!isUserID($data['user_name'])) {
    $err[] = "ERROR - Invalid user name. It can contain alphabet, number and underscore.";
    //header("Location: register.php?msg=$err");
    //exit();
    // Validate Email
    if(!isEmail($data['usr_email'])) {
    $err[] = "ERROR - Invalid email address.";
    //header("Location: register.php?msg=$err");
    //exit();
    // Check User Passwords
    if (!checkPwd($data['pwd'],$data['pwd2'])) {
    $err[] = "ERROR - Invalid Password or mismatch. Enter 5 chars or more";
    //header("Location: register.php?msg=$err");
    //exit();
    $user_ip = $_SERVER['REMOTE_ADDR'];
    // stores sha1 of password
    $sha1pass = PwdHash($data['pwd']);
    // Automatically collects the hostname or domain  like example.com)
    $host  = $_SERVER['HTTP_HOST'];
    $host_upper = strtoupper($host);
    $path   = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
    // Generates activation code simple 4 digit number
    $activ_code = rand(1000,9999);
    $usr_email = $data['usr_email'];
    $user_name = $data['user_name'];
    $rs_duplicate = mysql_query("select count(*) as total from users where user_email='$usr_email' OR user_name='$user_name'") or die(mysql_error());
    list($total) = mysql_fetch_row($rs_duplicate);
    if ($total > 0)
    $err[] = "ERROR - The username/email already exists. Please try again with different username and email.";
    if(empty($err)) {
    $sql_insert = "INSERT into `users`
                  (`full_name`,`user_email`,`pwd`,`address`,`tel`,`fax`,`website`,`date`,`users_ip`,`activa tion_code`,`country`,`user_name`
                VALUES
                ('$data[full_name]','$usr_email','$sha1pass','$data[address]','$data[tel]','$data[fax]',' $data[web]'
                ,now(),'$user_ip','$activ_code','$data[country]','$user_name'
    mysql_query($sql_insert,$link) or die("Insertion Failed:" . mysql_error());
    $user_id = mysql_insert_id($link); 
    $md5_id = md5($user_id);
    mysql_query("update users set md5_id='$md5_id' where id='$user_id'");
    //    echo "<h3>Thank You</h3> We received your submission.";
    if($user_registration)  {
    $a_link = "
    *****ACTIVATION LINK*****\n
    http://$host$path/activate.php?user=$md5_id&activ_code=$activ_code
    } else {
    $a_link =
    "Your account is *PENDING APPROVAL* and will be soon activated the administrator.
    $message =
    "Hello \n
    Thank you for registering with us. Here are your login details...\n
    User ID: $user_name
    Email: $usr_email \n
    Passwd: $data[pwd] \n
    $a_link
    Thank You
    Administrator
    $host_upper
    THIS IS AN AUTOMATED RESPONSE.
    ***DO NOT RESPOND TO THIS EMAIL****
        mail($usr_email, "Login Details", $message,
        "From: \"Member Registration\" <auto-reply@$host>\r\n" .
         "X-Mailer: PHP/" . phpversion());
      header("Location: thankyou.php"); 
      exit();
    ?>

    I  have created a  log in system  . In that when the  user completes the  registration process an auto reply(auto-reply@domain)  will generate and  sent this to users email id regarding about the user  name and password  (Lo gin Details). After formal approval from the admin  the user will  get a user activation mail with log in link.
    But , my problem is  these are work only for mail accounts from my  domain  only(test@domain). its not send any of above mentioned details  to other  mail services like gmail or yahoo etc.
    i discussed this   with some others, they said its the problem with your mail function   configuration. but i didn't get any needful information as am a  beginner  in PHP scripting.
    i have contacted this with my  hosting service they said its the  problem with  php mail () function  and use php mailer() instead mail().
    please give me a solution for the same..
    Here am ataching my code..
    <?php
    include 'dbc.php';
    $err = array();
    if($_POST['doRegister'] == 'Register')
    foreach($_POST as $key => $value) {
        $data[$key] = filter($value);
    if(empty($data['full_name']) || strlen($data['full_name']) < 4)
    $err[] = "ERROR - Invalid name. Please enter atleast 3 or more characters for your name";
    //header("Location: register.php?msg=$err");
    //exit();
    // Validate User Name
    if (!isUserID($data['user_name'])) {
    $err[] = "ERROR - Invalid user name. It can contain alphabet, number and underscore.";
    //header("Location: register.php?msg=$err");
    //exit();
    // Validate Email
    if(!isEmail($data['usr_email'])) {
    $err[] = "ERROR - Invalid email address.";
    //header("Location: register.php?msg=$err");
    //exit();
    // Check User Passwords
    if (!checkPwd($data['pwd'],$data['pwd2'])) {
    $err[] = "ERROR - Invalid Password or mismatch. Enter 5 chars or more";
    //header("Location: register.php?msg=$err");
    //exit();
    $user_ip = $_SERVER['REMOTE_ADDR'];
    // stores sha1 of password
    $sha1pass = PwdHash($data['pwd']);
    // Automatically collects the hostname or domain  like example.com)
    $host  = $_SERVER['HTTP_HOST'];
    $host_upper = strtoupper($host);
    $path   = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
    // Generates activation code simple 4 digit number
    $activ_code = rand(1000,9999);
    $usr_email = $data['usr_email'];
    $user_name = $data['user_name'];
    $rs_duplicate = mysql_query("select count(*) as total from users where user_email='$usr_email' OR user_name='$user_name'") or die(mysql_error());
    list($total) = mysql_fetch_row($rs_duplicate);
    if ($total > 0)
    $err[] = "ERROR - The username/email already exists. Please try again with different username and email.";
    if(empty($err)) {
    $sql_insert = "INSERT into `users`
                  (`full_name`,`user_email`,`pwd`,`address`,`tel`,`fax`,`website`,`date`,`users_ip`,`activa tion_code`,`country`,`user_name`
                VALUES
                ('$data[full_name]','$usr_email','$sha1pass','$data[address]','$data[tel]','$data[fax]',' $data[web]'
                ,now(),'$user_ip','$activ_code','$data[country]','$user_name'
    mysql_query($sql_insert,$link) or die("Insertion Failed:" . mysql_error());
    $user_id = mysql_insert_id($link); 
    $md5_id = md5($user_id);
    mysql_query("update users set md5_id='$md5_id' where id='$user_id'");
    //    echo "<h3>Thank You</h3> We received your submission.";
    if($user_registration)  {
    $a_link = "
    *****ACTIVATION LINK*****\n
    http://$host$path/activate.php?user=$md5_id&activ_code=$activ_code
    } else {
    $a_link =
    "Your account is *PENDING APPROVAL* and will be soon activated the administrator.
    $message =
    "Hello \n
    Thank you for registering with us. Here are your login details...\n
    User ID: $user_name
    Email: $usr_email \n
    Passwd: $data[pwd] \n
    $a_link
    Thank You
    Administrator
    $host_upper
    THIS IS AN AUTOMATED RESPONSE.
    ***DO NOT RESPOND TO THIS EMAIL****
        mail($usr_email, "Login Details", $message,
        "From: \"Member Registration\" <auto-reply@$host>\r\n" .
         "X-Mailer: PHP/" . phpversion());
      header("Location: thankyou.php"); 
      exit();
    ?>

  • Need help with mac pro OS

    Good day.
    I've recently "inherited" a Mac Pro. Trying to get it cleaned up and get newest OS.
    I've only got as far as updating to Snow leopard (Mac OS X ver. 10.6.8) but can't seem to get anything past that installed. (I.e. lion or better)
    Processor: 2 x 3 GHz Quad-Core Intel Xeon
    Memory: 12 GB 667 MHz DDR2 FB-DIMM
    Model Name: Mac Pro
      Model Identifier: MacPro2,1
      Processor Name: Quad-Core Intel Xeon
      Processor Speed: 3 GHz
      Number Of Processors: 2
      Total Number Of Cores: 8
      L2 Cache (per processor): 8 MB
      Memory: 12 GB
      Bus Speed: 1.33 GHz
      Boot ROM Version: MP21.007F.B06
      SMC Version (system): 1.15f3
      Hardware UUID: 00000000-0000-1000-8000-0019E3F9B41E
    Pretty amateur to novice on macs so if wrong info provided, my apologies.
    Any input would be greatly appreciated.
    Thank you!
    Bill

    The Mac Pro 2,1 and 1,1 officially only support up to Mac OS X 10.7.5.
    Overview
    If you need to purchase Mac OS X 10.7 Lion, you may order it from this page [at the Apple online store, US$20].
    The most current version of OS X is OS X 10.9 Mavericks. To learn more, please click here.
    What do you receive: An email with a content code for the Mac App Store.
    Note: Redemption codes are usually delivered within 1 business day but may occasionally take longer.
    http://store.apple.com/us/product/D6106Z/A/os-x-lion

  • Please help with Mac Mail freezing

    Everytime I go to mac mail I get the spinning beach ball forever and then eventually have to force-quit. I have 10.4.11 on a G4 Powerbook 1.67. Is there a way to trash my mail program and download a new one?

    Backup everything important immediately, preferably to a Firewire drive...
    Get carbon copy cloner to make an exact copy of your old HD to the New one...
    http://www.bombich.com/software/ccc.html
    SuperDuper...
    http://www.shirt-pocket.com/SuperDuper/
    Have a look at Synchronize! Pro X 6.0.5
    http://www.macupdate.com/info.php/id/6897/synchronize!-pro-x
    Or the most expensive one & my favorite, Tri-Backup...
    http://www.tri-edre.com/english/tribackup.html
    Then get a new internal drive.

  • Hi i need help with iCloud mailing plz help me!

    hi my name its rexhep kamberi am having so many troubels with icloud mail i keep putting paswoord but keeps asking me and asking i dont know why but please help

    Try to delete your account from your device (Settings > iCloud) and then set it up again. This fixes the problem in most cases.

  • Need help with PHP mail script [was: Can someone please help me?]

    I'm trying to collect data from a form and email it.  I'm using form2mail.php and the problem is that the email is not collecting the form info and it has the same email address in the From: and To: lines. I'm really stuck and would appreciate any help.
    Here is the HTML code:
    <!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=iso-8859-1" />
    <title>Contact Us</title>
    <style type="text/css">
    <!--
    .style1 {font-family: Verdana, Arial, Helvetica, sans-serif}
    .style2 {
    font-size: 14px;
    color: #000000;
    body {
    background-color: #FFFFFF;
    body,td,th {
    color: #CC3300;
    .style3 {font-size: 14px; font-weight: bold; }
    .style6 {font-size: 18px}
    .style7 {font-size: 16px}
    .style8 {font-size: 16px; font-family: Verdana, Arial, Helvetica, sans-serif; }
    .style9 {font-size: 16px; font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif; }
    .style10 {color: #000000}
    -->
    </style>
    </head>
    <body>
    <div align="center"><img src="nav2.jpg" alt="nav bar" width="698" height="91" border="0" usemap="#Map2" />
      <map name="Map2" id="Map2">
      <area shape="rect" coords="560,9,684,38" href="accessories.html" />
    <area shape="rect" coords="456,8,548,38" href="contact.html" />
    <area shape="rect" coords="305,8,435,40" href="photog.html" />
    <area shape="rect" coords="187,9,283,39" href="services.html" />
    <area shape="rect" coords="81,10,167,39" href="aboutus.html" />
    <area shape="rect" coords="5,10,68,39" href="index.html" />
    </map>
      <map name="Map" id="Map">
        <area shape="rect" coords="9,9,69,39" href="index.html" />
        <area shape="rect" coords="83,11,165,39" href="aboutus.html" />
        <area shape="rect" coords="182,9,285,38" href="services.html" />
        <area shape="rect" coords="436,14,560,37" href="contact.html" />
        <area shape="rect" coords="563,14,682,38" href="accessories.html" />
      </map>
    </div>
    <p> </p>
    <form id="TheForm" name="TheForm" action="form2mail.php" method="post">
      <p align="center" class="style2">P<span class="style1">lease fill out form below for a &quot;free no obligation quote&quot; then click submit.</span></p>
      <p align="center" class="style3">(*Required Information)</p>
      <div align="center">
        <pre><strong><span class="style8">*Contact Name</span> </strong><input name="name" type="text" id="name" />
    <span class="style8"><strong>
    Business Name </strong></span><input name="bn" type="text" id="bn" />
    <span class="style8"><strong>*Phone Number <input type="text" name="first" size="3" onFocus="this.value='';"
        onKeyup="checkNumber(this.value); autoTab(this, document.TheForm.second);" maxlength="3" value="###" /> - <input type="text" name="second" size="3" onFocus="this.value='';" onKeyup="checkNumber(this.value); autoTab(this, document.TheForm.third);" maxlength="3" value="###" /> - <input type="text" name="third" size="4" onFocus="this.value='';" onKeyup="checkNumber(this.value); autoTab(this, document.TheForm.fourth);" maxlength="4" value="####"/> </strong></span>
    <strong><span class="style1">*</span><span class="style8">Email Address</span> <input name="email" type="text" id="email" />     </strong> </pre>
        <label><span class="style9">*Re-enter to confirm</span>
        <input name="emx" type="text" id="emx" /></label><br /><br /><span class="style9">
    <label></label>
        </span>
        <p><span class="style9">*Best time to call </span>
          <select name="name1[]" multiple size="1" >
            <option>8am-9am</option>
            <option>9am-10am</option>
            <option>10am-11am</option>
            <option>11am-12pm</option>
            <option>12pm-1pm</option>
            <option>1pm-2pm</option>
            <option>2pm-3pm</option>
            <option>3pm-4pm</option>
            <option>4pm-5pm</option>
            <option>5pm-6pm</option>
            <option>6pm-7pm</option>
            <option>7pm-8pm</option>
          </select>
          <br />
          <br />
          <span class="style9">Type of Location</span>
          <select name="name2[]" multiple size="1" >
            <option>Residential</option>
            <option>Commercial</option>
          </select>
          <br />
          <br />
            <span class="style1"><br />
            <strong><br />
              <span class="style6">*Type of Services Requested:</span></strong><br />
            </span><strong><span class="style10">(check all that apply)</span><br />
                </strong><br />
                <span class="style7"><span class="style1"><strong>Janitorial cleaning</strong></span>
                <input type="checkbox" name="checkbox[]" value="checkbox" multiple/>
                <br />
                </span><strong><br />
                  <span class="style8">Mobile Auto Detailing</span>
                <input type="checkbox" name="checkbox2[]" value="checkbox" multiple/>
                <br />
                <br />
                  </strong><span class="style9">Moving/Hauling</span>
          <input type="checkbox" name="checkbox3[]" value="checkbox" multiple/>
          <br />
          <br />
                  <span class="style9">Pressure washing</span>
          <input type="checkbox" name="checkbox4[]" value="checkbox" multiple/>
          <br />
          <br />
                  <span class="style9">Window washing</span>
          <input type="checkbox" name="checkbox5[]" value="checkbox" multiple/>
          <br />
          <br />
                  <span class="style9">Window Tinting</span>
          <input type="checkbox" name="checkbox6[]" value="checkbox" multiple/>
          <br />
          <br />
                  <span class="style9">Boat cleaning</span>
          <input type="checkbox" name="checkbox7[]" value="checkbox" multiple/>
          <br />
          <br />
                  <span class="style9">RV cleaning</span>
          <input type="checkbox" name="checkbox8[]" value="checkbox" multiple/>
          <br />
          <br />
                  <span class="style9">Motorcycle cleaning</span>
          <input type="checkbox" name="checkbox9[]" value="checkbox" multiple/>
          <br />
          <br />
          <br />
          <br />
          <input name="SB"  type="button" class="style9" value="Submit" onClick="sendOff();">
        </p>
      </div></label>
      <script language="JavaScript1.2">
    // (C) 2000 www.CodeLifter.com
    // http://www.codelifter.com
    // Free for all users, but leave in this  header
    var good;
    function checkEmailAddress(field) {
    // Note: The next expression must be all on one line...
    //       allow no spaces, linefeeds, or carriage returns!
    var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org) |(\..{2,2}))$)\b/gi);
    if (goodEmail){
       good = true
    } else {
       alert('Please enter a valid e-mail address.')
       field.focus()
       field.select()
       good = false
    function autoTab(startPoint,endPoint){
    if (startPoint.getAttribute&&startPoint.value.length==startPoint.getAttribute("max length"))
    endPoint.focus();
    function checkNumber(phoneNumber){
    var x=phoneNumber;
    var phoneNumber=/(^\d+$)|(^\d+\.\d+$)/
    if (phoneNumber.test(x))
    testResult=true
    else{
    alert("Please enter a valid number.")
    phoneNumber.focus();
    phoneNumber.value="";
    testResult=false
    return (testResult)
    function sendOff(){
       namecheck = document.TheForm.name.value   
       if (namecheck.length <1) {
          alert('Please enter your name.')
          return
       good = false
       checkEmailAddress(document.TheForm.email)
       if ((document.TheForm.email.value ==
            document.TheForm.emx.value)&&(good)){
          // This is where you put your action
          // if name and email addresses are good.
          // We show an alert box, here; but you can
          // use a window.location= 'http://address'
          // to call a subsequent html page,
          // or a Perl script, etc.
          window.location= 'form2mail.php';
       if ((document.TheForm.email.value !=
              document.TheForm.emx.value)&&(good)){
              alert('Both e-mail address entries must match.')
    </script>
    </form>
    <p> </p>
    </body>
    </html>
    and here is the form2mail.php:
    <?php
    # You can use this script to submit your forms or to receive orders by email.
    $MailToAddress = "[email protected]"; // your email address
    $redirectURL = "http://www.chucksmobile.com/thankyou.html"; // the URL of the thank you page.
    $MailSubject = "[Customer Contact Info]"; // the subject of the email
    $sendHTML = FALSE; //set to "false" to receive Plain TEXT e-mail
    $serverCheck = FALSE; // if, for some reason you can't send e-mails, set this to "false"
    # copyright 2006 Web4Future.com =================== READ THIS ===================================================
    # If you are asking for a name and an email address in your form, you can name the input fields "name" and "email".
    # If you do this, the message will apear to come from that email address and you can simply click the reply button to answer it.
    # To block an IP, simply add it to the blockip.txt text file.
    # CHMOD 777 the blockip.txt file (run "CHMOD 777 blockip.txt", without the double quotes)
    # This is needed because the script tries to block the IP that tried to hack it
    # If you have a multiple selection box or multiple checkboxes, you MUST name the multiple list box or checkbox as "name[]" instead of just "name"
    # you must also add "multiple" at the end of the tag like this: <select name="myselectname[]" multiple>
    # you have to do the same with checkboxes
    Web4Future Easiest Form2Mail (GPL).
    Copyright (C) 1998-2006 Web4Future.com All Rights Reserved.
    http://www.Web4Future.com/
    This script was written by George L. & Calin S. from Web4Future.com
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    # DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING ===================================================
    $w4fver =  "2.2";
    $ip = ($_SERVER['HTTP_X_FORWARDED_FOR'] == "" ? $_SERVER['REMOTE_ADDR'] : $_SERVER['HTTP_X_FORWARDED_FOR']);
    //function blockIP
    function blockip($ip) {
    $handle = @fopen("blockip.txt", 'a');
    @fwrite($handle, $ip."\n");
    @fclose($handle);
    $w4fx = stristr(file_get_contents('blockip.txt'),getenv('REMOTE_ADDR'));
    if ($serverCheck) {
    if (preg_match ("/".str_replace("www.", "", $_SERVER["SERVER_NAME"])."/i", $_SERVER["HTTP_REFERER"])) { $w4fy = TRUE; } else { $w4fy = FALSE; }
    } else { $w4fy = TRUE; }
    if (($w4fy === TRUE) && ($w4fx === FALSE)) {
    $w4fMessage = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\"><html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"></head><body><font face=3Dverdana size=3D2>";
    if (count($_GET) >0) {
    reset($_GET);
    while(list($key, $val) = each($_GET)) {
      $GLOBALS[$key] = $val;
      if (is_array($val)) {
       $w4fMessage .= "<b>$key:</b> ";
       foreach ($val as $vala) {
        $vala =stripslashes($vala);
        $vala = htmlspecialchars($vala);
        if (trim($vala)) { if (stristr($vala,"Content-Type:") || stristr($vala,"MIME-Version") || stristr($vala,"Content-Transfer-Encoding") || stristr($vala,"bcc:")) { blockip($ip); die("ILLEGAL EXECUTION DETECTED!"); } }
        $w4fMessage .= "$vala, ";
       $w4fMessage .= "<br>\n";
      else {
       $val = stripslashes($val);
       if (trim($val)) { if (stristr($val,"Content-Type:") || stristr($val,"MIME-Version") || stristr($val,"Content-Transfer-Encoding") || stristr($val,"bcc:")) { blockip($ip); die("ILLEGAL EXECUTION DETECTED!"); } }
       if (($key == "Submit") || ($key == "submit")) { } 
       else {  if ($val == "") { $w4fMessage .= "$key: - <br>\n"; }
         else { $w4fMessage .= "<b>$key:</b> $val<br>\n"; }
    } // end while
    }//end if
    else {
    reset($_POST);
    while(list($key, $val) = each($_POST)) {
      $GLOBALS[$key] = $val;
      if (is_array($val)) {
       $w4fMessage .= "<b>$key:</b> ";
       foreach ($val as $vala) {
        $vala =stripslashes($vala);
        $vala = htmlspecialchars($vala);
        if (trim($vala)) { if (stristr($vala,"Content-Type:") || stristr($vala,"MIME-Version") || stristr($vala,"Content-Transfer-Encoding") || stristr($vala,"bcc:")) {blockip($ip); die("ILLEGAL EXECUTION DETECTED!"); } }   
        $w4fMessage .= "$vala, ";
       $w4fMessage .= "<br>\n";
      else {
       $val = stripslashes($val);
       if (trim($val)) { if (stristr($val,"Content-Type:") || stristr($val,"MIME-Version") || stristr($val,"Content-Transfer-Encoding") || stristr($val,"bcc:")) {blockip($ip); die("ILLEGAL EXECUTION DETECTED!"); } }
       if (($key == "Submit") || ($key == "submit")) { } 
       else {  if ($val == "") { $w4fMessage .= "$key: - <br>\n"; }
         else { $w4fMessage .= "<b>$key:</b> $val<br>\n"; }
    } // end while
    }//end else
    $w4fMessage .= "<font size=3D1><br><br>\n Sender IP: ".$ip."</font></font></body></html>";
        $w4f_what = array("/To:/i", "/Cc:/i", "/Bcc:/i","/Content-Type:/i","/\n/");
    $name = preg_replace($w4f_what, "", $name);
    $email = preg_replace($w4f_what, "", $email);
    if (!$email) {$email = $MailToAddress;}
    $mailHeader = "From: $name <$email>\r\n";
    $mailHeader .= "Reply-To: $name <$email>\r\n";
    $mailHeader .= "Message-ID: <". md5(rand()."".time()) ."@". ereg_replace("www.","",$_SERVER["SERVER_NAME"]) .">\r\n";
    $mailHeader .= "MIME-Version: 1.0\r\n";
    if ($sendHTML) {
      $mailHeader .= "Content-Type: multipart/alternative;";  
      $mailHeader .= "  boundary=\"----=_NextPart_000_000E_01C5256B.0AEFE730\"\r\n";    
    $mailHeader .= "X-Priority: 3\r\n";
    $mailHeader .= "X-Mailer: PHP/" . phpversion()."\r\n";
    $mailHeader .= "X-MimeOLE: Produced By Web4Future Easiest Form2Mail $w4fver\r\n";
    if ($sendHTML) {
      $mailMessage = "This is a multi-part message in MIME format.\r\n\r\n";
      $mailMessage .= "------=_NextPart_000_000E_01C5256B.0AEFE730\r\n";
      $mailMessage .= "Content-Type: text/plain;   charset=\"ISO-8859-1\"\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n";  
      $mailMessage .= trim(strip_tags($w4fMessage))."\r\n\r\n";  
      $mailMessage .= "------=_NextPart_000_000E_01C5256B.0AEFE730\r\n";  
      $mailMessage .= "Content-Type: text/html;   charset=\"ISO-8859-1\"\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n";  
      $mailMessage .= "$w4fMessage\r\n\r\n";  
      $mailMessage .= "------=_NextPart_000_000E_01C5256B.0AEFE730--\r\n";  
    if ($sendHTML === FALSE) {
      $mailHeader .= "Content-Type: text/plain;   charset=\"ISO-8859-1\"\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n";  
      $mailMessage .= trim(strip_tags($w4fMessage))."\r\n\r\n";  
    if (!mail($MailToAddress, $MailSubject, $mailMessage,$mailHeader)) { echo "Error sending e-mail!";}
    else { header("Location: ".$redirectURL); }
    } else { echo "<center><font face=verdana size=3 color=red><b>ILLEGAL EXECUTION DETECTED!</b></font></center>";}
    ?>
    Thanks in advance,
    Glenn
    [Subject line edited by moderator to indicate nature of request]

    Using PHP to process an online form and send the input by email is very simple. The mail() function takes a minimum of three arguments, namely: the address the mail is being sent to, the subject line, and the body of the email as a single string. The reason some people use scripts like form2mail.php is because they don't have the knowledge or patience to validate the user input to make sure it's safe to send.
    Rather than attempt to trawl through your complex form looking for the problems, I would suggest starting with a couple of simple tests.
    First of all, create a PHP page called mailtest.php containing the following script:
    <?php
    $to = '[email protected]'; // use your own email address
    $subject = 'PHP mail test';
    $message = 'This is a test of the mail() function.';
    $sent = mail($to, $subject, $message);
    if ($sent) {
      echo 'Mail was sent';
    } else {
      echo 'Problem sending mail';
    ?>
    Save the script, upload it to your server, and load it into a browser. If you see "Mail is sent", you're in business. If not, it probably means that the hosting company insists on the fifth argument being supplied to mail(). This is your email address preceded by -f. Change the line of code that sends the mail to this:
    $sent = mail($to, $subject, $message, null, '[email protected]');
    Obviously, replace "[email protected]" with your own email address.
    If this results in the mail being sent successfully, you will need to adapt the code in form2mail.php to accept the fifth parameter. You need to change the following line, which is a few lines from the end of the script:
    if (!mail($MailToAddress, $MailSubject, $mailMessage,$mailHeader))
    Change it to this:
    if (!mail($MailToAddress, $MailSubject, $mailMessage,$mailHeader, '[email protected]'))
    Again, use your own email address instead of "[email protected]".
    Once you have determined whether you need the fifth argument, test form2mail.php with a very simple form like this:
    <form id="form1" name="form1" method="post" action="form2mail.php">
      <p>
        <label for="name">Name:</label>
        <input type="text" name="name" id="name" />
      </p>
      <p>
        <label for="email">Email:</label>
        <input type="text" name="email" id="email" />
      </p>
      <p>
        <label>
          <input type="checkbox" name="options[]" value="boat cleaning" id="options_0" />
          Boat cleaning</label>
        <br />
        <label>
          <input type="checkbox" name="options[]" value="RV cleaning" id="options_1" />
          RV cleaning</label>
        <br />
        <label>
          <input type="checkbox" name="options[]" value="motorcycle cleaning" id="options_2" />
          Motorcycle cleaning</label>
      </p>
      <p>
        <input type="submit" name="send" id="send" value="Submit" />
      </p>
    </form>
    If that works, you can start to make the form more complex and add back your JavaScript validation.

  • Need help with Mac & PC not recognizing external drive (disk not readable)

    I am having trouble getting my computer(s) to recognize my Seagate External Drive.
    Have tried on my MacBook, iMac, 2 Mini's & my roommate's PC and all reveal the same issue: The Disk you inserted was not readable by this computer.
    MacBook/iMac both are working off of Leopard
    Both Mini's are on Tiger
    It won't show up in finder, rendering it unobtainable. I need to get the information if at all possible off of this hard drive (very important!!) so any help I can get would be greatly appreciated!
    It allows me to go into disk utility where it shows up with this information:
    Name : ST316002 3A Media
    Type : Disk
    Partition Map Scheme : Master Boot Record
    Disk Identifier : disk4
    Media Name : ST316002 3A Media
    Media Type : Generic
    Connection Bus : USB
    USB Serial Number : 3LJ07T540000
    Device Tree : /PCI0@0/USB7@1D,7/@4:0
    Writable : Yes
    Ejectable : Yes
    Mac OS 9 Drivers Installed : No
    Location : External
    Total Capacity : 149.1 GB (160,041,885,696 Bytes)
    S.M.A.R.T. Status : Not Supported
    Disk Number : 4
    Partition Number : 0
    And it is in the "about this mac" section with this information:
    Seagate Mass Storage:
    Capacity: 149.05 GB
    Removable Media: Yes
    Detachable Drive: Yes
    BSD Name: disk4
    Version: 0.00
    Bus Power (mA): 500
    Speed: Up to 480 Mb/sec
    Manufacturer: Seagate
    Mac OS 9 Drivers: No
    Partition Map Type: MBR (Master Boot Record)
    Product ID: 0x0500
    Serial Number: 3LJ07T540000
    S.M.A.R.T. status: Not Supported
    Vendor ID: 0x0bc2

    Additional info:
    on the disk4s1 info in disk utility, this information is seen:
    Name : disk4s1
    Type : Volume
    Disk Identifier : disk4s1
    Mount Point : Not mounted
    Connection Bus : USB
    Device Tree : /PCI0@0/USB7@1D,7/@4:1
    Writable : Yes
    Capacity : 149.0 GB (160,022,790,144 Bytes)
    Owners Enabled : No
    Can Turn Owners Off : No
    Can Be Formatted : No
    Bootable : No
    Supports Journaling : No
    Journaled : No
    Disk Number : 4
    Partition Number : 1
    so it looks like a whole lot of no's that need to be turned around! I can't understand why it won't be read by either Mac or PC with all of this, or how I can fix it

  • Need help with Mac Pro purchasing decision

    I've read preliminary reviews on the new Mac Pro, and I'm ready to upgrade my current Mac Pro (which is Dual 2.4 Ghz Quad-core with 32 GB RAM).  But I'm going through some major turmoil in the decision.  My current Mac Pro, aged as it may be, has been good to me, and when it needed upgrading, it was so easy to do.  I installed an additional two internal hard disks, giving the Mac Pro 3 TBs of internal storage.  RAM upgrade was a breeze, and when the graphics card went out, I was able to buy and install a replacement without a hiccup. 
    I love the low profile of the new Mac Pro, albeit I'll still be putting it on the floor - I don't like having my desktop computer in my desk work area.  And it looks like upgrading the RAM in the new Mac Pro is pretty simple (although horribly expensive).  I would require a CD/DVD drive, so that becomes a piece of "stuff" I have to clutter my work are with.  However, most importantly, the internal storage issue, FOR ME, is huge.  Without the ability to add internal drives, getting the 1TB flash storage is a must, but sooooooo expensive.  AND.. I still need additional storage (more than half of my current 3 TBs is in use).
    Moreover, the whole lack of upgradability has me concerned that the new Mac Pro may disappear like the G4 Cube.  I haven't seen any rave reviews of the new Mac Pro overall.
    But I need to upgrade.
    I have configured a new Mac Pro on the Apple Store about 100 times now, but never making the purchase for all of the above reasons, as well as the $5K price tag that it keeps ending up at.   I even started looking at refurbished Mac Pros (newer than mine, but the same old huge silver case).  The advantage is that it's upgradeable, and I won't end up with an optical drive or external hard drives cluttering my desk space. 
    The truth is, every time I go to buy, either a new Mac Pro, or a refurbished one, I hit a wall.  I'm walking the fence, wondering if I should walk it until a newer Mac Pro shows up with more expandability options (although it seems unlikely since Apple's direction seems to be form over function). 
    The new Mac Pro has been out for awhile, so I am looking for feedback from people who are kind of in my shoes, but already bit the bullet.  I don't want to encourage replies of regret, but I also would prefer the truth over grandiose reviews simply to justify making the leap (and dropping some huge bills).  It happens... "I just spent 5 grande, I better **** well love it, and I'll make sure everyone else thinks I do!"   ;-)
    Please share your experiences.  How have you gotten around the lack of upgradeability on the internal storage?  I have had bad experiences with external drives in the past.  Firewire drives were fast and furious, but the were not as reliable as internal drives.  USB drives lag, and that dreaded spin up time every time the Mac OS does something that wakes up all the drives, even if the external drives weren't actually being accessed (never had that problem with Firewire drives, maybe because they were always spun up?).
    Anyway, I don't want my buyer's pain to turn into buyer's remorse, so I appreciate all the wisdom any of you would be willing to share.
    Thanks,
    Bill

    I'll offer my comments although there are others much better qualified to answer than I am.
    First, the reason I bought the machine that I got was that I found an "open box" deal at a local retailer and got a substantial discount from the normal list price. Otherwise, I might not have gone to the nMP quite as quickly as I did. Regarding ram and the ssd drive, both of these can be upgraded at some later date if I find that is needed. The ram I will probably bump asap, filling the one empty slot with likely an 8gb OWC module.
    To run your VGA monitors, you will need 2 passive mini-display port to VGA adapters. You can buy these pretty much anywhere, the Apple ones are superb quality at a price but other options are out there. These will plug into 2 of the Thunderbolt ports on the nMP.
    Regarding cpu's and gpu's it gets a bit confusing. Basically right now it depends on the software that you are going to run. It is not likely coincidence that FCPX 10.1 came out basically at the same time as the nMP, as it really highlights full use of the multicore cpu's plus the dual fast gpu's. FCPX really screams on the nMP.
    Right now, it seems more video software is making optimum use of both the multicore cpu's and dual gpu's in the nMP. Other software, most notably photo software that should also benefit, is lagging behind. For instance (going only from memory) Adobe software is not very good at using multi-core cpu's nor does it use multiple gpu's either. You can find comparisons of running Photoshop filters on a 3.7ghz 4-core vs the (slower clock speed) 6 or 8 cores and the 4-core comes out close or even faster in some tests because Photoshop uses only a single core, which on the 4-core machine is faster.
    However, this is a pretty specific instance and generally buying the fastest cpu and gpu that you can afford is a good plan. Especially so for the gpu's as right now, the video may end up being the only component that does not end up with some sort of upgrade option in the foreseeable future.
    If I was going to order a system under the circumstances you have stated, the 6-core with the D500 gpu's sure looks like the sweet spot in the lineup, and probably money well spent. After I would probably upgrade the ssd next, since in order to upgrade it later you have to remove a perfectly good ssd since there is only one slot. Personally I am ok with the 256gb as my boot and system drive, since with Thunderbolt you have basically PCIe access to an external box that can have either Sata or PCIe expansion for whatever storage you can afford.
    As I said earlier, right now I am going cheap and using Apples Thunderbolt to firewire cable, which is allowing me to run my existing Lacie firewire drives in a daisy chain just as I did on the old MP.
    Upgrading the ram at purchase or later is your choice, there are certainly less expensive options but with only 4 slots you have to weigh the cost of discarding or trading in the original Apple ram when you decide to swap it out for bigger modules. Plus not all ram can be mixed and matched, you may have to remove all the existing ram in order to add just a single high capacity (16gb or larger) module.
    Again, hope I have helped more than adding to your confusion.

  • TS3276 Hello I need help with my mail app

    Hello
    I have bin trying to set up an email but I keep getting my "outgoing server" password rejected. I know I am
    not putting in the wrong information by surity.
    Could someone please help me out with this issue.
    I am running OSX version 10.7.2
    Kind Regards
    Zayne

    You probably won't like this suggestion, but I suggest you reinstall Lion.
    First, backup your system. Next, reboot your system, press/hold the COMMAND-R keys to boot into the Recovery HD. Select 'Reinstall Mac OS X'. If you purchased Lion as an upgrade to Snow Leopard, the reinstall process will install Lion 10.7.3. If your system came preinstalled with Lion, you might still get Lion 10.7.2. Both installs are a total install of the OS. None of your apps or data will be impacted. Just the OS.

  • Need help with Apple Mail POP Google App Settings

    I am using Google Apps Account for the domain name xyz.travel
    I have set-up POP Account on Apple Mail for my Email address [email protected] with the Google Mail settings of POP and SMTP correctly. No Problem.
    However, in my Email Address [email protected] there are 3000+ Emails which is more than 3 years old. I do not want all these Emails to be uploaded on my Apple Mailbox. It will take ages for all these 3000+ Emails to be uploaded in my Apple Mailbox. I only want to be able to send Emails from the Apple Mailbox and receive the Emails that I received on [email protected] henceforth.
    Can someone please help me ?

    Please follow these directions to delete the Mail "sandbox" folder.
    Back up all data.
    Triple-click the line below to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Quit and relaunch Mail, and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Post your results.
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Need help with web mail sound

    Apparently in seup in web mail, one can check the box for a sound to be heard when new mail arrives...ie.."You got mail or something to that effect." Getting info on this subject or any subject is like pulling teeth ..all i get is links that do not answer to my problem. What will it take to get a live person or at the least a response to my question. Also, when I open verizon.net to read or see if I have had any mail, I sign in correctly, and am asked if i forgot my password. I didn't forget, apparently verizon has...so just on a whim, in that same page, I click on the link email and voila, i see my mail...Now, that being said, whats to prevent anyone else to read my mail by doing the same thing? I even resetted the password...and I thought Time warner internet was bad.

    Hi @Joidivini ,
    Thank you for visiting the HP Support Forums. I needed to edit your post and remove the Serial Number. From our Rules of Participation:
    Protect privacy - yours and others'. Don't share anything about yourself that you would not want to see on a road-side billboard. Don't post contact or other personal information-your own or anyone else's-or any content that you receive in one-to-one communications without the author's consent. For example, don’t post your computer’s serial # or contact information publicly, and do not allow someone you don’t know to remotely take control of your computer.
    If you need people to contact you directly, either ask them to send you a private message or subscribe to the thread so you will be notified when there are replies. You may also click on your name anywhere in the forum and you will be taken to your profile page, where you can find a list of threads you have participated in.
    Sharing personal email addresses, telephone numbers, and last names is not allowed for your safety. If you have any questions feel free to send me a private message in reply.
    Thank you
    George
    I work for HP

  • Need help with Mac Pro (2008) iCloud sync problem

    I am using a Mac Pro (Early 2008) with multiple drives and partitions, some of which I use for various software testing.  I wanted to have access to the same data on various partitions, so I tried to use iCloud to store some Pages files. I found that in the Mountain Lion Partition that I normally use, that the document data ( Pages, Numbers, etc) would not upload to the cloud... just showed as waiting. All other iCloud Data ( Calendar, Address Book , etc) did sync fine. If I accessed iCloud using a browser or looked on iClould using the iCloud Manage function in the iCloud system preferences, I could see all the files.  I then found that I did have another Mountain LIon partition in which the data syncing all worked.  Other testing showed that if I did a clone of the working partition using SuperDuper, the clone worked properly, but if I did a clean install of 10.8.4, the document data did not sync.If I did a clean install and used the migration assistant to migrate from the working partition, it still did not work.  I later found that if I replaced the top level Library file in a non working partition with the one from the working partition, that I could make the non working partition sync properly. I have not been able to find a subset of the folder that would make things work, but have not tried every combination. At this point my only conclusion is that there must be a bug in the 10.8.4 installer. Apple has been working on this for a few weeks, but has not found anything and cannot duplicate... but they are testing with iMacs.
    Is there anyone with a Mac Pro (2008) who can do a clean install of 10.8.4 on a partition and see if they can still access their iCloud data (Pages, Numbers, Etc). If so that would probably confirm the otherwise unexplanable problem.

    I am using a Mac Pro (Early 2008) with multiple drives and partitions, some of which I use for various software testing.  I wanted to have access to the same data on various partitions, so I tried to use iCloud to store some Pages files. I found that in the Mountain Lion Partition that I normally use, that the document data ( Pages, Numbers, etc) would not upload to the cloud... just showed as waiting. All other iCloud Data ( Calendar, Address Book , etc) did sync fine. If I accessed iCloud using a browser or looked on iClould using the iCloud Manage function in the iCloud system preferences, I could see all the files.  I then found that I did have another Mountain LIon partition in which the data syncing all worked.  Other testing showed that if I did a clone of the working partition using SuperDuper, the clone worked properly, but if I did a clean install of 10.8.4, the document data did not sync.If I did a clean install and used the migration assistant to migrate from the working partition, it still did not work.  I later found that if I replaced the top level Library file in a non working partition with the one from the working partition, that I could make the non working partition sync properly. I have not been able to find a subset of the folder that would make things work, but have not tried every combination. At this point my only conclusion is that there must be a bug in the 10.8.4 installer. Apple has been working on this for a few weeks, but has not found anything and cannot duplicate... but they are testing with iMacs.
    Is there anyone with a Mac Pro (2008) who can do a clean install of 10.8.4 on a partition and see if they can still access their iCloud data (Pages, Numbers, Etc). If so that would probably confirm the otherwise unexplanable problem.

  • Need help with mac stuck in start up

    I was only able to boot in safe mode. I reinstalled os x 10.4 and it rebooted fine. On doing all the updates on the 3rd reboot it is stuck in a blue screen recycle after the mac os x start up screen. Windows starts okay. The extra problem I have is the internal d drive does not work and I use an external dvd drive. Would appreciate any help. I have flashed the pram. I think it might be related to the last updates.

    What happens if you run fsck?
    Run fsck.
    1. Reboot/Startup holding your Command-S key down.
    2. At the command line type the following and hit 'Return.'
    /sbin/fsck -fy
    3. If it finds a problem and repairs it, immediately run fsck again until the drive checks OK.
    4. After it has check/repaired your disk, type 'reboot' and hit 'Return' again.
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Macsimum News Associate Editor  Creator of 'Mac611 - Mobile Mac Support'

Maybe you are looking for

  • SB Audigy Value card Conflict with Modem re-booting my

    My PC using Intel D95GAV M/B, 3.2GHz with XpSP2. On-board sound ok. Recently installed SB Audigy Value card. It is working perfectly. But with that card I can't use any modem function, any time if I dial or connecting to Internet or Outlook my PC get

  • Trying to load dvd from hp to ipod

    i am trying to load a dvd that is in my hp pavillion onto ipod and cant figure out how to do it?

  • SAP Netweaver XI / PI with ABAP or Basis?

    I have good knowledge in SAP Netweaver XI abd PI several versions, now i would like to upgrade myself , which would be best option? ABAP or BASIS? , i dont have any idea about both, please guide me....which would be a better career for me to go with.

  • Nikon D5000 NEF Support

    Hello, The current version of Camera Raw (5.3) does not support the Nikon D5000 NEF format. When can I expect support for this camera to be released? If you need a few NEF files to help in getting this done, let me know and I'll be happy to send you

  • Is it necessary to clean a Mac?

    Is it necessary to clean a Mac?