Mail will randomly drop letters from messages

I have been noticing this phenomena for the last several months. Mail will will randomly drop letters & numbers from outgoing messages. They are not being dropped upon receipt of the message, it will drop letters & numbers from sent messages. I maintain several machines and I have noticed this from each of my users machines. They are all running some version of 10.4 (10.4 - 10.4.6). I did not notice this behavior under 10.3. It is a minor annoyance if it is personal mail that is being sent, but when it is professional correspondence it makes you look like an idiot. I have had it drop letters from a URL so that the recipient could not get to the page I sent.
I get no error messages or any pattern of behavior that I can identify. It does not happen to all messages only a few.
Anyone else notice this happening? If so, have you been able to correct it?
  Mac OS X (10.4.6)  

HI,
That is where the Pics are. Each App keeps a record of it's Recent Pic.
It pulls the one from the Contacts List (Address Book)
What it does not do is tell where you can turn the pic Off.
I checked Preferences and Menus and could not see a Setting.
10:45 PM      Wednesday; October 31, 2012
Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
  iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
 G4/1GhzDual MDD (Leopard 10.5.8)
 MacBookPro 2Gb (Snow Leopard 10.6.8)
 Mac OS X (10.6.8),
 Couple of iPhones and an iPad
"Limit the Logs to the Bits above Binary Images."  No, Seriously

