Mac Mail problems...never seen before???

Mac Mail hangs, won't download all emails, and then won't fully quit...?~!
I just reinstalled the Bundled Software, but now I'll bet Mail isn't in that bunch, but comes with the System software. Oh, well...
Any help...from any quarter?
TIA
Lanny

Did you just install the Software Update for Safari 4.0.1? This happened to me, same symptoms. Suddenly any time I tried to access my email Mail died a lingering death.
Try launching Safari, opening its Preferences, selecting Security, and unchecking "Warn when visiting a fraudulent website".
A serious bug and a serious and disappointing gap in QA before releasing such a vital component.

Similar Messages

  • Problem never seen before for Ora8.1.7 in Mandrake8

    This really look strange to me and if anyone can answer this it would be really great!
    This morning I tried to install 8.1.7 on my laptop and I got everything to work. However doing the same procedures for my PC and the RunInstaller will start but all the buttons at the lower bar (eg EXIT, HELP, INSTALLED, NEXT) all won't resoponse at all. While the buttons in the middle like DEINSTALL and ABOUT ..works?! Isn't this strange or what?
    I updated all the glibc stuffs to 2.2.2-5 plus those ldconfig and nscd files. I downloaded the 1.1.8v3 from blackdown and managed to get 8.1.7 to work under RH6.2 last night on the same machine with all same hardwares ... except that RH6.2 was from a IDE HD while Mandrake8 is on a SCSII. Do I have to do something extra for SCSII in this case? I simply unplug my other drives so there shouldn't be any interference from the IDE drives. Btw, all the software source are the same.... Has anyone seen anything like this or have any suggestion what is causing this?
    Please help... I am going crazy!!!
    Mimic

    Nothing strange, problem is not in SCSI or IDE, but in GLIBC as I think. Without GLIBC patches from Mandrake I'v manage to install Oracle successfully, but nothing worked (svrmgrl caused core dumps, hangs, etc.) Having patches installed, I see the same things with Oracle Installer. JVM from www.blackdown.org is installed in /usr/local.
    I think, one should ask Mandrake Expert :-))
    If anyone solved this, please let me know.

  • I cant update my mac twitter app because it says i bought it with an apple id that i have never seen before. How do i update it?

    I cant update my mac twitter app because it says i bought it with an apple id that i have never seen before. How do i update it?

    Hi,
    Your best bet at this point then is to contact iTunes Support and get them to straighten this out for you:
    https://expresslane.apple.com/Issues.action
    Select the options that best apply to your issue. You will have a chance to provide a written description before you submit. iTunes Support will get back to you via email, usually within 24 hours. Be sure to check your Junk/Spam email folder if you don't hear back by then.
    They should be able to sort it out for you...
    Good luck!
    Cheers,
    GB

  • Netctl connects to access points I've never seen before

    On my laptop using netcl and auto switching profiles as described in https://wiki.archlinux.org/index.php/Netctl.
    Recently, and more than once, I'm connected at a public cafe and I'm suddenly no longer able to reach the internet.
    When I investigate, I find that I'm no longer connected to the cafe's wifi, but I am connected to some other essid that I've never seen before.  This is disconcerting for possible security reasons but also annoying to get disconnected in the middle of whatever I'm doing.
    The essids that my box connects to I've never seen before.  (I'm assuming the come from nearby computers.)  There is no corresponding profile in /etc/netctl.
    To work around the problem, I run
    sudo systemctl stop [email protected]; sudo wifi-menu
    then reconnect to the access point I was originally connected to.
      I really don't want netctl-auto to change a connection that is working.  How can I prevent this from ever happening?

    That file has a long list of every wireless router I've connected to!  I didn't know that was there.  It duplicates a lot of information thats in /etc/netctl/...   It has passwords, too.  I'm not going to post it here.
    But I don't see the mysterious routers in that file.  The ones I find myself connected to, that I never connected to myself.
    ... Looking over that file again, I see a strange entry:
    network={
    key_mgmt=NONE
    ssid=""
    id_str="wlp3s0-none"
    I'm going to delete that.  I believe it comes from a time I connected to an essid without a name.  But I'm not sure if that's the culprit.
    Last edited by Dave Cohen (2014-02-14 17:03:32)

  • API design style I've never seen before - would you use it?

    I was Googling for examples of a "Bean Comparator" and came across this strange API design I've never seen before (is it just me?). I'm curious if you have seen it before and what you think about it?
    [http://cojen.sourceforge.net/apidocs/org/cojen/util/BeanComparator.html]
    The basic problem is to create a Comparator that can sort on multiple fields within a given class.
    First, a more traditional(?) API design might be something like:
    Constructor Summary:
         BeanComparator(Class theClass);
    Method Summary:
         addSortField(String fieldName, boolean isAscending, boolean isSortNullHigh);
         addSortField(String fieldName); // convenience method with default ascending and sortNullHigh
    So you could create a BeanComparator that sorts on multiple fields by using:
    BeanComparator bc = new BeanComparator(SomeClass.class);
    bc.addSortField("field1");
    bc.addSortField("field2", false, true);
    bc.addSortField("field3", true, false);Finally, without listing the API, the equivalent code for the "strange API design" would be:
    Comparator c = BeanComparator.forClass(SomeClass.class)
         .orderBy("field1")
         .orderBy("field2")
         .reverse();
         .orderBy("field3")
         .nullLow();So in this case:
    a) there is no explicit "add" method to add a new sort field. The "orderBy" is an implicit add.
    b) the reverse() and nullLow() methods only apply to the current orderBy field.
    c) the creation of the class is "sequential" in nature as each method needs to be invoked in the proper order
    In some ways this seems to simplify the API because you don't need lots of convenience methods or your don't need to use the full method and then restate the default values.
    Also you can add new sort options to the API without affecting any existing methods.
    What do you think of this type of API design?
    Have you ever used it before?
    Would you consider using this design and in what situations would you consider it?

    What part is bothering you exactly? Its not that it bothers me, its just that it is "different" and I was wondering if it is an acceptable design of a class and when you would use it, since I don't think I've seen any examples in the JDK.
    Usually the order of method invocation is not important. You can do:
    component.setFont()
    component.setBackground()or
    component.setBackground()
    component.setFont()However
    orderBy()
    orderBy()
    reverse()is not the same as
    orderBy()
    reverse()
    orderBy()So the API implies a "building" approach where you need to know you are building the components of the class in a certain order.
    Again, its not bad, its just different (to me) so I was wondering if it is common and when you would use it.
    The fact that the methods return the object itself...No, I've seen that pattern before and find it handy.
    Your example (addSortField) also depends on the order in which the methods are called.Yes, but this is normal for most APIs. For example adding items to a Vector, or components to a panel.
    In this case the orderBy() method implies a change of state because the next set of methods may or may not modify the state of the field being ordered.
    Again, I said I thought that this potentialy does simplify the API, but I have not seen it used before.
    I don't see the design as much of a problem. Me either.

  • HT201401 My iphone 4s turned off properly but when I went to put it back the apple icon came on and then an image I have never seen before of a ubs pointiing towards the word itunes in a circle.  And the phone no longer goes beyond this message.  meltdown

    My phone started acting up and I noticed my text messages were not being sent.  So I turned my iphone off.  My iphone 4s turned off properly but when I went to put it back the apple icon came on and then an image I have never seen before of a UBS pointiing towards the word itunes in a circle.  And the phone no longer goes beyond this message.  I try to turn it off and on again and same message over and over.  If I hit the any button on the phone nothing happens. Does anyone know what this means or seen this itunes messaging ?  meltdown? Please help.

    Hello Raja,
    Thank you so much for your response.  I had these photos backed up on iCloud but, had I not, its good to have an alternate solution as the one you suggested.  Actually, I went to the Apple store today and yes, you are absolutely correct Restoring in iTunes will result in permanent loss of photos unless backed up somewhere such as iCloud or other solution.  Well, what they did was restore the phone in itunes ( I did not have iTunes downloaded to my computer which is why it did not work when I went to do it myself, I needed to go to the iTunes site and go to the download iTunes button because my windows based HP laptop does not come with itunes already downloaded).  This retoration process took a while and I was forced to upgrade to the latest 7.1 iOS software which I was not too happy about -sometimes you like the way things work now :-)  Anyhow, they said this restoration request happens as a result of a software update (which I was NOT in progress of an update or doing an update) or sometimes when you remove the power cable too quickly from the iphone (which I do not recall doing this either but...). Since I had backed up on iCloud all of the photos were downloaded back on my iphone 4s.  Best of all was that my phone was back up and runnning and there was NO CHARGE at the apple store for this service of restoring my phone.  Well, I just wanted to share the results and I appreciate all the responses and support I received.  Thank you kindly.

  • I have os x 10.5.8 and noticed a menu extra that I have never seen before. Is there a way to identify it? I tried to delete it i.e. comm drag, didn't work.

    I have os x 10.5.8 and noticed a menu extra that I have never seen before. Is there a way to identify it? I tried to delete it i.e. comm + drag, didn't work.

    If you can't CMD+ drag it off, try this...
    You've probably got a couple of corrupt preference files.
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions...
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Users/<yourname>/Library/Preferences/ com.apple.systemuiserver.plist
    /Users/<yourname>/Library/Preferences/ByHost/com.apple.systemuiserver.xxx.plist
    where 'xxx' is a 12 digit (hexadecimal) numeric string.
    This will reset your Menu Bar to the default, you'll need to go through System Preferences to reset the ones you need. (If they are already checked, uncheck them first and then recheck them).
    reboot

  • HT5577 why i have some security question that i never seen before?

    I tried to change my password on apple id and i got some security questions that i never seen before..what can i do in this case?please help me

    Welcome to the Apple Community Helen.
    If you don't know your password, don't know your security questions and don't have a rescue address or don't receive a reset email, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • Never seen before interface while cleaning screen in lock mode

    Never seen before interface while cleaning screen in lock mode came up looking like player with some weird buttons.

    Go into iPod and play a song. While it's playing, click the standby button to lock/standby your phone and again to wake it (locked), then press the menu button twice. (This should also work if you play a song, press menu once to return to the main menu, then click menu twice. If not, there's a setting to turn it on.)

  • Using Time Machine to "go back" before Mac Mail problem

    My wife's Mac mail account stopped receiving email 3 days ago.  Attempts to fix it have been futile.  (It can send but not receive.  The activity monitor suggests that it is getting hung up on a particular email as it stalls at 13 out of 233.)  Considering using Time Machine to go back to just before the problem.  Questions: Is it possible to limit TM to (1) my wife's acct only or (2) Mail only?
    My wife will definitely provide me a gruesome death if I lose her emails!
    Cheers,
    Nigel

    Thanks, applefandan.  I just haven't used Time Machine quite enough to a gained confidence, but after a little bit of experimenting and a bit of Youtube coaching (http://www.youtube.com/watch?v=fes93NW_KE0) I went back to pre-problem, and had no trouble getting back the mail my wife had lost over the past several days.
    Now on to the next problem! . . .

  • G4 Blackout-Something I've never seen before; could be end of the machine

    I have a Powerbook G4 that I use to run ProTools. Not the best machine for the job but it's served the gig well over the last year. The one thing was that it had always run kinda slow even on mundane tasks.
    Since last weekend I've been trying to get it to run a little more smoothly.
    I cleared out the hard drive, ran Disk Utility, Disk Warrior, checked Console Logs, etc etc etc.
    After some research, I did an erase and install. I finished it up this morning. The thing ran like a dream. Restarts in well under a minute, fast operation, fast shutdown: just like a Mac should be.
    Then I was back in ProTools, and the thing did something I have never seen a Mac do, ever.
    I got a warning screen that ProTools was running out of CPU and that I should increase the Playback Engine settings, and then, before I could click out of the Alert message, the screen went black. The Hard Drives went down, and now the little rectangular white/blue light at the bottom of the monitor is calmly dim-flashing. Like HAL. I can't manually restart the thing. I can't shut it off. It won't respond to anything.
    It doesn't look good.
    Has anyone seen this before? Is there any way to bring the thing back?

    Hi there.
    I'm not familiar with ProTools per se, but in general if a mac laptop is frozen like that, I pretty well always start with:
    1) Take the external battery out. 2) Pull the plug out from the back of the laptop. (this will force it to shut down) 3) Press the power button for a few seconds (to completely discharge any power). 4) Let it sit there and think about what it's done for around thirty minutes (or sometimes longer). 5) Plug the ac adaptor back in; Press power; Then the "zap the pram" thing (apple key + option key + p + r) as it starts up (make it do the startup "bong" for 3 - 5 times; Then let it complete it's normal startup.
    Then see where you're at...
    In general, I find that OS X is happiest when it has at least 5gbs free of hard drive space to play with - Protools may require it to have even more free so it can do it's thing. Are you sure you didn't accidentally remove a file Protools needs during your own "cleanup"? Also, after I run Diskwarrior on an os x drive, I always then run Disk Utility to repair permissions afterward - Diskwarrior is a great fixing tool, but some of it's ideas on what the operating system really needs aren't quite what the mac os x directory doc has ordered.

  • .mac mail problems since 10.4.8

    Ever since upgrading to 10.4.8, I have to constantly reenter my .mac password to receive mail. I'll notice my mail icon bouncing, and when I check it, I get the message that I my password for .mac mail has been rejected and I must reenter it. I do so, add it to my keychain, and it works for awhile. Then for unknown reasons, same message, etc. It's getting really old. I'm curious how many others are having this same experience. I'm about ready to do a warranty "chat" with Apple and officially report the problem, since they don't seem to be doing anything about it.
    Two other POP mail accounts I have work fine.

    I having problems with both of my mac's when subscribing to .mac e-mail service. My G4 machine just beachballs and the Intel mac is constantly asking for my .mac password.
    There's a message on the .mac home page that suggests to take your mail account offline and then online again to force it to connect. This is a temporary fix while Apple is working on the problem.
    "We are aware of an issue that can cause an unrequested dialog box to be seen when checking for new messages using an email application such as Mac OS X Mail. This dialog can consist of either a request for the account password or a message informing you that the connection to the mail server has timed out.
    Workaround:
    Should you be presented with either of these messages, click the Cancel button which will place your account into offline mode. Then take the account online again by either selecting Go Online from the Mailbox menu or by clicking the lightning bolt icon displayed to the right of the affected account's Inbox folder icon in your mailbox list. This should make your account active again.
    If the previous steps do not restore access to your mail, quit and reopen Mail. We appreciate your patience as we work to resolve this.
    Sincerely,
    The .Mac Team"
    mac mini 1.42 combo 1 gig ram and intel mac mini 512k ram   Mac OS X (10.4.8)  
    mac mini 1.42 combo 1 gig ram   Mac OS X (10.4.6)  
    mac mini 1.42 1 gig ram   Mac OS X (10.4.8)  

  • S.A. Mail Connections, never seen a connection...

    Hello,
    I have never seen any connections under S.A. > Mail > Connections. First I believed that it is normal because the connections done by clients to get mail are relative short, till I installed myself the server widget. The widget shows me connections correctly on mail service, on file services. It is great but limited ... cuz it is a widget!
    My questions... does anyone experience the same problems with viewing mail connections, anyone able to tell me where S.A. (Server Admin) is looking for connections?
    I may be able to give you more info about my configuration but ... duno wha info to give to ya!
    Cheers!

    The credit for this software is in the comments.. I hope the web editor doesn't muck up any syntax..
    #!/usr/bin/perl -w
    # mailwho.pl
    # List currently logged in Cyrus IMAP users
    # Written by Jason Englander <[email protected]>
    # Unknown creation date, possibly Mar 8, 2002, probably even earlier
    # 0.5 2006 Sep 15 Jason Englander
    # - Only display "Added to @pidfiles" if $debug is on
    # 0.4 2006 Jul 7 Jason Englander
    # - Figure out where the proc directory is from imapd.conf (no longer
    # have to hard set it at the top of the script)
    # 0.3 2005 Oct 27 Jason Englander
    # - Removed my for $version, already covered with vars
    # - Renamed show_help() to show_usage()
    # 0.2 2005 Oct 07 Jason Englander
    # - Don't even print the header, just exit, if nobody if no
    # info is available
    # - Use sprintf instead of adding spaces, checking lengths, etc.
    # - Added use of Getopt::Long for commandline options
    # - Added lots of debugging info (pass -d or --debug)
    # - Sort output by pid, username, or source IP
    # - Named this version 0.2
    # 0.1 2002 Mar 08 Jason Englander
    # - Either created it or updated it
    # TODO:
    # - Add 'logged in since' time? (time the pid file was created)
    # - Add sorting by columns other than pid
    # Eddie
    unless ($> == 0 || $< == 0) { die "You must be root or run sudo" }
    # Cyrus IMAP's proc directory
    my $imapprocdir = "/var/imap/proc";
    # If 1, replace user.$username with INBOX in output
    my $showinbox = 0;
    use Getopt::Long;
    use strict;
    use vars qw( $debug %folders @output @pidfiles $show_help $show_version $sort %sources %users $version );
    my $myself = substr($0, index($0, '/')+1);
    my $result = GetOptions(
    'd|debug' => \$debug,
    'h|help' => \$show_help,
    's|sort=s' => \$sort,
    'v|version' => \$show_version
    &show_usage if ! $result;
    $version = "0.5";
    &show_usage if $show_help;
    &show_version if $show_version;
    $sort = "p" if ! $sort;
    if ($sort ne "p" && $sort ne "s" && $sort ne "u") {
    print "$myself: ERROR - Invalid sort type specified: $sort (valid = p,s,u), using default (p)\n";
    $sort = "p";
    # Get 'configdirectory' (ie. /var/imap, /var/lib/imap, etc.) from imapd.conf
    print "DEBUG: Opening imapd.conf to get \"configdirectory\"\n" if $debug;
    my ($imapconfdir);
    open (IMAPDCONF, "/etc/imapd.conf") || die "\nUnable to open /etc/imapd.conf for reading: $!\n\n";
    while (<IMAPDCONF>) {
    if (/^configdirectory:(\s+)(.*)/) {
    $imapconfdir = $2;
    last;
    close (IMAPDCONF);
    die "\nUnable to find \"configdirectory\" in /etc/imapd.conf\n\n" if ! $imapconfdir;
    chomp($imapconfdir);
    $imapconfdir =~ s/\/$//g;
    print "DEBUG: configdirectory = $imapconfdir\n" if $debug;
    $imapprocdir = $imapconfdir . "/proc";
    print "DEBUG: Opening $imapprocdir\n" if $debug;
    opendir (IMAPPROC, $imapprocdir) || die "\nUnable to open $imapprocdir for reading:\n$!\n\n";
    while (my $procfile = readdir(IMAPPROC)) {
    #print "DEBUG: \$procfile = $procfile\n" if $debug;
    #next if ! -f "$imapprocdir/$procfile";
    #print "DEBUG: Added $procfile to \@pidfiles\n" if $debug;
    #push (@pidfiles, "$procfile");
    print "DEBUG: \$procfile = $procfile - " if $debug;
    if (! -f "$imapprocdir/$procfile") {
    print "Skipped\n" if $debug;
    next;
    else {
    print "Added to \@pidfiles\n" if $debug;
    push (@pidfiles, "$procfile");
    print "DEBUG: Closing $imapprocdir\n" if $debug;
    closedir (IMAPPROC);
    if (! @pidfiles) {
    print "Nobody appears to be logged in right now\n";
    exit;
    print "DEBUG: Processing \@pidfiles\n" if $debug;
    foreach my $pid (@pidfiles) {
    print "DEBUG: Processing \$pid = $pid\nDEBUG: Opening $imapprocdir/$pid\n" if $debug;
    open (PIDFILE, "${imapprocdir}/${pid}");
    while (<PIDFILE>) {
    chomp;
    my ($source, $user, $folder) = split(/\t/);
    $source = "?" if ! $source;
    $user = "?" if ! $user;
    $folder = "?" if ! $folder;
    print "DEBUG: \$source = $source\nDEBUG: \$user = $user\nDEBUG: \$folder = $folder\n" if $de
    bug;
    $source = $1 if $source =~ /\[(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\]/;
    print "DEBUG: \$source after check for IP = $source\n" if $debug;
    if ($showinbox) {
    $folder =~ s/^user\.$user/INBOX/ if $folder =~ /^user\.$user/;
    print "DEBUG: \$folder after replacing user.$user with INBOX = $folder\n" if $debug;
    if (length($folder) > 44) {
    $folder = substr($folder, 0, 41);
    $folder .= "...";
    print "DEBUG: \$folder too long, chopped to: \"$folder\"\n";
    #push (@output, sprintf "%-5d %-9s %-15s %s\n", $pid, $user, $source, $folder);
    $sources{$pid} = $source;
    $users{$pid} = $user;
    $folders{$pid} = $folder;
    print "DEBUG: Closing $imapprocdir/$pid\n" if $debug;
    close (PIDFILE);
    print "DEBUG: Sorting output by " if $debug;
    if ($sort eq "p") {
    print "pid\n" if $debug;
    foreach my $pid (sort {$a <=> $b} @pidfiles) {
    my $user = $users{$pid};
    my $source = $sources{$pid};
    my $folder = $folders{$pid};
    push (@output, sprintf "%-5d %-9s %-15s %s\n", $pid, $user, $source, $folder);
    elsif ($sort eq "s") {
    print "source IP\n" if $debug;
    foreach my $pid (sort keys %sources) {
    my $user = $users{$pid};
    my $source = $sources{$pid};
    my $folder = $folders{$pid};
    push (@output, sprintf "%-5d %-9s %-15s %s\n", $pid, $user, $source, $folder);
    elsif ($sort eq "u") {
    print "username\n" if $debug;
    foreach my $pid (sort keys %users) {
    my $user = $users{$pid};
    my $source = $sources{$pid};
    my $folder = $folders{$pid};
    push (@output, sprintf "%-5d %-9s %-15s %s\n", $pid, $user, $source, $folder);
    print "\n";
    print "Pid User Source IP Folder\n";
    print "===== ========= =============== =========================================\n";
    print @output;
    print "\n";
    sub show_usage () {
    print "\n$myself [options]\n\n";
    print " Options:\n";
    print " -d, --debug Display extra info for debugging\n";
    print " -h, --help Display help (you're looking at it)\n";
    print " -s, --sort p Sort the output by pid number (default)\n";
    print " -s, --sort s Sort the output by source IP\n";
    print " -s, --sort u Sort the output by username\n";
    print " -v, --version Display the current version of $myself\n";
    print "\n";
    exit;
    sub show_version () {
    print "$myself $version\n";
    exit;
    }

  • There is a dialog box on my screen that I've never seen before. I can't get it to disappear. Any ideas?

    My Macbook has a dialog box on the screen that indicates everything I do. Right now it says "Standard toolbar". When I try to get rid of it nothing happens. I've never seen this before and don't know ho to get rid of it.

    This seems to be more common than I thought. Premanent solution is to trade the cat in on a dog.
    https://discussions.apple.com/search.jspa?peopleEnabled=true&userID=&containerTy pe=&container=&spotlight=false&q=cat+on+keyboard

  • Please help ID a screen I've never seen before

    OK, I'm working along this morning on effects in my Viewer. At some point I looked over at my Canvas and there is a frame from my project with the clip name overlayed at the top and the timecode overlayed on the bottom. Now, this is not the standard Time Code Overlay screen we see in under the Show Overlays pull down. This has the clip name at the top of the frame and the timecode was a single line in a bigger than usual type face. This was not the clip I was working on in the Viewer and the moment I clicked out of Viewer the screen disappeared, replaced by the frame on which my playhead rested. I've never seen the screen before. Have you?
    Peter

    petemay wrote:
    Interesting. That would explain why, though I'm doing a video on tax evasion, everyone looked extraordinarily happy. Next time I'm going to try leaning into the screen rather than clicking away.
    Pete
    What's interesting, Pete, is that you've got the courage and humor to roll with us. Most others would get really upset and start screaming for the mods (whoever they are) to have the jovial persecuted to the full extent of the TOS.
    Can't say that I've ever seen this oddball screen of yours. Hope you see it again someday.
    bogiesan

Maybe you are looking for

  • How can I show all missing content in iTunes library?

    How can I show all missing content (ie. show the exclamation mark against each track)? I can restore the missing content but need to know what is missing without running each track.

  • Adobe Media Encoder: Audio won't export with video

    I am trying to convert an AVCHD video for viewing on my iPad 3. I use Adobe Media Encoder and select the iPad 2 settings (1920x1080) and it exports the video perfect, but no audio. I have "Export Audio" checked off. I tried it with 5 other settings a

  • Some problems about 5800

    1.How can 5800 have more free memorey built-in?When first used,i saw it had 79MB free,and now it have 40MB free 2.Can Nokia update firmware to overclock CPU's clock up to 500MHz? Because the current CPU's clock(434Mhz) is too slow Thank Nokia. 5800 i

  • Cannot get scan to work on Deskjet428​0

    i have the photosmart software down loaded but i cannot scan anything from the printer to my pc any suggestions email me at [email protected]

  • How to Easily Find Your Favorite Conversation - Video

    If you like a certain thread, you can bookmark it so that it appears at the top of the forum homepage. This means that you won't have to search for it – and with one click you can go to the latest post. To do that, please perform the following steps: