Auto reply read recipient

Dear All,
I use Mac X 10.5.7. I wonder is there any way I can turn on auto reply read recipient on mac? When I send an email I want to get a confirmation when the recipient open the mail.
Thanks in advance
Softdrink123

run the following command in terminal
defaults write com.apple.mail UserHeaders '{"Return-Receipt-To" = "[email protected]"; "Disposition-Notification-To" = "[email protected]"; }'
and substituting "[email protected]" with your own email address. However, this will cause Mail to send a receipt request EVERY time you send an email.
also keep in mind that the email clients of your email recipients have to support receipt notification AND it has to be turned on. if they don't support it (Mail doesn't btw) or the feature is turned off this will not work and there is absolutely nothing you can do to get receipt notifications.

Similar Messages

  • Disable Auto-Reply for Read Receipt

    Is it possible to make me be prompted as to whether or not I send a read receipt?
    A few people I know like to use the 'Read Receipt' option when they send me mail - if I'm on my windows PC I get prompted whether or not I want to send the receipt upon opening the message, when I use Mail on my mac it automatically sends it as I see a copy of the 'Delivery' message in my sent mail.
    Would using Entourage prompt me since it might be a MS thing?

    Hi Mike,
    From your description, I would like to clarify the following thing:
    AutoReplying For All Messages will bring mail loops, it is not recommended to send auto reply to all the incoming messages. Your understanding will be appreciated.
    Hope my clarification can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • How do I create an auto reply for one person in my buddy list?

    I want to be able to have an automatic reply to one person in my buddy list whenever they IM me so that i dont have to reply myself. I dont want to block them but i sometimes want to be able to just avoid them and so does anyone know any applescript that i can run whenever they send me a message??

    Hi,
    In the Buddy List highlight a Buddy.
    Use the CMD and I keys together (Get Info)
    This brings up their Info Card.
    Select Actions  (Same as Alerts in the Preferences In Fact some versions do Read  "Alerts" )
    Change the top item to Invite (Text)
    Select the AppleScript option.
    Set the Script to be Auto-Decline.
    This will produce no response on the Buddies end.
    For that go to the General Section of the Preferences and set  the option to "Auto-Reply with my Away Message"
    This will then send the Away message to the Buddy set in the first bit but to no--one else.
    If you wish to be able to Reply when you have an Available Message up, that is a little more difficult.
    9:19 PM      Thursday; September 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can i send an auto reply with form content to sender?

    Hai!
    I'm new to website building, but i already came a long way
    i made a form and i like to send a auto reply with the form content (if that isnt too difficult) to the person who filled it in.
    The form i made is in PHP (coding i copied partly from someone from the internet .)
    You can see the from at: http://vinddit.nl/vindditnu%20php%20version.php
    My PHP coding so far
    <?php
    // Set email variables
    $email_to = '[email protected]';
    $email_subject = 'Aanvraag - VINDDIT NU!';
    // Set required fields
    $required_fields = array('Voornaam','email','Achternaam','Plaats');
    // set error messages
    $error_messages = array(
              'Voornaam' => 'Vul hier uw voornaam in a.u.b.',
              'email' => 'Vul hier een geldig email adres in a.u.b.',
              'Achternaam' => 'Vul hier uw achternaam in a.u.b.',
              'Plaats' => 'Vul hier uw woonplaats in a.u.b.'
    // Set form status
    $form_complete = FALSE;
    // configure validation array
    $validation = array();
    // check form submittal
    if(!empty($_POST)) {
              // Sanitise POST array
              foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
              // Loop into required fields and make sure they match our needs
              foreach($required_fields as $field) {
                        // the field has been submitted?
                        if(!array_key_exists($field, $_POST)) array_push($validation, $field);
                        // check there is information in the field?
                        if($_POST[$field] == '') array_push($validation, $field);
                        // validate the email address supplied
                        if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
              // basic validation result
              if(count($validation) == 0) {
                        // Prepare our content string
                        $email_content = 'New Website Comment: ' . "\n\n";
                        // simple email content
                        foreach($_POST as $key => $value) {
                                  if($key != 'submit') $email_content .= $key . ': ' . $value . "\n";
                        // if validation passed ok then send the email
                        mail($email_to, $email_subject, $email_content);
                        // Update form switch
                        $form_complete = TRUE;
    function validate_email_address($email = FALSE) {
              return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
    function remove_email_injection($field = FALSE) {
       return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
              <title>Aanvraag formulier</title>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <link href="style.css" rel="stylesheet" type="text/css" />
        <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
        <script type="text/javascript" src="validation/validation.js"></script>
              <script type="text/javascript">
    var nameError = '<?php echo $error_messages['fullname']; ?>';
                        var emailError = '<?php echo $error_messages['email']; ?>';
                        var commentError = '<?php echo $error_messages['comment']; ?>';
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        </script>
    <style type="text/css">
    </style>
    </head>
    <body onload="MM_preloadImages('icons/x.png')">
    <p> </p>
    <p>
      <?php if($form_complete === FALSE): ?>
    </p>
        <form action="vindditnu php version.php" method="post" enctype="application/x-www-form-urlencoded" name="Form"  id="commentsform">
        <h1><img src="icons/vinddit3.gif" width="220" height="80" alt="logo" /></h1>
        <h1>Wat zoekt u?:</h1>
                     <table width="690" border="0">
            <tr>
              <td>In welke categorie zoekt u?*</td>
              <td colspan="3"><select name="Ophalen_verzenden" id="Ophalen_verzenden">
                <option selected="selected">Meubels </option>
                <option>Witgoed </option>
                <option>Woon accesoires </option>
                <option>Kleding </option>
                <option>Schoenen </option>
                <option>Mode accesoires </option>
                <option>Speelgoed </option>
                <option>Boeken, tijdschriften, papierwaren </option>
                <option>Overig </option>
              </select></td>
            </tr>
            <tr>
              <td>Kleur:* </td>
              <td colspan="3"><select name="kleuren" id="kleuren">
                <option>Blauw</option>
                <option>Rood</option>
                <option>WIt</option>
                <option>Zwart</option>
                <option>Beige</option>
                <option>Bruin</option>
                <option>Geel</option>
                <option>Oranje</option>
                <option>Rood</option>
                <option>Metallic (Bijv. Zilver/Goud/Brons/Koper</option>
                <option>Meerkleurig</option>
                <option selected="selected">Overig/ N.v.t</option>
              </select></td>
            </tr>
            <tr>
              <td>Merk: </td>
              <td colspan="3"><input name="Merk" type="text" id="Merk5" value="<?php echo isset($_POST['Merk'])? $_POST['Merk'] : ''; ?>" />
                <?php if(in_array('Merk', $validation)): ?>
                <span class="error"><?php echo $error_messages['Merk']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Type/Model:</td>
              <td colspan="3"><input type="text" name="type" id="type" value="<?php echo isset($_POST['type'])? $_POST['type'] : ''; ?>" />
                <?php if(in_array('type', $validation)): ?>
                <span class="error"><?php echo $error_messages['type']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Materiaal: </td>
              <td colspan="3"><input name="Materiaal" type="text" id="Materiaal" value="<?php echo isset($_POST['Materiaal'])? $_POST['Materiaal'] : ''; ?>" />
                <?php if(in_array('Materiaal', $validation)): ?>
                <span class="error"><?php echo $error_messages['Materiaal']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Maat: </td>
              <td colspan="3"><input type="text" name="Maat" id="Maat" value="<?php echo isset($_POST['Maat'])? $_POST['Maat'] : ''; ?>" />
                <?php if(in_array('Maat', $validation)): ?>
                <span class="error"><?php echo $error_messages['Maat']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Conditie*:</td>
              <td colspan="3"><select name="conditie" id="conditie" >
                <option>Zo goed als nieuw</option>
                <option>Nieuw</option>
                <option>Bebruikt</option>
                <option selected="selected">Geen voorkeur </option>
              </select></td>
            </tr>
            <tr>
              <td>Ophalen/Verzenden:*</td>
              <td colspan="3"><select name="ophalen" id="ophalen">
                <option>Ophalen</option>
                <option>Verzenden</option>
                <option>N.v.t</option>
                <option>Geen voorkeur </option>
              </select></td>
            </tr>
            <tr>
              <td>Prijs Min:</td>
              <td><input name="prijsmin" type="text" id="prijsmin" size="10" value="<?php echo isset($_POST['prijsmin'])? $_POST['prijsmin'] : ''; ?>" />
                <?php if(in_array('prijsmin', $validation)): ?>
                <span class="error"><?php echo $error_messages['prijsmin']; ?></span>
                <?php endif; ?></td>
              <td>Prijs Max:</td>
              <td><input name="Prijs" type="text" id="Prijs" size="10" value="<?php echo isset($_POST['Prijs'])? $_POST['Prijs'] : ''; ?>" />
                <?php if(in_array('Prijs', $validation)): ?>
                <span class="error"><?php echo $error_messages['Prijs']; ?></span>
                <?php endif; ?></td>
            </tr>
          </table>
          <h1>Opmerkingen:</h1>
          <table width="690" border="0">
            <tr>
              <td height="25">Opmerkingen:</td>
              <td rowspan="2"><textarea name="Opmerkingen" cols="67" rows="10" id="Opmerkingen"><?php echo isset($_POST['Opmerkingen'])? $_POST['Opmerkingen'] : ''; ?></textarea>
                <?php if(in_array('Opmerkingen', $validation)): ?>
                <span class="error"><?php echo $error_messages['Opmerkingen']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td height="78"> </td>
            </tr>
          </table>
          <h1>Uw Gegevens:</h1>
          <table width="690" border="0">
            <tr>
              <td>Voornaam/Voorletters*:</td>
              <td><input type="text" name="Voornaam" id="Voornaam" class='invul' value="<?php echo isset($_POST['Voornaam'])? $_POST['Voornaam'] : ''; ?>" />
                <?php if(in_array('Voornaam', $validation)): ?>
                <span class="error"><?php echo $error_messages['Voornaam']; ?></span>
                <?php endif; ?></td>
              <td>Achternaam:* </td>
              <td><input type="text" name="Achternaam" id="Achternaam" class='invul' value="<?php echo isset($_POST['Achternaam'])? $_POST['Achternaam'] : ''; ?>" />
                <?php if(in_array('Achternaam', $validation)): ?>
                <span class="error"><?php echo $error_messages['Achternaam']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Straatnaam:</td>
              <td><input type="text" name="Straat" id="Straat" class='invul' value="<?php echo isset($_POST['Straat'])? $_POST['Straat'] : ''; ?>" />
                <?php if(in_array('Straat', $validation)): ?>
                <span class="error"><?php echo $error_messages['Straat']; ?></span>
                <?php endif; ?></td>
              <td>Huisnummer:</td>
              <td><input name="Huisnummer" type="text" id="Huisnummer" class='invul' size="10" value="<?php echo isset($_POST['Huisnummer'])? $_POST['Huisnummer'] : ''; ?>" />
                <?php if(in_array('Huisnummer', $validation)): ?>
                <span class="error"><?php echo $error_messages['Huisnummer']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Postcode:</td>
              <td><input type="text" name="Postcode" id="Postcode" class='invul' value="<?php echo isset($_POST['Postcode'])? $_POST['Postcode'] : ''; ?>" />
                <?php if(in_array('Postcode', $validation)): ?>
                <span class="error"><?php echo $error_messages['Postcode']; ?></span>
                <?php endif; ?></td>
              <td>Plaats:* </td>
              <td><input type="text" name="Plaats" id="Plaats" class='invul' value="<?php echo isset($_POST['Plaats'])? $_POST['Plaats'] : ''; ?>" />
                <?php if(in_array('Plaats', $validation)): ?>
                <span class="error"><?php echo $error_messages['Plaats']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Email Adres:*</td>
              <td colspan="3"><input type="text" name="email" id="email" class='invul' value="<?php echo isset($_POST['email'])? $_POST['email'] : ''; ?>" />
                <?php if(in_array('email', $validation)): ?>
                <span class="error"><?php echo $error_messages['email']; ?></span>
                <?php endif; ?></td>
            </tr>
            <tr>
              <td>Telefoonnummer:</td>
              <td colspan="3"><input name="Telefoon" type="text" id="Telefoon" class='invul' value="<?php echo isset($_POST['Telefoon'])? $_POST['Telefoon'] : ''; ?>" />
                <?php if(in_array('Telefoon', $validation)): ?>
                <span class="error"><?php echo $error_messages['Telefoon']; ?></span>
                <?php endif; ?></td>
            </tr>
          </table>
          <p>
            <label for="Straat"></label>
            <label for="Huisnummer"><br />
            </label>
            <input type="submit" name="Submit" id="Submit" value="Verstuur" />
                   <input type="reset" name="Reset" id="Reset" value="Wissen" />
          </p>
        </form>
        <?php else: ?>
        <div class="bedankt">
          <p>Bedankt voor uw aanvraag!</p>
          <p>Wij zullen uw aanvraag zo spoedig mogelijk behandelen. Meestal duurt dit 2 a 3 werkdagen.</p>
          <p><img src="icons/vinddit3.gif" width="220" height="80" alt="logo" /></p>
    </div>
        <p>
          <script type='text/javascript'>
    setTimeout("ourRedirect()", 5000)
    function ourRedirect() {
          </script>
          <?php endif; ?>
    </body>
    </html>
    and .JS
    window.addEvent('domready', function() {
              // Get the form
              var form = $('comments_form');
              //  if the form is found...
              if (form) {
                        // obtain error fields
                        var name = $('fullname');
                        var email = $('email');
                        var comment = $('comment');
                        // Set the default status
                        var isValid = true;
                        // input error function for the error messages
                        var addError = function (field, msg) {
                                  field.addClass('error'); // Add error class to field
                                  var error = field.getParent().getElement('span') || new Element('span', {'class': 'error'}); // add error message if not already placed
                                  error.set('text', msg); // error text msg
                                  error.inject(field, 'after'); // Insert error message after field
      // detach error function used to delete any error messages and remove the error class
                        var removeError = function (field) {
                                  field.removeClass('error'); // Remove error class from form fields
                                  var error = field.getParent().getElement('span'); // find any existing error messages
      // destroy if error message
                                  if (error) {
                                            error.destroy();
    //  insert submit form event
                        form.addEvent('submit', function (e) {
                                  // Test name length
                                  if (name.get('value').length === 0) {
                                            isValid = false;
                                            addError(name, nameError);
                                  } else {
                                            isValid = true;
                                            removeError(name);
    // check email length
                                  if (email.get('value').length === 0) {
                                            isValid = false;
                                            addError(email, emailError);
                                  // check email validity
                                  } else if (!email.get('value').test(/^([a-zA-Z0-9\+_\-]+)(\.[a-zA-Z0-9\+_\-]+)*@([a-zA-Z0-9\-]+\.)+ [a-zA-Z]{2,6}$/)) {
                                            isValid = false;
                                            addError(email, emailError);
                                  } else {
                                            isValid = true;
                                            removeError(email);
                    // check comment length
                                  if (comment.get('value').length === 0) {
                                            isValid = false;
                                            addError(comment, commentError);
                                  } else {
                                            isValid = true;
                                            removeError(comment);
                                  // If form invalid then stop event happening
                                  if (!isValid) {
                                            e.stop();

    lisavs12686 wrote:
    Whould it also be possible to send the sender the submited data (looking like the filled in form or so)?
    not really nessecary but whould be a nice  jextra
    You can but you would need to send it as an html email which is much more complicated.
    What you would do is build a page/table construction like below. You would need to use the php variables to echo out the information in the <td></td> cells (example below).
    $reply = $_POST['email'];
    $from = '[email protected]';
    $replysubject = "Auto-Reply: Website Name";
    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    $headers .= "From: $from\r\nReply-to: $reply";
    $replymessage = '
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Comments from Website</title>
    </head>
    <body>
    <table>
    <tr>
    <td bgcolor="#ffffff" style="font-family: verdana, arial, helvetica, sans-serif; font-size: 13px; padding: 10px 15px;">Name: </strong>'.$name.'
    </td>
    </tr>
    </table>
    </body>
    </html>';
    mail($reply, $replysubject, $replymessage, $headers);

  • How do i set an auto-reply at weekends only

    Hi,
    Ive been trying to work this out for days, but alas its beaten me ! I have a photography business with 'normal' business days staring at 9am Tuesday, ending 5pm Saturday. I therefore get a lot of enquiries on Sundays and Mondays (ie our 'weekend') and people don't often appreciate that its our day off. I'd like to set up an auto reply to e mails arriving in my inbox on Sundays and Mondays that say something like "I'm afraid that were closed on Sundays and Mondays, but we'll get back to you as soon as possible from Tuesday morning..." etc.
    My theory is that i could set up the autoreply on Automator and have Calendar 'switch it on and off " at the right times with a repeat function. I just dont know how to set about doing either of teh two steps (if indeed its possible)  and how to avoid e mail loops with people who also have autoreplies.
    Any thoughts or ideas would be very much appreciatded !!
    Thanks
    Halid
    http://www.rhubarbandcustard.com

    In searching for a solution, I found this: http://guides.macrumors.com/DrivesandFilesystems
    The info on Ext2 sounded promising, but comments at SourceForge indicated it did not work on Snow Leopard.
    Another option is one of the NTFS drivers for the Mac. You could then format it as NTFS and use it on both Mac and Windows. However, I don't know how the permissions issues will work out.
    I have run [NTFS-3G with MacFuse|http://www.tuxera.com/products/tuxera-ntfs-for-mac>, but not enough to say it is a viable solution for you. There used to be a free version, but it appears that it is no longer free.

  • There are no decent "Auto Reply SMS" apps out there. Besides for looking everyday in the store, is there a way to be notified when a new one crops up?

    I am new to the iPhone world and I have the 4S. I just switched over from the Android World. I know there are no "auto reply SMS" applications out there as I've checked everywhere (store and 'net) looking for one. In this world of trying to be safe while driving I cannot believe Apple as the leader in the industry hasn't developed something yet to deal with this. I entered a shortcut in my keyboard of "qq" to be a "I'm driving right now...." auto text but I cannot believe there is nothing out there right now. My question, besides if anyone knows of anything for a non-jailbroke phone, is how can I find something once it comes out without checking the store so often? I set up a Google alert but is that about all I can hope for??

    Hey Eric,
    Thanks for taking the time. Unfortunately no that does not solve it. Same as swipe it will get me there and it will show separate programs spaced out. The issue I am having is that all my open word files are bunched up in a pile on top of each other. I can see the edges of each one but I want them to be separated from each other enough that I can visually identify what file is what.
    Again, thanks for trying, it is appreciated.

  • How do you turn off auto-reply/notify in iCal?

    I'm sure there's a simple answer to this because I've searched high and low and I just can't disable the auto-notify/auto-reply feature in iCal when I delete a meeting notice someone else invited me to.
    What's the process for turning off this great feature (tongue in cheek)? I'm stumped.
    JimN

    A great solution here:
    http://www.nhoj.co.uk/icalreplychecker/
    Install and it works a treat. You can either disable the auto-reply altogether, or have ical ask you first.
    Hope that helps!

  • Message id in auto-reply

    Dear All,
    Can we remove the message-id from the auto-reply?
    in an auto-reply the message bounces back to the user including in the body part the following:
    Message-id: <[email protected]>
    Date: Thu, 31 Jul 2008 21:36:08 +0300
    From: [email protected]
    To: [email protected]
    Subject: sub
    Can we eliminate the Message-id?
    Messaging server 6.3
    Thanks,
    Scotty

    s@mira123 wrote:
    Can we remove the message-id from the auto-reply?Why would you want to do this?
    in an auto-reply the message bounces back to the user including in the body part the following:
    Message-id: <[email protected]>
    Date: Thu, 31 Jul 2008 21:36:08 +0300
    From: [email protected]
    To: [email protected]
    Subject: sub
    Can we eliminate the Message-id?As per the RFC 2822:
    <snip>
    3.6.4. Identification fields
    Though optional, every message SHOULD have a "Message-ID:" field.
    Furthermore, reply messages SHOULD have "In-Reply-To:" and
    "References:" fields as appropriate, as described below.
    </snip>
    So coming back to my earlier question, why would you want to eliminate the message-id: field?
    Regards,
    Shane.

  • How can I set up auto reply on Mozilla Thunderbird email?

    I can't seem to set up auto reply for my email. I need to do this because I will be away from my computer for over a month.

    Please look at what your email provider can offer.
    To do it using Thunderbird, you'll need to leave it running and connected while you're gone. Much better to use someone else's server.

  • HT4864 how do I turn off auto reply "I'm away from the office........."

    How do I turn off Auto reply "I'm away from the office..................         '

    Go to the mail page at http://icloud.com , click the cogwheel icon at top right, choose 'Preferences' and uncheck 'Forwarding'.

  • When send email require auto reply email received and opened

    I would like to know who to set up auto reply so I know that my clients they have recieved and opened email I have sent, if it is at possible with mail

    Apple Mail does not support read receipts. You will find that most people will not sign receipts - personally, I would not; if you require receipts, you could send it USPS return receipt requested.

  • Preventing Loops Mail Auto Reply

    Using the Apple Mail client I've been unable to figure out how to set up an auto reply rule that also prevents message loops. Can someone help with this, please?
    Thanks

    Well, obviously by not sending the auto-reply to one of the mail accounts you’ve set up in Mail or by specifying the appropriate conditions in the rule so that messages sent by yourself aren’t auto-replied to. More specific information is needed if you want a more specific answer...
    BTW, there is no way you could be using both Mac OS X 10.4 (Tiger) and Mail 1.3 simultaneously, as your profile indicates. Please, update your My Settings’s profile (and click Save). And if you’re really running Mac OS X 10.4 (Tiger), it would have been more appropriate to discuss this in the Mail & Address Book - Tiger forum. If the discussion applies to both Mail 1.x and Mail 2.x, it doesn’t really matter, but it’s difficult to know that in advance.

  • Cannot get new messages to download automatically and auto reply with out of office message have to manually check for new messages to get it to do this

    I am using Mozilla Thunderbird 31.3.0. I know how to create a message filter to set up an auto reply message, but cannot get Mozilla to automatically download new message and auto reply with the message in the filter unless I manually check for new messages, that is the only way to make it work. I have looked online and can't seem to find an answer to this particular issue. According to anything that I have found, I have the correct boxes checked in server settings: check for new messages at startup, automatically check for new messages, check for new messages every x amount of minutes. It's one thing to have to leave my computer on and Thunderbird open to make this work, but to have to manually check for new messages to get the auto response to work defeats the whole purpose of having an auto reply, as I use them for vacations, holidays, etc. I have wondered if there are any security settings that are causing this issue, but if so, I don't know what changes to make to them. Thanks in advance for any help. This is driving me crazy.

    I do find it a bit odd that Thunderbird is not getting mail on schedule, perhaps you have an add-on or anti virus program that prevents that.
    Holding shift while you start Thunderbird will start with add-ons disabled to check if mail come automatically.
    Airmail is right though, use Verizons auto responder. This link might help with that http://www.verizon.com/support/residential/internet/highspeed/account+tools/email+tools/questionsone/85621.htm#
    You say that not having such a setting in Thunderbird is something that needs fixing. This idea comes on the whole because Outlook has such an option. what most people are not aware of it only works with Exchange server. There is no "vacation response" in server mail specifications so every server implements it differently.
    Just as all cars have a radiator, you can not take any radiator and just put it in, they are subtly different even though they perform the same purpose. Same goes for the various vacation responders, They perform the same purpose but they differ between email server software brands.
    Thunderbird leaves it to the server end to expose the functionality, as they are really the only ones who understand what they did. Outlook exposes the option and mostly greys it out.

  • I turned on auto reply for mms now I can't find it please help methe Ask your question.

    need help to find my mms auto reply option I need to turn it off please help

    And no, since there is no "auto-reply MMS" to turn on, there's nothing to turn off. Do you mean "group MMS"?

  • How to stop sending Auto Reply when I am only BCC'ed

    Hi, I am working as software developer. I am in charge of the maintenance tasks of some of our company's sites. Most of those sites are sending email notifications once a transaction/ticket is created. I have put my email address to the BCC in those email
    notifications so whenever there is an issue i have a copy of the email notification. My question is i will be out of office for some days and i need to setup an auto reply, how can i setup a rule which the OoO is being sent only when I am in the "TO"
    and "CC"? I don't need to send an OoO when i am only BCC'ed. Thanks

    In this case i won't enable Automatic Replies (Out of Office) as it will respond even when our name is in To or Cc or Bcc
    I have created a rule where it will auto reply only when my name is in To or Cc
    In Outlook, click on Tools | Rules and Alerts
    Click New Rule
    Select the radio option, Start from a Blank Rule 
    Ensure the option, 'Check messages when they arrive' and click NEXT
    Select the option, 'where my name is in the To or Cc box'
    Click NEXT
    Select the option, 'have server reply using a specific message'
    In the bottom section of the Rule wizard, "Step 2: Edit the rule description", click on the link 'a specific message'
    An "untitled message' window opens, enter an appropriate subject, for example, Automatic Reply: Out Of Office, and enter appropriate text in the message body type
    Thanks for the email. I am currently Out of Office. I don’t have access to my emails.
    Click 'Save and Close' button
    Click 'NEXT'
    Click 'NEXT'
    Enter a name for the Rule in the field 'Step 1: Specify a name for this rule'
    Click 'Finish'
    Sender who sends email when you enable the rule will get a response like the below:
    Anil Kumar (MCITP)

Maybe you are looking for

  • Correct usage of select and option statements

    Is it ok if I say this in my option statement? <select name="XYZ" onchange="return valChange(this)"> <option <%=Selected%> value="100"><%=100%%></option>Or should the option tag just contani the variable names instead of values directly? like this <o

  • Materialized View Logs

    Hi, I need some help understanding MV Logs. The information I find on MV Logs, is very basic, ie. the general syntax of creating a log, the types of logs, how they are refreshed etc. Let me put my question this way. I want to create an MV, with a whe

  • Itunes is prompting me for an upgrade, I click it and it wants to open AOL, I don't want it to use that service provider, How do I change that?

    Hi I have an older version of iTunes and when I open it, the program prompts me to download iTunes 10. I click on the down load button on screen and it launches AOL. I don't have an AOL account. I did years ago. How do I change what service provider

  • Opening Date Picker in popup window

    Hi All, I'd like to be able to use a Date Picker in a custom popup window that I've developed. When I open the date picker however, because I'm already in a popup window the date picker fills the whole of the custom popup, rather than opening in its

  • Hprof with Weblogic 6.0?

    Hi, I am trying to use the -Xrunhprof option to generate a profile output for Weblogic 6.0, but I am getting the following error: HPROF ERROR: unable to map JVMPI obj ID to hprof obj ID in globalref_alloc Any ideas on a possible fix? Leon