Nokia e75 disabling power saving/time out

I want to disable the screen back light turning off but in the settings I can only make it time out from 5 to 90 seconds, don't see a way to make it 0 or never, any way to turn this "feature" off completely?

@m80116, this may well be a solution, but could be problematic if in a weak reception area where only Edge is available ? You could lose data connection completely ! I tend to use Dual mode, and generally don't have an issue, but certainly for anyone living and working in a very strong 3 or 3.5G area it may work very well, wish I had the luxury of being able to use 3G Only 
If I have helped at all, a click on the White Star is always appreciated :
you can also help others by marking 'accept as solution' 

Similar Messages

  • Nokia N8: Possible Power Saving Mode Bug

    Dear All, 
    For the past week, I've change the way I use my Nokia N8. I decided to set it up in power saving mode during the evening. There is no point for it to be on 3.5G if nobody is using it. Unfortunately, I seem to have hit a problem. At the moment, my N8 is using a pay as you go sim card from O2 and this card is in the phone 24/7. 
    When I activate power saving mode, the phone re-registers with the network and the maximum speed it will have will be EDGE. In the morning, when I take my phone I disable power saving mode and the phone re-registers again with the network. 
    Having said that, on multiple ocassions, my phone showed some worrying symptoms. For example, a few das ago, when I disabled power saving mode, the phone did not show the 3.5G icon and I could not make any phone calls. The coverage was up and down. You might say that, it did not show 3.5G because you had no 3.5G you idiot. That is not true, where I live, there is 3.5G everywhere.
    I was shocked that I could not make any phone calls. After a few reboots and taking SIM card out, I managed to get the phone in working order. 
    Today, the same thing happened. I managed to fix it just a few moments ago. It seems that the power saving mode option has an implementation problem or O2 does not like the way the N8 registers to the network when you enable and disable the said feature.  Has anyone encountered this???

    @m80116, this may well be a solution, but could be problematic if in a weak reception area where only Edge is available ? You could lose data connection completely ! I tend to use Dual mode, and generally don't have an issue, but certainly for anyone living and working in a very strong 3 or 3.5G area it may work very well, wish I had the luxury of being able to use 3G Only 
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Disable daylight saving time

    Hi all,
    I know this subject has been posted before, but i haven't found any suitable response. I need to disable daylight saving time, but i haven't been lucky yet. I've tried several things:
    // Option A
    Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone("GMT+01:00"));
    // Option B
    Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone(Some String Suitable));
    // Option C
    Calendar calendar= new GregorianCalendar(new SimpleTimeZone(int, Some String Suitable));
    // Option D
    SimpleTimeZone stz;
    stz.setDSTSavings(0); // I get an errorAnd many other solutions, but it keeps applying daylight saving time and changing from 25/03/2007 01:00 to 25/03/2007 03:00. Any workarounds that doesn't involve to build my own Calendar? Also i can't disable it in the Operating System because it would affect other applications.
    Thanks in advance.

    Hi man, i've tried that also and still the same problem, code:
    // Japan hasn't DST
    Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone("GMT+9"), Locale.JAPAN);
             calendar.set(Calendar.MONTH, Calendar.MARCH);
             calendar.set(Calendar.DAY_OF_MONTH, 24);
             for (int i= 0; i< 50; i++) {
                 System.out.println(calendar.getTime());
                 calendar.add(Calendar.HOUR, 1);
             }Also i've tried with identical result:
    Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone("Asia/Tokyo"), Locale.JAPAN);
             calendar.set(Calendar.MONTH, Calendar.MARCH);
             calendar.set(Calendar.DAY_OF_MONTH, 24);
             for (int i= 0; i< 50; i++) {
                 System.out.println(calendar.getTime());
                 calendar.add(Calendar.HOUR, 1);
             }And finally i've tried the "set" method (in several lines) and still the same result:
             Calendar calendar= new GregorianCalendar(TimeZone.getTimeZone("Asia/Tokyo"), Locale.JAPAN);
             calendar.setTimeZone(TimeZone.getTimeZone("Asia/Tokyo"));
             calendar.set(Calendar.MONTH, Calendar.MARCH);
             calendar.set(Calendar.DAY_OF_MONTH, 24);
             calendar.setTimeZone(TimeZone.getTimeZone("Asia/Tokyo"));
             for (int i= 0; i< 50; i++) {
                 System.out.println(calendar.getTime());
                 calendar.add(Calendar.HOUR, 1);
                 calendar.setTimeZone(TimeZone.getTimeZone("Asia/Tokyo"));
             }Output:
    Sat Mar 24 10:11:38 CET 2007
    Sat Mar 24 11:11:38 CET 2007
    Sat Mar 24 12:11:38 CET 2007
    Sat Mar 24 13:11:38 CET 2007
    Sat Mar 24 14:11:38 CET 2007
    Sat Mar 24 15:11:38 CET 2007
    Sat Mar 24 16:11:38 CET 2007
    Sat Mar 24 17:11:38 CET 2007
    Sat Mar 24 18:11:38 CET 2007
    Sat Mar 24 19:11:38 CET 2007
    Sat Mar 24 20:11:38 CET 2007
    Sat Mar 24 21:11:38 CET 2007
    Sat Mar 24 22:11:38 CET 2007
    Sat Mar 24 23:11:38 CET 2007
    Sun Mar 25 00:11:38 CET 2007
    // HERE AGAIN !!!
    Sun Mar 25 01:11:38 CET 2007
    Sun Mar 25 03:11:38 CEST 2007
    Sun Mar 25 04:11:38 CEST 2007
    Sun Mar 25 05:11:38 CEST 2007
    Sun Mar 25 06:11:38 CEST 2007
    Sun Mar 25 07:11:38 CEST 2007
    Sun Mar 25 08:11:38 CEST 2007
    Sun Mar 25 09:11:38 CEST 2007
    Sun Mar 25 10:11:38 CEST 2007
    Sun Mar 25 11:11:38 CEST 2007
    Sun Mar 25 12:11:38 CEST 2007
    Sun Mar 25 13:11:38 CEST 2007
    Sun Mar 25 14:11:38 CEST 2007
    Sun Mar 25 15:11:38 CEST 2007
    Sun Mar 25 16:11:38 CEST 2007
    Sun Mar 25 17:11:38 CEST 2007
    Sun Mar 25 18:11:38 CEST 2007
    Sun Mar 25 19:11:38 CEST 2007
    Sun Mar 25 20:11:38 CEST 2007
    Sun Mar 25 21:11:38 CEST 2007
    Sun Mar 25 22:11:38 CEST 2007
    Sun Mar 25 23:11:38 CEST 2007
    Mon Mar 26 00:11:38 CEST 2007
    Mon Mar 26 01:11:38 CEST 2007
    Mon Mar 26 02:11:38 CEST 2007
    Mon Mar 26 03:11:38 CEST 2007
    Mon Mar 26 04:11:38 CEST 2007
    Mon Mar 26 05:11:38 CEST 2007
    Mon Mar 26 06:11:38 CEST 2007
    Mon Mar 26 07:11:38 CEST 2007
    Mon Mar 26 08:11:38 CEST 2007
    Mon Mar 26 09:11:38 CEST 2007
    Mon Mar 26 10:11:38 CEST 2007
    Mon Mar 26 11:11:38 CEST 2007
    Mon Mar 26 12:11:38 CEST 2007
    Any help will be appreciated.

  • Pm-utils-1.4.0-1: aggressive hard drive power saving (often spin-up)

    [sorry, misplaced post. this issue is for package from extra repo]
    Hi all,
    after upgrading from pm-utils-1.3.0-2 to pm-utils-1.4.0-1 I noticed that hard drive on my laptop is stopped and spinned up again too often.
    The reason for this is script introduced in pm-utils-1.4 /usr/lib/pm-utils/power.d/harddrive that activates aggressive power saving. pm-powersafe is triggered after suspend wake-up in my case.
    I noticed that
    # hdparm -B /dev/sda
    /dev/sda:
    APM_level = 1
    in case when laptop runs on battery power, and
    APM_level = 254
    when on AC. And I'm rarely use AC
    Positive effect of this aggressive hard drive power saving is really doubtful as it can shorten your hard drive life significantly and cause apps hung till spin up very often.
    I don't want to bring up a big discussion here, almost the same problem was discussed by ubuntu community
    "Ubuntu's Laptop Killing Bug":
    http://it.slashdot.org/article.pl?sid=0 … 4&from=rss
    Currently I manually disabled power saving on hard drive by
    # hdparm -B 255 /dev/sda
    /dev/sda:
    setting Advanced Power Management level to disabled
    APM_level = off
    and disabled /ur/lib/pm-utils/power.d/harddrive by resetting execution flag.
    I monitored spin up cycles count by
    # smartctl -a /dev/sda | grep Start_Stop_Count
    4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 4715
    It grew significantly before I noticed the problem
    Last edited by basilgor (2010-07-23 12:36:32)

    I have
    hdparm -B 255 /dev/sda
    in /etc/rc.local to apply this after boot and
    #!/bin/sh
    # Use a less aggressiv hard disk power management in order to get
    # rid of clicking noise which occurs when the drive is parking its heads
    . "${PM_FUNCTIONS}"
    case "$1" in
    thaw|resume)
    hdparm -B 255 /dev/sda
    esac
    exit $NA
    in /etc/pm/sleep.d/00-hdd to apply it after resume from suspend, but when resuming APM is not set since recent version of pm-utils
    Last edited by EVRAMP (2010-08-06 10:30:58)

  • MSI R9 270x and problems with switching power-saving modes

    hi,I bought this video card but now I began to twitch screen sometimes when switching video card power saving modes
    it all happens in a game, or at the sites but not on the desktop
    how to disable power saving mode so that it always runs at maximum frequency?
    or how to disable Perf Level 0

    Ok, sorry about that.
    Currently seem to have a Grey Screen whenever I boot the desktop with the graphics card installed.
    1. I tried system restore to see if it was a program causing the grey screen, but same problem.
    2. Tried installing the cd version of the AMD drivers same problem.
    3. Installed the latest version of the driver, as well as, beta version same problem.
    4. Removed the graphics card and put it back in booted up, same problem.
    5. Also tried the Molex Cables that came in the box to different power supply on the PSU, same problem.
    PSU:
    Main Board: MSI Z77A-G45
    Bios Version:Version: V2.12, (9/29/2013)
    Video Card Driver Version:13.250.18.0
    Video Card BIOS Version:113-C6310100-X15:
    Video Card: msi R9 270X Hawk
    Video Card S/N: 602-V303-02SB1309098658
    PSU: 650W TX650 V2 PSU 80 PLUS Bronze  
    12v rail Rating of listed PSU: +12V_53A, -12V_0.8A
    CPU: Intel Core i5-3570K CPU @ 3.40GHz, LGA 1155, 77W
    Memory: Corsair Vengeance 16GB (2x8GB) DDR3 1600 MHz (PC3 12800)
    SSD/ HDD: 120GB SSD, 1TB HDD, 150GB HDD
    CPU COOLER: Cooler Master Hyper 212 EVO
    OC:No
    Operating System: Win 8 Pro 64bit

  • E75 How to disable power save or light time out?

    Hi,
    I want to disbale either the power save or change the light time out setting, but I can do neither? Can anyone assist?
    Thanks

    for changing the light settings go to menu->ctrl.panel->settings->general->personlization->display-> there u have light time out option change it with ur desire output..
    for disabling the power saver got to menu->ctrl.panel->settings->general->personlization->themes->power saver and just change it to none. and u r done.
    ¨Arm yourself because no one else here will save you¨

  • Nokia N96 Power Saving

    I was just curious, what this do to the cellphone if I activate it or keep it on deactivate mode? what will be the changes to the phone.
    uhmm i tried searching some information of this power saving to the introduction and user guide manual but i have no luck.
    please help me.
    thank you.
    Solved!
    Go to Solution.

    14-Nov-2008 08:22 AM
    marvin11 wrote:
    so is this preferable like to just activate the power saving all the time?
    If you don't mind a very dim screen and the lights going out quickly then you can use it all the time.
    It only really makes a difference whilst using your phone. It doesn't save any power if your phone is sat there unused on standby.
    It doesn't reduce the performance of the phone or effect programs.
    Message Edited by psychomania on 14-Nov-2008 08:38 AM

  • Nokia N8 Screen Saver & Power-Saving Mode

    Few issues after 24hrs of N8 usage...
    1) My Screen Saver stopped working... screen stays lit indefinitely, even when locked... after multiple restarts and lots of frustration it came back, but this issue has already happened twice - surely a bug
    2) Power-Saving mode doesn't really make sense unless it is customisable... I am on a 3G only network, power-saving enables GSM-only... see the flaw?
    Appreciate your feedback,
    Mike

    Regarding ISSUE #1 (the screensaver failure), I have a PERFECT solution!!!
    However, I am not sure if this will work for you, because I have SPB Mobile Shell, but it is worth a try!
    1) Make sure you have the widget for the MUSIC PLAYER on one of your main operating page.
    2) Turn OFF your phone regularly. (NO NEED to hard rest by hold over 8 secs)
    3) Turn ON your phone.
    4) Once the phone loaded up, immediate play any song through your music player. (Need to be done before your phone auto-locks)
    5) Lock your phone with your side-lock button; your screensaver should come back.
    Both my g/f & I owns a Nokia N8, and we both experienced the screensaver failure problem. My N8 was easy to fix by many people's solution of just simply reset, and it automatically fixed the problem. But My g/f's N8 was stubborn, and wouldn't turn the screensaver back on by this simple reset method. Later I discovered the above method, and it worked every time! I think somehow the music player is triggering the screensaver and forces it to stay on.
    Well, although we somehow surpass this  issue, but Nokia still need to fix this problem. Nokia N8 is a great phone, it shouldn't have such a simple mistake in it. This makes the perfect phone imperfect!!! Anyway, please let me know if this method works for you guys, thanks.

  • T6300 power saving option, can it be disabled?

    Just purchased the T6300 system after many happy years with a Creative 2.1 system. BUT I am not at all happy with the "power saving" device built into the T6300 which cuts the speakers off after 15 minutes!!!!
    Whose bright idea was this?
    If its supposed to come back on when it detects sound I'm here to tell you that it doesn't!!!!!
    Is there a way to disable it because its already driving me nuts?!!!!!
    NOT impressed!!!!

    Well after digging around the net it appears that this "feature" cannot be turned off. As a result I intend to dispose of this pile of garbage at the earliest opportunity and seek out a manufacturer with a modicum of common sense.
    I can't even take it back as I had spliced in an extension cable to the rear speakers, as the short cable is only suitable for those people that live in a small packing crate, before I discovered this idiotic "feature".
    Creative the T6300 is an inferior product and I advise people to avoid it.

  • Nokia 7370 Power Saving Problems

    Hi Everyone
    I just got my nokia 7370 (the gold swivel one from the l'amour collection) and I'm having a minor problem.
    When the phone is inactive it isn't displaying the date and time on a black screen as it should in power saving mode.
    Power saving mode is switched on in settings but it isn't working.
    Can anyone help me with this?
    Any help will be greatly appreciated.
    Thanks
    p21b

    well my operator (Videotron) here in Canada, i can only connect via 3G for calling therefore i sort of need 3G to make and receive calls, otherwise it's like being in Offline mode!
    so i can understand this person's issue.
    As i have the same problem.
    Basicly whenever my phone activates Powersaving, it literally disconnects me from the network (no longer able to make and receive calls)
    I am using a Nokia E7

  • ERROR while saving the runtime systems(read time out exception)

    Hi e xperts
    I am configuring NWDI and assigned asll the permissions and roles to the CMS user.I created Domain,in landscape configurater
    created track and saved.
    while saving the rumtime systems the error thrown is
    com.sap.cms.util.exception.conf.CMSCCBSCommunicationException: CBS (URL http://dtlepdev:54400/tc.CBS.Appl/archiveapi2/) communication exception: Read timed out (Service call exception; nested exception is:
    java.net.SocketTimeoutException: Read timed out)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.removeBuildspace(CBSConfCommunicator.java:382)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.deleteCreateBuildspace(CBSConfCommunicator.java:338)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.editBuildspace(CBSConfCommunicator.java:277)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.createBuildspace(CBSConfCommunicator.java:168)
    at com.sap.cms.pcs.conf.core.services.SystemManagerObject.saveSystem(SystemManagerObject.java:261)
    at com.sap.cms.pcs.conf.core.plugin.DefaultTrack.newTrack(DefaultTrack.java:292)
    at com.sap.cms.pcs.conf.core.TrackManager.editTrack(TrackManager.java:208)
    at com.sap.cms.pcs.conf.manager.CmsConfManager.editTrackConfiguration(CmsConfManager.java:1002)
    at com.sap.cms.pcs.conf.manager.proxy.CmsConfProxyBean.editTrackConfiguration(CmsConfProxyBean.java:489)
    at com.sap.cms.pcs.conf.manager.proxy.LocalCmsConfProxyLocalObjectImpl0_0.editTrackConfigurationand also ..
    Unable to instantiate a Build Space administrator!
    Build Space "DTL_ETRACK_C" [bsID: 27, version: 0] [in-queue: on (privileged), out-queue: "on", processing: off]
    <null>
    [EXCEPTION]
    Buildspace DTL_ETRACK_C does not own the workspace ws/ETRACK/dtl.com_DEFAULTIME/cons/inactive/ .  It is currently not owned by any other buildspace
    at com.sap.tc.cbs.server.rt.bs._BuildSpaceValidator.checkWorkspace(_BuildSpaceValidator.java:120)
    at com.sap.tc.cbs.server.rt.bs._BuildSpaceValidator.validateWSs(_BuildSpaceValidator.java:74)
    at com.sap.tc.cbs.server.rt.bs.BSAdmin.validate(BSAdmin.java:192)
    at com.sap.tc.cbs.server.rt.bs.BSAdmin.updateState(BSAdmin.java:260)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.determineChanges(BSAdminOrc.java:439)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.validateBuildSpaceData(BSAdminOrc.java:219)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.act(BSAdminOrc.java:341)
    at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:139)
    at java.lang.Thread.run(Thread.java:534
    In cbs i checked the parametrs they are open and on..
    please suggest me on this ASAP..since 2 days i have been struggling and searched in forums..no perfect solution
    help me out
    perfect soln is immediately awarded...
    I
    THanks
    Mayu

    Hi Mayu,
    here apparently the CMS cannot communicate to CBS properly and then when CMS tries to talk to CBS using a webservice, it times out due to various reasons, see below.
    Strange, I always had this error when the CMS was on a different release like CBS and this caused the communication problem.
    Don't you have an entry in your cms log like this?
    com.sap.cms.util.exception.CMSUnexpectedException                          
    at com.sap.cms.pcs.conf.manager.CmsConfManager.newTrackConfiguration(CmsConfManager.java:666)                                                    
    Caused by: java.lang.IncompatibleClassChangeError
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.openConnection(CBSConfCommunicator.java:84)                                             
    Please provide me the version of the DI_CMS, DI_CBS (and DI_DTR for the sake of completeness).
    You can find this info on the ComponentInfo page.
    On 640/700 this is http://<host>:<port>/sap/monitoring/ComponentInfo
    as of 710 you find this on the "Components" tab of http://<host>:<port>/nwa/sysinfo
    I also think that this is not due to the runtime systems. I guess you have the same problem if you try to create the track without runtime systems, right?
    (The "Unable to instantiate a Build Space administrator!" is not necessarily an error, see the note:
    #1175019 - Unable to instantiate a Build Space administrator!)
    Thank you!
    Best Regards,
    Ervin

  • I can't download update 5.0.1 and have disabled all security measures and the download still times out shortly after beginning the download.  All other downloads are successful so I know the problem is not in the computer.  Can anyone help?

    Can't download update 5.0.1 to my iPad2.  I disabled all security items in fact have deleted them from computer, but the download still times out advising check settings but all is set right?  Can any one help with this matter?

    I'm still experiencing this problem.  I went to settings, general, software and it says Install now.  But when I try, I get an error message. 

  • Network times out on Power Mac

    My G4 Power Mac (running 10.4) can load many web pages ok, but if there is a large file or a sustained download, such as streaming video, it will stop downloading and time out. I can open a new Safari page and start over, no problem.
    Same thing for file transfers between machines on my network. It will stop transferring.
    Software update sometimes finishes evaluating my need for updates, but if I try to update it usually fails before files are downloaded.
    This machine is currently running in a place where another machine was, using the same network connection, cable etc. The other machine had no problem, while this machine exhibits the problem wherever I put it.
    Is it likely a hardware issue (I've done a clean install of the OS)? Is there an inexpensive network card that is supported by 10.4 that I can put on this machine to find out?

    You can use Network Utility to look at the error counts for your Ethernet interface. Anything over a handful of errors at startup usually indicates a problem.
    If you have a Router with multiple ports, try a different port. My experience is that the ports don't fail outright, they just get more and more errors.
    There is an Apple Ethernet 10/100 PCI card that was made for older Macs like the 8600 and beige G3. They are available from time to time on the used market. If you get another brand, be sure to get the Mac drivers with it -- many of the makers are out of business and the drivers are hard to find.

  • Nokia 700 screen/keylock time-out

    Hi
    Hope somebody out there can help! I have to manually lock my phone as the screen/keylock time-out which i have set for 1 minute does not work. As a result of this i have to charge my phone every day as the light stays on and quickly drains the battery.  This has'nt always been the case, just the last 2 months. Thank you

    Have you tried option to re-install exisiting device software within Nokia Suite > Tools > Software updates? Then try device without restoring any "Settings" in case corrupted.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Disabling the 10 second time out

    Hello there,
    I use Ichat often and have had it time out several times when there was no video but audio was present (speaker left the camera view) this is typical and I would like to be able to disable it.
    any help is appreciated.
    marc

    Hi,
    I can tell you how iChat gets to Peer-to-Peer Video or Audio Only chat and that may help. AT the end of the day it is a data stream of Video and Audio Data.
    Process.
    One Buddy sends the Invite to another Buddy and Pop up saying there is an invite appears on the second Buddy's screen. I tend to refer to this as the Visible Invite.
    This Visible invite happens on port 5678 using the UDP Protocol (essentially that is just another Internet Protocol like HTML for Web Pages or SMTP for Outgoing mail).
    At this point iChat also contacts a server set up by Apple to Help Negotiate the connection with the Buddy.
    This Server is called SNATMAP.mac.com and is an SIP server.
    SIP = Session Initiation Protocol
    This server acts like an old fashioned Telephone Operator at both ends of the connection.
    Once that link is made an SIP Invite is sent as well.
    It goes from Buddy One to SNATMAP then internally to SNATMAP which then contacts the Buddy (2) and the Buddy's end send a response.
    This is on Port 16402 as first choice (in iChat 4 and 5) using the UDP Protocol.
    This process continues passing bits back and forth. Like a telephone call but text Based it sends "Trying" then "Ringing" and finally "ACK" (You can sometimes see this in failed Connection Logs).
    (Much the same as you would phone he operator and ask them to Connect you, then that Operator contacts one near your Buddy who then ask the Buddy is they will accept)
    Then there is further negotiation on what sort of Connection is going to be involved.
    (The logs will note a CSeq (Call sequence) change from INVITE to MESSAGE)
    AT this point Buddy One's iChat sends a PING to Buddy two's iChat.
    This is again on port 16042
    This is direct and the return is direct.
    This is confirm where the Visible Invite Went to is the same place that is returning the SIP data.
    The SNATMAP Server is at the same time confirming with both ends which ports are about to be used for the Video Chat or Audio only chat.
    Mac to Mac the first choice is still port 16402 (To PC using AIM the ports can be different but SNAPMAP sorts this).
    Following this the SNAPMAP server drops out and the two Buddies are Peer-to-Peer.
    If I was trying to place where it in security terms with other Internet Activities I would say it on par with dealing with a Web Browser logging into a Secure site like a Bank, PayPal or the Discussions Login page and similar.
    Probably more secure than you email is (Data is not lying about on some server waiting for you to collect it).
    Probably more secure than a regular phone call.
    If both Buddies have MobileMe accounts and are on Macs then iChat to iChat Chats of any sort can be Encrypted.
    Unlike a Chatroom a Buddy cannot join it by knowing that the Chat is taking place (Although the Buddy List does indicate they are busy)
    8:08 PM Monday; January 31, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

Maybe you are looking for