Similar Messages

  • I have a first gen iPad, and it will randomly go home from the Internet when I don't press any button.  I have a wireless connection at home.

    I have a first gen iPad, and it will randomly go home from the Internet when I don't press any button.  I have a wireless connection at home.  Is this a known bug?  What can I do?

    You maybe running low on memory since you are using the original iPad with iOS 5.1.1 and the iPad is crashing. This may help and it certainly won't hurt.
    Quit all apps completely and reboot the iPad. Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    Do this before you launch Safari again. Go to Settings>Safari>Clear Cookies and Data. You don't have to clear the history.

  • MD randomly dropping partition from array

    Hello, folks! I am having some trouble with MD randomly removing a partition from one of my RAID-1 arrays. So far this has happened three times over the past couple weeks, but it only happens on boot.
    I have two 3TB WD SATA hard disks containing two RAID-1 volumes set up as follows:
    /dev/sda1 FAT32 EFI System Partition (250MiB)
    /dev/sdb1 Reserved Space (250MiB)
    /dev/sda2 Disk 0 of /dev/md0 with v0.90 metadata (250MiB)
    /dev/sdb2 Disk 1 of /dev/md0 with v0.90 metadata (250MiB)
    /dev/sda3 swap partition 0 encrypted with dm-crypt mapped to /dev/mapper/swapA (8GiB)
    /dev/sdb3 swap partition 1 encrypted with dm-crypt mapped to /dev/mapper/swapB (8GiB)
    /dev/sda4 Disk 0 of /dev/md1 with v1.2 metadata (2750GiB)
    /dev/sdb4 Disk 1 of /dev/md1 with v1.2 metadata (2750GiB)
    /dev/md1 is encrypted with LUKS and mapped to /dev/mapper/root
    /dev/mapper/root is the only volume in the LVM volume group rootvg
    the volume group rootvg currently has three logical volumes
    logical volume root is mapped to /dev/mapper/rootvg-root and is the file system root
    logical volume home is mapped to /dev/mapper/rootvg-home and is mounted /home
    logical volume var is mapped to /dev/mapper/rootvg-var and is mounted /var
    I also wrote this initcpio hook (I call it 'secdec'), with a bit of help from the Arch Wiki, which decrypts /dev/mapper/root, optionally with a openssl encrypted key file on a USB memory stick:
    run_hook ()
    local keyCopyDec keyCopyEnc keyMountPoint maxTries retryDelay \
    shutdownOnFail
    # customizable ############################################################
    keyCopyDec="/crypto_keyfile.bin" # temp storage for decrypted key data
    keyCopyEnc="/crypto_keyfile.enc" # temp storage for encrypted key data
    keyMountPoint="/ckey" # key storage device mount point
    maxTries=3 # max number of decrypt attempts
    retryDelay=2 # delay in seconds between retries
    shutdownOnFail=0 # shut down computer if decrypt fails
    #+0=yes, 1=no
    # /customizable ###########################################################
    local abortMsg passPromptKey passPromptVol passWrong secdecFormat \
    shutdownMsg
    local E_NOFILE
    local KEY NOKEY SSLKEY
    local CSQUIET OIFS
    local cryptDev cryptName keyDev keyFile keyFs keyType pass passPrompt \
    success tries
    abortMsg="Aborting..."
    passPromptKey="Key passphrase: "
    passPromptVol="LUKS passphrase: "
    passWrong="Invalid passphrase."
    secdecFormat="secdec=cryptdev:dmname:keydev:keyfs:keyfile"
    shutdownMsg="Shutting down computer. You may try again later."
    E_NOFILE=66
    KEY=1
    NOKEY=0
    SSLKEY=2
    OIFS=$IFS
    [ "$(echo "${quiet}" | awk '{print tolower($0)}')" == "y" ] && \
    CSQUIET=">/dev/null 2>&1"
    askForBooleanInput ()
    # Ask the user for boolean input.
    # $1: The question to pose.
    # $2: A string containing single characters, separated by spaces, which are
    #+keys pressed that would return boolean true (0).
    # $3: A string containing single characters, separated by spaces, which are
    #+keys pressed that would return a boolean false (1).
    # Returns 0 if the user presses a key that generates a character found in
    #+$2.
    # Returns 1 if the user presses a key that generates a character found in
    #+$3.
    # Returns 2 if an incorrect number of parameters was provided.
    local keyin
    [ ${#} -ne 3 ] && return 2
    echo -n "$1"
    while true; do
    read -sn1 keyin
    case "$keyin" in
    [$2]) echo "$keyin"; keyin=0; break;;
    [$3]) echo "$keyin"; keyin=1; break;;
    *) echo -n -e "\a";;
    esac
    done
    return $keyin
    askForPass ()
    # Ask the user to enter a pass{word|phrase}.
    # $1: The prompt to display.
    # $2: The name of the variable to assign the input pass{word|phrase} to.
    #+For example, to assign to $pass, $2 should be "pass".
    # Returns 0 on success or 1 if there is a parameter error.
    [ ${#} -ne 2 ] || [ -z "${1}" ] || [ -z "${2}" ] && return 1
    read -rsp "$1" "$2"
    echo
    isSsl ()
    # Examine a file for indications that it is SSL encrypted.
    # $1: Path to the key file to examine.
    # Returns 0 if the file appears to be SSL encrypted, 1 if the file does not
    #+appear to be SSL encrypted and $E_NOFILE if $1 is not a regular file.
    [ ! -f "${1}" ] && return $E_NOFILE
    [ "$(dd if="${1}" bs=1 count=8 2>/dev/null | \
    awk '{print tolower($0)}')" == "salted__" ]
    getKey ()
    # Attempt to find and copy a key from $keyDev to $keyCopyEnc.
    # $1: Path to the device containing the key data.
    # $2: Name of file system containing the key file.
    # $3: Path to the key file, relative to $4.
    # $4: Mount point of partition containing key file.
    # $5: Path to temporary copy of key file.
    # $6: Boolean value indicating whether to allow user the opportunity to
    #+switch key devices before attempting to find a key. This is useful if
    #+a key has already been tried and failed. The user could switch memory
    #+devices before trying again. 0=true, 1=false; default is false.
    # Returns one of $KEY, $NOKEY or $SSLKEY depending on what was found.
    local result wait
    if [ -z "${6}" ] || [ ${6} -eq 1 ]; then wait=1; else wait=0; fi
    mkdir -p "$4" >/dev/null 2>&1
    while true; do
    if [ ${wait} -eq 0 ]; then
    askForBooleanInput \
    "(S)earch for key or (R)evert to LUKS passphrase? " "s S" "r R"
    if [ ${?} -eq 0 ]; then result=$KEY; else result=$NOKEY; fi
    wait=1
    else
    result=$KEY
    fi
    if [ ${result} -eq ${KEY} ]; then
    if poll_device "${1}" ${rootdelay}; then
    mount -r -t "$2" "$1" "$4" >/dev/null 2>&1
    dd if="$4/$3" of="$5" >/dev/null 2>&1
    umount "$4" >/dev/null 2>&1
    if [ -f "${5}" ]; then
    isSsl "${5}" && result=$SSLKEY
    else
    err "Key $3 not found."
    unset result
    wait=0
    fi
    else
    err "Key device $1 not found."
    unset result
    wait=0
    fi
    fi
    [ -n "${result}" ] && break
    done
    return $result
    # If the secdec kernel parameter was not specified, inform the user, but
    #+allow init to continue in case another hook will work.
    if [ -z "${secdec}" ]; then
    echo "Missing parameter: $secdecFormat"
    return 0
    fi
    # Make sure required kernel modules are available.
    if ! /sbin/modprobe -a -q dm-crypt >/dev/null 2>&1 || \
    [ ! -e "/sys/class/misc/device-mapper" ]; then
    err "Required kernel modules not available."
    err "$abortMsg"
    exit 1
    fi
    if [ ! -e "/dev/mapper/control" ]; then
    mkdir -p "/dev/mapper" >/dev/null 2>&1
    mknod "/dev/mapper/control" c \
    $(cat /sys/class/misc/device-mapper/dev | sed 's|:| |') >/dev/null 2>&1
    fi
    # Parse the secdec kernel parameter, check it's format, make sure $cryptDev
    #+is available, and that it contains a LUKS volume.
    IFS=:
    read cryptDev cryptName keyDev keyFs keyFile <<EOF
    $secdec
    EOF
    IFS=$OIFS
    if [ $(echo "${secdec}" | awk -F: '{print NF}') -ne 5 ] || \
    [ -z "${cryptDev}" ] || [ -z "${cryptName}" ]; then
    err "Verify parameter format: $secdecFormat"
    err "$abortMsg"
    exit 1
    fi
    if ! poll_device "${cryptDev}" ${rootdelay}; then
    err "Device $cryptDev not available."
    err "$abortMsg"
    exit 1
    fi
    # Inform the user that $cryptDev doesn't contain a LUKS volume, but allow
    #+init to continue, in case another hook can handle this.
    if ! /sbin/cryptsetup isLuks "${cryptDev}" >/dev/null 2>&1; then
    echo "Device $cryptDev does not contain a LUKS volume."
    return 0
    fi
    # Attempt to open the LUKS volume.
    tries=0
    unset keyType
    while true; do
    success=1
    # Attempt to copy a decryption key.
    if [ -z ${keyType} ]; then
    getKey "$keyDev" "$keyFs" "$keyFile" "$keyMountPoint" \
    "$keyCopyEnc" 1
    keyType=$?
    elif [ ${keyType} -eq ${KEY} ]; then
    getKey "$keyDev" "$keyFs" "$keyFile" "$keyMountPoint" \
    "$keyCopyEnc" 0
    keyType=$?
    elif [ ${keyType} -eq ${SSLKEY} ]; then
    if askForBooleanInput "(U)se a different key or (T)ry again? " \
    "u U" "t T"; then
    getKey "$keyDev" "$keyFs" "$keyFile" "$keyMountPoint" \
    "$keyCopyEnc" 0
    keyType=$?
    fi
    fi
    # Open the LUKS volume.
    if [ ${keyType} -eq ${NOKEY} ]; then
    askForPass "$passPromptVol" "pass"
    /sbin/cryptsetup luksOpen "$cryptDev" "$cryptName" "$CSQUIET" <<EOF
    $pass
    EOF
    success=$?
    [ ${success} -ne 0 ] && err "$passWrong"
    else
    if [ ${keyType} -eq ${SSLKEY} ]; then
    askForPass "$passPromptKey" "pass"
    /sbin/openssl aes256 -pass pass:"$pass" -d -in "$keyCopyEnc" \
    -out "$keyCopyDec" >/dev/null 2>&1
    if [ ${?} -ne 0 ]; then
    rm -f "$keyCopyDec" >/dev/null 2>&1
    err "$passWrong"
    fi
    else
    mv "$keyCopyEnc" "$keyCopyDec" >/dev/null 2>&1
    fi
    if [ -f "${keyCopyDec}" ]; then
    /sbin/cryptsetup --key-file "$keyCopyDec" \
    luksOpen "$cryptDev" "$cryptName" "$CSQUIET"
    success=$?
    fi
    fi
    [ ${success} -ne 0 ] && err "Failed to open LUKS volume."
    tries=$(( $tries + 1 ))
    [ ${tries} -ge ${maxTries} ] || [ ${success} -eq 0 ] && break
    sleep "$retryDelay"
    done
    if [ ${success} -eq 0 ]; then
    if [ ! -e "/dev/mapper/${cryptName}" ]; then
    err "LUKS volume was opened, but failed to map to $cryptName."
    err "$abortMsg"
    exit 1
    fi
    echo "LUKS volume opened."
    else
    if [ ${shutdownOnFail} -eq 0 ]; then
    echo "shutdownMsg"
    poweroff -f
    fi
    exit 1
    fi
    The failing array is /dev/md1 and mdadm is reporting the following:
    mdadm --detail /dev/md1
    /dev/md1:
    Version : 1.2
    Creation Time : Wed May 30 18:50:05 2012
    Raid Level : raid1
    Array Size : 2921467179 (2786.13 GiB 2991.58 GB)
    Used Dev Size : 2921467179 (2786.13 GiB 2991.58 GB)
    Raid Devices : 2
    Total Devices : 1
    Persistence : Superblock is persistent
    Update Time : Wed Sep 12 03:34:52 2012
    State : clean, degraded
    Active Devices : 1
    Working Devices : 1
    Failed Devices : 0
    Spare Devices : 0
    Name : archiso:1
    UUID : 8ad37e84:f7261906:da3d317e:24080362
    Events : 44661
    Number Major Minor RaidDevice State
    0 8 4 0 active sync /dev/sda4
    1 0 0 1 removed
    mdadm --examine /dev/sda4
    /dev/sda4:
    Magic : a92b4efc
    Version : 1.2
    Feature Map : 0x0
    Array UUID : 8ad37e84:f7261906:da3d317e:24080362
    Name : archiso:1
    Creation Time : Wed May 30 18:50:05 2012
    Raid Level : raid1
    Raid Devices : 2
    Avail Dev Size : 5842934631 (2786.13 GiB 2991.58 GB)
    Array Size : 2921467179 (2786.13 GiB 2991.58 GB)
    Used Dev Size : 5842934358 (2786.13 GiB 2991.58 GB)
    Data Offset : 2048 sectors
    Super Offset : 8 sectors
    State : clean
    Device UUID : abba1dc3:3fadf7a7:be452bb5:b8bbe97b
    Update Time : Wed Sep 12 03:37:48 2012
    Checksum : aad3e44b - correct
    Events : 44729
    Device Role : Active device 0
    Array State : A. ('A' == active, '.' == missing)
    mdadm --examine /dev/sdb4/dev/sdb4:
    Magic : a92b4efc
    Version : 1.2
    Feature Map : 0x0
    Array UUID : 8ad37e84:f7261906:da3d317e:24080362
    Name : archiso:1
    Creation Time : Wed May 30 18:50:05 2012
    Raid Level : raid1
    Raid Devices : 2
    Avail Dev Size : 5842934631 (2786.13 GiB 2991.58 GB)
    Array Size : 2921467179 (2786.13 GiB 2991.58 GB)
    Used Dev Size : 5842934358 (2786.13 GiB 2991.58 GB)
    Data Offset : 2048 sectors
    Super Offset : 8 sectors
    State : clean
    Device UUID : 09a09f49:b329feaa:3341111b:47b484fe
    Update Time : Wed Sep 12 01:50:34 2012
    Checksum : 1cdc19c0 - correct
    Events : 42869
    Device Role : Active device 1
    Array State : AA ('A' == active, '.' == missing)
    cat /proc/mdstat
    Personalities : [raid1]
    md0 : active raid1 sda2[0] sdb2[1]
    204736 blocks [2/2] [UU]
    md1 : active raid1 sda4[0]
    2921467179 blocks super 1.2 [2/1] [U_]
    unused devices: <none>
    This is md log info of the first reboot after my first recovery:
    Sep 9 20:18:03 localhost kernel: [ 1.784225] md: raid1 personality registered for level 1
    Sep 9 20:18:03 localhost kernel: [ 2.552971] md: md1 stopped.
    Sep 9 20:18:03 localhost kernel: [ 2.553418] md: bind<sdb4>
    Sep 9 20:18:03 localhost kernel: [ 2.553574] md: bind<sda4>
    Sep 9 20:18:03 localhost kernel: [ 2.554080] md/raid1:md1: active with 2 out of 2 mirrors
    Sep 9 20:18:03 localhost kernel: [ 2.554093] md1: detected capacity change from 0 to 2991582391296
    Sep 9 20:18:03 localhost kernel: [ 2.566266] md1: unknown partition table
    Sep 9 20:18:03 localhost kernel: [ 2.617922] md: md0 stopped.
    Sep 9 20:18:03 localhost kernel: [ 2.618382] md: bind<sdb2>
    Sep 9 20:18:03 localhost kernel: [ 2.618525] md: bind<sda2>
    Sep 9 20:18:03 localhost kernel: [ 2.619175] md/raid1:md0: active with 2 out of 2 mirrors
    Sep 9 20:18:03 localhost kernel: [ 2.619203] md0: detected capacity change from 0 to 209649664
    Sep 9 20:18:03 localhost kernel: [ 10.933334] md0: unknown partition table
    And this is the next time I rebooted:
    Sep 10 19:59:07 localhost kernel: [ 1.780481] md: raid1 personality registered for level 1
    Sep 10 19:59:07 localhost kernel: [ 2.806037] md: md1 stopped.
    Sep 10 19:59:07 localhost kernel: [ 2.806345] md: bind<sda4>
    Sep 10 19:59:07 localhost kernel: [ 2.806888] md/raid1:md1: active with 1 out of 2 mirrors
    Sep 10 19:59:07 localhost kernel: [ 2.806898] md1: detected capacity change from 0 to 2991582391296
    Sep 10 19:59:07 localhost kernel: [ 2.820308] md1: unknown partition table
    Sep 10 19:59:07 localhost kernel: [ 2.956599] md: md0 stopped.
    Sep 10 19:59:07 localhost kernel: [ 2.957149] md: bind<sdb2>
    Sep 10 19:59:07 localhost kernel: [ 2.957269] md: bind<sda2>
    Sep 10 19:59:07 localhost kernel: [ 2.958086] md/raid1:md0: active with 2 out of 2 mirrors
    Sep 10 19:59:07 localhost kernel: [ 2.958100] md0: detected capacity change from 0 to 209649664
    Sep 10 19:59:07 localhost kernel: [ 11.742281] md0: unknown partition table
    In between these two boots there are no reports of md failures. For some reason, its just dropping the second partition.
    I just did a restoration earlier today and on the very next boot, md refuses to use /dev/sdb4. Once I booted, I checked update times (not the ones listed) and /dev/sda4 and /dev/sdb4 were about 4 minutes apart. Since it takes only about a minute for Arch to reboot, including me typing my openssl key password, Arch was running for about 3 minutes without updating. I'm assuming this is of some significance since /dev/md0 reports perfect synchronization.
    All of this has been working very well for me for about 6 months now. Both hard drives, which I bought at the same time, are about 9 months old. I checked both drives using smartctl, and both report SMART enabled and passed. SMART attribute data doesn't make a lot of sense to me and I haven't looked up the format, but the reallocation event value is the same as the day I bought the drives, so I'm kind of assuming things are ok there, or at least bad sectors aren't being created.
    I hope I've provided all required details here. Any help would be appreciated.
    Last edited by cng1024 (2012-09-13 00:02:43)

    It would seem that nobody has any ideas about why this may be happening. I've done a complete diagnostic of both hard disks and both passed. I then downloaded the latest iso, formatted and reinstalled, but that failed after one reboot.
    I have a theory as to why it may be happening, but I haven't tested it yet. Perhaps someone can tell me if I may be on the right track here. I got to wondering what happens during shutdown. The root fs remounts ro during shutdown, but it does remain mounted which means everything under that, my logical volumes, LUKS and RAID are all still open when the system halts. I saved my original configs before I reformatted and it turns out I forgot to add the shutdown hook to the initcpio image which means my RAID wasn't being stopped before halt.
    I'm going to try a few experiments to see if adding the shutdown hook makes a difference. Hopefully I'm right, and I'll update either way, but I'd still appreciate it if someone with a bit more experience could weigh in on this.

  • Mail will not quit after sending message with attachment

    B&W G3-450
    OSX 10.2.8
    640 MB RAM
    I recently switched to using an email account through AOL Instant Messenger (AIM.com). The only way to connect to their service is via IMAP. I have all the correct settings, I can send and receive email no problem.
    However, when I attempt to send a message that contains an attachment (.zip, jpeg, anything) the email will send just find. The problem is when I try to quit mail it wont' respond. I can continue to send or receive after sending the message but it will not quit. Trying to log out does not work either as it reports a problem with Mail that prevents closing the session. The only thing I can do is force quit mail.
    The next time I use mail it works fine and there are no problems. The only issue seems to be this hanging problem. I've never experienced this problem using POP3 accounts.
    Any suggestions?
    B&W G3-450   Mac OS X (10.2.x)  

    Does anyone have a suggestion here?

  • Mail will no longer search "Entire Message". That option is grayed out. Why?

    How do I get Mail to search "Entire Message". That option suddenly is grayed out.

    A SMTP is a server for sending messages, and not as an Incoming server.  Do you mean an IMAP server?
    I did not mean it was for a single message, but the fact that you had a single message in local storage turned the option on, but it could only have search the messages that were in local storage.
    Check again in Mail Preferences/Accounts/Advanced what is selected regarding Keep copies of Messages?
    Ernie

  • E-mails will not send. Error Message is "server does not support SSL messages." Is this a server or internet program problem?

    The last 3 times - March 9 and 10 - I attempted to send an e-mail, the above quote was in the error message box as the reason the e-mails could not be sent.

    try the 2.0.1 update, I just did and it seemed to help with that issue and a few others with email, wi-fi, and a few other areas have improved too...

  • Mail will not let me delete messages

    I just transferred my Mail program, and all its files, from one Mac to another. While Mail has no problem picking up mail from the server, and I can read the mail. However, I cannot delete, move or in any way affect the mail. When I try to move mail from one box to another, it says the "destination mailbox is read-only".
    I've obviously done something when I transferred the Mail program over. How do I fix this?

    Hello hawghead,
    Thanks for using Apple Support Communities.
    I found another user that posted the same question previously, and marked a reply as to solving the issue:
    Mail: Unable to delete an email: Apple Support Communities
    https://discussions.apple.com/thread/1469975
    Take care,
    Alex H.

  • BT HomeHub2 Randomly Dropping Devices

    So, we've been using BT broadband for a good few years now, and an interesting problem keeps cropping up. Occasionally the router will refuse to allow a particular device to connect to it via wireless for a period of time (somewhere between a few minutes and a few hours). After this time, the router continues to work as though nothing at all had happened, with nothing out of the ordinary appearing in the event log, and the other devices don't show any connection problems whilst this is happening. Using the automatic setup CD just makes things worse, since when it fails to connect to the router we specify, it instead connects to the nearest BTOpenZone hotspot, then claims to be working when it is still impossible to connect to our own router.
    The router still shows up in the wireless network list, and attempting to connect to it doesn't return any error messages, the process just halts after about a minute of "waiting for the wireless network". The first time we had this problem, we rang up the BT helpline who gave us some slightly nonsensical answer about the HomeHub only being able to accept connections from a maximum of three devices at any one time, so rather than asking them again to get exactly the same fairly useless answer, I'm putting the question here. Why does the HomeHub2 randomly drop people from the network, and how do we stop it?

    Well, I assumed that the disk would just attempt to connect me to the wireless and nothing more, and when you're trying to fix a problem that nobody else believes exists, you'll try pretty much anything.
    The issue, though, is not with connecting from the hub to the internet. The hub never has any major problems with that (other than occasionally deciding that 40% packet loss is the way to go). The issue is that it will drop one of our computers from its network at random, but do nothing to any of the others, and then refuse to allow that one computer to reconnect to it.

  • Firefox 3.5 and up randomly drop connections

    Greetings! The problem I'm having is: Every time I've tried to install and use Firefox 3.5 and up, as I'm browsing the web and I go to, say, click on a link, Firefox will randomly "drop" the connection. It'll pause for 10-15 seconds, then pop up a generic "cannot find server" message. I then go to reload the page, and for another 10-15 seconds it won't even attempt a connection -- it'll just instant-reload with the same generic "cannot find server" message. After that, it will mysteriously be able to connect just fine... for about 2-5 minutes. The problem repeats... over and over...
    I should mention that I constantly have a "ping www.rr.com" window open in the background, and even when Firefox is "unable to connect", the ping window shows my connection is just fine. All of my other programs are able to connect just fine as well -- only Firefox 3.5+ or programs based off of Firefox 3.5+ (SeaMonkey 2.x) have this problem.
    Thinking it might be an addon problem, I've completely uninstalled (even using Revo Uninstaller) and reinstalled Firefox 3.5+, and even with absolutely no extensions installed, it still randomly drops connections.
    This problem also happens on my netbook PC, again with a fresh Firefox install (even on a fresh Windows format + install) and a solid ISP connection.
    I can confirm encountering this problem with Firefox 3.5.4, 3.5.5, 3.6.6, and even with SeaMonkey 2.0.3 and 2.0.5. On the other hand, Firefox versions 2.0.0.20 and SeaMonkey 1.1.18 are NOT affected by this problem.
    I hope this problem can be resolved soon, since sites like Youtube are starting to really dislike Firefox 2.0, and I'd like to use up-to-date browser extensions. :(
    == This happened ==
    Every time Firefox opened
    == Every time I've tried to use Firefox 3.5 and above

    Using
    *Comcast Broadband*textMotorola SB5101*textWindows 7 Home Premium*textCisco Linksys *textFireFox 3.6.7*textNorton Security Suite
    and it happens to this home too.

  • Mail Doesn't Work (Wrong version message) after updating 10.5.3

    I just upgraded using software updater over the weekend and now Mail will not start. Error message is:
    "You cannot use this version of the application Mail with this version of Mac OSX.
    Ideas?

    nstalling Optional Installs (via the Mac OS X Install DVD)
    1. Locate the Mac OS X Install DVD that came with your computer.
    2. Insert the Mac OS X Install disc into the optical drive.
    3. A Mac OS X Install Disk window appears. Double-click the Optional installs folder.
    4. Double-click on the Optional Installs installer.
    If that doesn't work, Get Pacifist...
    http://www.charlessoft.com/
    then extract/install Mail from your 10.5.x Install Disk.
    Message was edited by: BDAqua

  • Random Dropping and POOR CUSTOMER SUPPORT

    So I've had this issue for about 2 years. Yeah, 2 years.
    We've had countless calls with BT, countless emails etc. Nothing is working! 
    Whenever I call the BT centres now, I refuse to do these pointless tests, as they provide no accurate result, I also cannot explain what the situation is fully to them, because they don't understand me. 
    The internet will randomly drop once or so every five minutes, sometimes it'll be a full internet drop, or sometimes it'll be heavy packet loss. It happens on all devices, wired and wireless, desktop pc's to phones. 
    We've been given discounts on our packages, however they are useless discounts as we are still having major troubles connecting to the internet.
    We've recently noticed a new occurrence, whenever our internet drops, we also lose connection to the hub settings manager. Bare in mind this happens on all devices at the same time. Lights on the hub remain blue, and the speeds on our hub settings page will also remain at 448kbps up and 7mbps down.
    I'm really losing the remaining patience I have fast, the call centres don't have a clue what they're doing, today I was talking to the floor manager who even booted me offline to do a test without my approval, which I find unacceptable.
    I also find it unacceptable that there is no English call centre, as, not being rude, but it's really hard to understand the foreign call centres, and they find it hard to understand you as well.
    So, does anyone here have any resolutions to the internet drops, as we're out of ideas. 
    (bt claim that the line from the exchange to my hub is *totally* fine)

    welcome to the BT community forum where customers help customers and only BT employees are the forum mods
    I understand your reluctance to do the test requested by CS but in order for the forum members to help please can you post the adsl stats from your router you may need to 'show detail' to get all stats (if hub enter 192.168.1.254 in your browser and navigate to adsl or if HH4/5 then go to troubleshooting then logs and you are looking for 2 line together when hub last connected to internet and they will show your connection speed and noise margin or if netgear enter 192.168.0.1). Then run  btspeedtester  (MAC users may have problems). when first test completes then run diagnostic test and post the results ( do not reset the router).
    which hub do you have?
    are you connected directly via a filter to the NTE5 master or test socket or to somewhere else? Is the master the only phone socket in your home?
    Have you tried the quiet line test? - dial 17070 option 2 - should hear nothing - best done with a corded phone. if cordless phone you may hear a 'dull hum' which is normal
    check here to see if any exchnage problems  http://usertools.plus.net/exchanges/mso.php
    http://usertools.plus.net/exchanges/?
    http://btbusiness.custhelp.com/app/service_status
    http://bt.custhelp.com/app/answers/detail/a_id/15036
    http://community.plus.net/exchange-information/
    Someone may then be able to offer help/assistance/suggestions to your problem
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • MacBook Pro randomly drops Ethernet connection.

    I use my new MacBook Pro both connected wirelessly and via Ethernet to my home network. My network is connected to ADSL via a firewall/gateway router. I have a Powerbook G4 and a WinXP machine running on this same network (wirelessly and wired) without any issues.
    For some reason my new MacBook Pro, however, will randomly drop off the network and will often require a reboot to reacquire a DHCP address. At first, I noticed this when transferring large amounts of data to the laptop across the network (retiring my XP machine). I thought I may have a bad cable or bad port on my hub so I switched both. After a couple more transfers, however, the problem seems to have returned.
    Mid transfer, the MBP will lose connectivity to the DHCP server and assign itself a 169 address. I am unable to reacquire a 192 address from DHCP and have to restart the MBP to get back on the network.
    Needless to say, this is very annoying and not at all what I expected with my new MBP.
    Any thoughts appreciated as I am at whits end on this one.

    I am having a similar issue. I have not yet tested with standard Ethernet, only Wireless using WPA2.
    I have 3 Macs (iBook G4, PowerMac G5, and MBP (Core 2 Duo) all connecting a private wireless network consisting of a Airport Extreme and an Airport Express using WDS. All computers and basestations are running the latest versions of their respective software (10.4.8, V5.7, V6.3)
    ONLY the MBP has the following problems: dropping the connection, failing to reconnect after sleep, and failing to obtain an IP address via DHCP after connecting.
    The signal power reported by both the menu-bar widget and the Internet Connect application varries continually on the MBP, even though it is sitting 2 feet from the Airport Extreme basestation. Sometimes full strength, sometimes only two bars.
    I have removed all preferred networks from the Network system preferences and re-added only my network. I have also removed the passwords for the routers from my keychain.
    The MBP will often-times simply drop it's connection. When it does that, it will not automatically reconnect to my network. If I put the MBP to sleep it often-times will not reconnect when it awakes either. Sometimes it does, but I cannot decern a pattern. If it does automatically reconnect it will usually not obtain an IP address from the basestation.
    Simply toggeling the MBP's Airport off and then on will almost always get it to find my network and automatically connect. Even if it does connect to the network, it doesn't always obtain an IP address via DHCP. Again, if I simply toggel the MBP's Airport off and on then it will usually connect and obtain an real IP address.
    All of these things happen within two feet of the basestation, as well as more than 20 feet away. Both other Macs continue working just fine even while the MBP is having problems.
    This is not an issue with the basestations or my configuration. It must be a problem with the drivers for the Airport card in the MBP.

  • Images from my i-pad, stored in i-photo, will randomly refuse a drag and drop attempt. I can move the image to the desktop, and from there to the document (mail etc.) and it will work (display image). As I mentioned, these events are random. ....Help !

    When executing a drag and drop from i-photo to a document, occasional, random, images will refuse  drop onto the document. The work around is to drag the offending image to the desk top, and from there to the document.
    Question:  What is causing these random "rebel" images to misbehave ?

    It is better to use export or to use the media browser form the target program
    See this user tip for details on accessing your photos
    LN

  • My phone will randomly disconnect from the wifi and when I retype the password it says it is wrong. It will eventually work but I have to wait for a message to pop up on my screen to allow me to retype the wifi password.

    When I first got my phone it worked perfectly fine with the wifi. Although later on I began to have problems connecting it. It will randomly disconnect from the wifi and when I try to retype the password it tells me it is wrong, although it is right. It will eventually work but in its own time, a message will pop up and allow me to type in the password and it will work. But sometimes it takes an hour or more and sometime it takes 10 minutes. I've seen where other people have had this problem but I don't know how to fix it. I'm not sure if it's an issue with my phone or if it's with my wifi. Does anyone know how to fix this?

    Does this happen with all Wi-Fi hotspots?  A specific one?
    Have you tried forgetting the Wi-Fi connection and then reconnecting to it?
    What about power cycling the Wi-Fi router?

  • I am changing ISPs and will be dropping two email addresses I use as AppleID's.  Can I keep them as AppleID's and use a rescue e-mail address from a new ISP?  What are the downsides if I have an iCloud address as an alias under one of those addresses?

    I am about to change internet service providers and will be dropping two e-mail addresses that I use as Apple ID’s.  One is used solely for iTunes and the other is used for iCloud, mail, calendars, etc.  The second has two iCloud email address as aliases.  I will be going to a new ISP and will establish an e-mail address from that ISP as a backup in case the iCloud addresses are not available. 
      It has been suggested to me that I should continue to use the e-mail addresses from the old ISP as my Apple ID’s.  And that I use the e-mail address from the new ISP as a rescue e-mail address for those Apple ID’s to get any communications relating to the ID’s. That seems like a simple and straight-forward way of handling the change and would minimize the chance of complications from changing the Apple ID’s.  But, are there any downsides to handling the change in this way?  If so, what are they?

    You can continue to use them as Apple ID's, change the rescue address (as you know)
    You can use your iCloud address, but it won't be an alias, it's a full email address.

Maybe you are looking for

  • LDAP + DNS + noob=Massive Pain (LONG)

    I am running 10.4.11 as a home server/gateway. There are two NIC's. The first is connected directly to the modem via ethernet, the second goes to a switch for the LAN. When I set up this server I started small with AFP,DHCP, DNS, Firewall, and Web. I

  • IOS (iPad App)...possible to detect mute switch? volume off?

    Is it possible to detect if the user has turned mute switch on?  Is it possible to detect the system volume to determine if it is all the way down? We would like to display a dialog box telling the user they need to turn up the volume on iPad or turn

  • MDO Update causes error message

    Hello, I am currently trying to update to an MDO that first gets data inserted to and then gets data updated. The insert works fine, but for the update I get the following: com.sap.xmii.Illuminator.logging.LHException: java.lang.NullPointerException:

  • WLC 5508 WLAN Changes

    Hello all, I have a pair of 5508s running in HA with a number of WLANs active.  Whenever I make a change to a single WLAN, it seemingly causes ALL the WLANs to reset, resulting in a downtime of roughly 10-15 seconds.  I first noticed this when I was

  • Restart OC4J as part of Auto deploy

    I was trying to implement AutoDeploy of EAR file on daily basis, the plan is to use ANT script to generate the EAR file, Deploy the EAR file and restart the OC4J to reflect the new EAR file. I was trying to use ANT task shutdownServer and restartServ