Error message + user name ghosted in settings

I hope someone can help. I started getting this message last night after attempting to send a large file.
"Some actions taken while the account .mac account was offline could not be completed online. Mail has undone actions while online. Mail has saved other messages in mailbox "on My Mac" in "On My Mac so that you can complete the actions while online. Additional information: The connection to the server mail.mac.com on port 993 timed out."
Mail is working fine on my G4 - only a problem on my laptop. If I send from my laptop it is received on the desktop - but doesn't show up in Sent or Inbox on laptop. Just hangs....
I have tried changing the ports as was suggested in other posts but no luck.
I have gone into Mail preferences, and under my account information my Username is ghosted. Could this be the problem? Any idea how to fix this?
The three other .Mac accounts on the laptop are fine.
THANK YOU!
L

Did you have any luck with FireFox?
-------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

Similar Messages

  • Keep getting error message "user name or password for aol is incorrect". I have reset both username and password and still can't get my mail.  This problem only seems to exist in the evening.

    Keep getting error message "user name or password for aol is incorrect
    ". Have reset both and problem still exists.  Problem appears to be in the evening hours only.

    reset the password to re confirm that that isn't the issue

  • I'm getting this error message: "User not registered for online use" when i'm trying to download music/ track names from a CD into ITunes on my Windows 8 PC.  I'm registered and my itunes account/ appleID are all correct and working.

    I'm getting this error message: "User not registered for online use" when i'm trying to download music/ track names from a CD into ITunes on my Windows 8 PC.  I'm registered and my itunes account/ appleID are all correct and working.

    The ""not recognized for on-line use". error is associated with the Gracenote service that iTunes uses to look up and retrieve metadata for CDs.  Some users have reported that this error occurs when trying to import from CD, subsequent to upgrading to version 12.  A number of slightly different solutions have been reported (though all of a similar nature).
    Try walking through the following steps - before starting you may have to enable hidden files and folders to be viewed - in Windows 7 / Windows Explorer select Organize > Folder and search options, then on the View tab make sure that Show hidden files, folders and drives is selected.  Without this you won't see the AppData folder in C:\Users\username\
    Exit iTunes
    In Windows Explorer, go to the folder C:\Users\username\AppData\Roaming\Apple Computer\iTunes
    Delete the following files:
    CD Info.cidb
    com.apple.iTunes.Gracenote.plist
    Restart iTunes
    Insert a CD and see if details are now correctly retrieved from Gracenote
    If this doesn't work:
    In iTunes, select Edit > Preferences and make a note (or take a screenshot) of your preferences settings in all relevant tabs
    Exit iTunes
    In Windows Explorer, go to the folder C:\Users\username\AppData\Roaming\Apple Computer\iTunes
    Delete the following file:iTunesPrefs.xml
    Restart iTunes
    Insert a CD and see if details are now correctly retrieved from Gracenote
    If this second procedure does work, you'll need to restore other iTunes preferences settings to those that you noted in step 1.
    If this one didn't work:
    Exit iTunes
    Check the following folders:
    C:\Users\username\AppData\Local\Apple Computer\iTunes
    C:\Users\username\AppData\LocalLow\Apple Computer\iTunes
    Delete any copies of the following files:
    CD Info.cidb
    com.apple.iTunes.Gracenote.plist
    iTunesPrefs.xml
    Restart iTunes
    Insert a CD and see if details are now correctly retrieved from Gracenote
    Again, if this procedure does work, you'll need to restore other iTunes preferences settings to those that you noted in step 1 of the second procedure. If you're still not able to retrieve CD info:
    Exit iTunes
    In Windows, select Start > Control Panel > Programs and Features.  Find the entry for iTunes, right-click and select Repair.
    When this process has finished, restart iTunes
    Insert a CD and see if details are now correctly retrieved from Gracenote
    If none of these have worked (and almost everything I've seen suggests you should be OK by this point), you may have an issue with the installation and configuration of iTunes itself.  If you have got this far, see turingtest2's notes on Troubleshooting issues with iTunes for Windows updates for advice on how to remove and replace of all components of iTunes.

  • Compiler Error Message: BC30451: Name 'UserEmail' is not declared.

    Have the message when I test the page. Anyone sugest a
    solution please?
    Compiler Error Message: BC30451: Name 'UserEmail' is not
    declared.
    Page code below.
    <%@ Page Language="VB" ContentType="text/html"
    ResponseEncoding="iso-8859-1" %>
    <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls"
    Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutra l"
    %>
    <MM:DataSet
    id="dsUsers"
    runat="Server"
    IsStoredProcedure="false"
    ConnectionString='<%#
    System.Configuration.ConfigurationSettings.AppSettings("MM_CONNECTION_STRING_conSQLPerene lle")
    %>'
    DatabaseType='<%#
    System.Configuration.ConfigurationSettings.AppSettings("MM_CONNECTION_DATABASETYPE_conSQL Perenelle")
    %>'
    CommandText='<%# "SELECT dbo.Users.UserEmail,
    dbo.Users.UserPassword FROM dbo.Users WHERE
    dbo.Users.UserEmail=@UserEmail AND
    dbo.Users.UserPassword=@UserPassword" %>'
    Expression='<%# IsPostBack %>'
    Debug="true"
    ><Parameters>
    <Parameter Name="@UserEmail" Value='<%#
    IIf((Request.Form("UserEmail") <> Nothing),
    Request.Form("UserEmail"), "") %>' Type="NVarChar" />
    <Parameter Name="@UserPassword" Value='<%#
    IIf((Request.Form("UserPassword") <> Nothing),
    Request.Form("UserPassword"), "") %>' Type="NVarChar" />
    </Parameters></MM:DataSet>
    <MM:PageBind runat="server" PostBackBind="true" />
    <script language="VB" runat="server">
    Protected Sub Page_Load(ByVal Src As Object, ByVal E As
    EventArgs)
    ' Don't cache this page.
    Response.Expires = -1
    Response.AddHeader("Pragma", "no-cache")
    Response.AddHeader("cache-control", "no-store")
    ' Check user credentials entered on the page
    If (UserEmail.Value =
    dsUsers.FieldValue("UserEmail",Nothing))
    &&(UserPassword.Value =
    dsUsers.FieldValue("UserPassword",Nothing)) Then
    ' The user has been authenticated.
    ' 1. Create the authentication ticket.
    ' 2. Redirect to the appropriate page.
    ' 1. Create the authentication ticket.
    ' Create and use the forms authentication ticket.
    FormsAuthenticationTicket ticket = New
    FormsAuthenticationTicket(1,
    Request.Form("UserEmail"),
    DateTime.Now, ' issue time
    DateTime.Now.AddMinutes(30), ' expires in 30 minutes
    False, ' not persistent
    Dim ' role assignment gets stored in the UserData As
    "Users")
    ' Create a new (encrypted) HttpCookie using the ticket just
    created
    ' and name it accordingly to the value specified in the
    <forms> element
    ' in the web.config file.
    Dim cookie As HttpCookie = New
    HttpCookie(FormsAuthentication.FormsCookieName,FormsAuthentication.Encrypt(ticket))
    ' Add the cookie to the outbound response.
    Response.Cookies.Add(cookie)
    ' Redirect as appropriate.
    Dim ReturnUrl As String
    If Request.QueryString("ReturnURL") Is Nothing Then
    ReturnUrl = "/client-area/index.aspx"
    Else
    ReturnUrl = Request.QueryString("ReturnURL")
    End If
    Response.Redirect(ReturnUrl)
    Else
    Msg.Text = "Invalid Credentials: Please try again"
    End If
    End Sub
    </script>

    Answered myself. JUst named the imput fields incorrectly.
    Couple of other problems also but sorted and now working
    fine...

  • Authorization error; unknown user name or incorrect password

    Hi,
    We are facing the issue logging into Integration Builder in PI system getting "Authorization error; unknown user name or incorrect password" for all the users.I able to login NWA in PI system.Please find the default trace details below.help us.
    #1.#5611B888D81000840000018F0284005E0004B97914AC4703#1329829595847#com.sap.engine.services.security.authentication.logonapplication#sap.com/com.sap.security.
    core.admin#com.sap.engine.services.security.authentication.logonapplication.doLogon#J2EE_GUEST#0##fxtcs.unix_FXT_336466250#Guest#e2057c775c8c11e1bb605611b888d
    810#SAPEngine_Application_Thread[impl:3]_49##0#0#Error##Java###doLogon failed
    [EXCEPTION]
    #1#com.sap.security.core.logon.imp.UMELoginException: USER_AUTH_FAILED
            at com.sap.security.core.logon.imp.SAPJ2EEAuthenticator.logon(SAPJ2EEAuthenticator.java:946)
            at com.sap.security.core.logonadmin.ServletAccessToLogic.logon(ServletAccessToLogic.java:208)
            at com.sap.security.core.sapmimp.logon.SAPMLogonLogic.doLogon(SAPMLogonLogic.java:914)
            at com.sap.security.core.sapmimp.logon.SAPMLogonLogic.uidPasswordLogon(SAPMLogonLogic.java:578)
            at com.sap.security.core.sapmimp.logon.SAPMLogonLogic.executeRequest(SAPMLogonLogic.java:158)
            at com.sap.security.core.sapmimp.logon.SAPMLogonServlet.doPost(SAPMLogonServlet.java:60)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(AccessController.java:219)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Regrads,
    Mani

    Hi,
    Check this for the roles required for integration builder [http://help.sap.com/SAPHELP_NW04S/helpdata/en/c4/51104159ecef23e10000000a155106/content.htm]
    Accordingly get the required role assigned to the user you are using there.
    Unlock the user if it is locked
    Reset the password and provide the new password in the login settings
    Give a try again
    Regards,
    Venkata S Pagolu
    Edited by: Venkata Pagolu on Feb 22, 2012 4:23 PM

  • Error: MDL1819: User Name OWB_OWNER does not exist in repository.

    Hi All,
    While doing OWB metadata export I got the following error.
    Error: MDL1819: User Name < BCP_OWB_OWNER> does not exist in repository.
    Actually daily I will take back up for metadata in OWB_OWNER project.
    But last 3 days onwards I am getting this error.
    Plese help me?
    I have nearly 50 mapping in this repository.
    Thanks in Advance.

    Hi!
    I know I'm late with this post, but I'll post it anyway for future reference!
    I encountered the same problem and found out that I had a trailing space in my login name, so check for any traling spaces at login to OWB-designer!
    (From the error message pasted in your question it seems you have a space in the beginning)
    That solved the problem for me.
    BR Par

  • When I update my nano ipod I get an error message "User ipod cannot be updated.  The disk couldnot be read from or written to."   How can I overcome this error message.

    In the iTunes window, when I update my nano ipod, I get an error message "User ipod cannot be updated.  The disk could not be read from or written to."   How can I overcome this error message.

    Hello there dilip77707,
    It sounds like you are getting this error message that your iPod cannot be read from or written to when you are trying to update your iPod Nano. I recommend the troubleshooting from the following article to help you get that resolved. Its pretty straight forward, just start at the top and work your way down as needed:
     'Disk cannot be read from or written to' when syncing iPod or 'Firmware update failure' error when updating or restoring iPod
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Error Message: User has no profile in this organization

    Error Message: "User has no profile in this organization."  
    Chrome browser.  Am downloading Mozilla in the meantime and will report after.
    Attempting to log into various TV subscription cable channels with a valid ID and password which ordinarily allows me to enter the on lne version of the cable channel, such as HBO and TNT and USA.     Works fine on Showtime.     Something is local to these channels, I suppose yet suggesting that something in the computer is blocking also.   Everything worked fine with my HP notebook, all subscription/ login required channels were accessble but this new computer actually refurbished but like new) an HP Elite sff 8000 seems to be blocking me from logging in.   Could it be the cable channels?   Also got a message that indicated something about "User repository".   Please sugget a detailed fix if there is one from this information. 
    HP Elite 8000 SFF, (Desktop) WIN 8.1 Professional, Intel Core 2 Quad 2.83GHz processor. Internal 750GB HDD. 8GB RAM memory. 3 external HDDs : 1TB primary external, 1.5TB backup external, special backup 250GB external (all externals for files, music, video). Please note: 750GB HDD for WIN OS and programs only. Backed up to an 80GB external Image Maker via WIN 7 system image maker. 1 DVDRW drive. 10 USB ports. Plus there are four extra USB via PCI card. 14 USB ports in all. 240 W power supply. Printers: LJ 1020, HP AIO 6480. 3 Monitors, 20" Acer; 22" Acer; 37" LG TV.
    ALSO:
    HP ENVY: 15 ENVY 15634 Laptop 8GB Memory 750GB Hard Drive Natural Silver
    And:
    HP DV6928us, (Notebook)
    AND:
    external 1.0TB HDD, 250GB external HDD, 1.5 TB external HDD,
    AND:
    HP LJ 1020,
    and:
    HP J 6480 AIO,
    Windows 7 Home Premium on Desktop, WIN8 on ENVY

    Did you have any luck with FireFox?
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • I get error message user\anja\app data.....

    error message: user\anja\app data\temp\glf8de5.tmp  please help

    If you simply check the domain WERT7, you'll see that the checkbox for "Sign" is <b>not</b> checked. Therefore negative numbers are <b>not</b> allowed.
    Just because a field is decimal or currency does <b>not</b> mean that negatives are allowed.
    Many times, the sign is handled by a separate debit/credit indicator field such as a field with a domain of SHKZG.
    Rob
    Message was edited by:
            Rob Burbank

  • Hi Trying to download CS5 Design Premium. We have a copy on the Mac and want to put a second copy on the Macbook pro. Can download the file but when it is clicked the file give an error message "User access denied" and dumps the download. So hence I do no

    Hi Trying to download CS5 Design Premium. We have a copy on the Mac and want to put a second copy on the Macbook pro. Can download the file but when it is clicked the file give an error message "User access denied" and dumps the download. So hence I do not get an installation screen or a chance to enter the Licence no.

    Use another browser.
    Mylenium

  • Error message: User has no profile definition

    Hello,
    When I try to run a custom transaction (related to SU assignment- program SAPLSHL2), I get an error message
    " User has no profile definition"
    Could you please explain what it means and how it could be corrected?
    The SU53 analysis shows authorization checks to be successful.
    Thanks in advance!

    you are getting error bcoz of the program below,
    Form  USER_OWN_DATA
    read data of active user into header line of lrf_wkqu
    FORM USER_OWN_DATA CHANGING LRF_WKQU LIKE LRF_WKQU.
      CALL FUNCTION 'L_USER_DATA_GET'
           EXPORTING
                I_UNAME        = SY-UNAME
           TABLES
                T_XUSER        = XUSER
           EXCEPTIONS
                NO_ENTRY_FOUND = 01.
      IF SY-SUBRC = 0.
        READ TABLE XUSER WITH KEY STATU = VER_ON.
        IF SY-SUBRC = 0.
          MOVE-CORRESPONDING XUSER TO LRF_WKQU.
        ELSE.
          MESSAGE E191 WITH SY-UNAME.
        ENDIF.
      ELSE.
        MESSAGE E192 WITH SY-UNAME.
      ENDIF.
    ENDFORM.                               " USER_OWN_DATA

  • One user unable to login to OWA - error :" The user name or password that you entered is not valid. Try entering it again." exchange 2007 SP3

    Hello Guys,
    exchange 2007 SP3
    windows 2008 r2 
    we have one user who unable to login to owa with error -"The user name or password that you entered is not valid. Try entering it again."
    we checked mailbox feature in EMC and owa is enable 
    checked adsiedit - looks good
    we checked allow inheritance - checked
    we reset the password and try to login to owa from exchange server , no luck
    user can login to her computer and outlook without any issue
    we also moved her mailbox to another server 
    user facing the same issue from office and VPN 
    any suggestion ?
    Thanks
    Sandip
    sandip

    Hello Lynn
    thanks for the reply. but I already checked that and allow inheritance already checked .
    when user unable to access webmail with error "The user name or password that you entered is not valid"
    will it generate any event id on exchange server or domain controller ?
    in our case we have mailbox and CAS on different servers 
    any suggestion .
    Regards 
    Sandip
    sandip

  • During sync, itoons error message "User's iphone cannot be synced. You do not have enough access priviledges for this operation." Never happened before, any ideas what to do?  Checked and new computer is authorized.  Greg

    During sync, itoons error message "User's iphone cannot be synced.  You do not have enought access proviliedges for this operation".  Never happened before, any ideas what to do?  Checked and new computer is authorized.  Greg

    I hope this helps.    Not the easiest fix, but I suspect it will solve the problem.
    http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_programs/itun es-privileges-error-with-windows-7/d616e06f-ecdd-4d34-8d7a-a9936a91ad6e

  • I am unable to open documents ending with .doc (rather than docx, which I can open). The error message states "[name of document]" is being used by "another user." Do you want to make a copy? Help!!!

    How can I open a Word document, when I receive this error message "[name of document]" is being used by "another user." Do you want to make a copy?
    (This only occurs on the documents I have saved as .doc; the ones saved as "docx" open for me. Help!

    Did you recently reinstall the OS then copy all your files back over? Do a Get info on one of the documents and see if your current UserName is listed and has Read & Write permissions. If not select the Documents folder and check that for Read & Write permissions for your UserName. If it doesn't have R & W permissions Add it so it does.

  • Windows Easy transfer , ERROR message when trying to copy settings to Win 8 PC

    I have a new hp-TouchSmart Envy 23. It has 2TB drive.
    I want to use Windows Easy Transfer to move all my settings and data from the Windows 7 machine to the new hp-TouchSmart (my older PC is hp desktop is model # m9177c and has Win 7 OS)  .
    I have used easy transfer many times and I am reasonably experienced user .
    I just cannot transfer my settings and data to my new PC. I have therefore copies all my data to the hp-TouchSmart . However I need to use Windows easy transfer to move all my settings. I have a very large number of settings , macros and much else that would take a very large amount of time to re-type.
    I get an ERROR message when I want to transfer my settings. It says I don’t have enough disk space. The file I want to transfer is only 10.5 GB (after I removed all my data). The new machine has 2TB and yet I keep getting this error.
    I have tried every possible way of transferring the settings , including : external drive; flash drive; direct wire ; easy transfer cable etc. I keep getting the same ERR message .
    I am sure Easy transfer must allow transfer from Win 7 to Win 8. BUT HOW? 
    PLEASE do help. I would really appreciate very much .
    THANK YOU
    Adam 

    This thread may be useful. 
    Windows Easy Transfer will transfer from one drive to the other to mirror the original drive.  What I suspect is happening is that the program is grabbing the D drive (recovery partition on most systems) and trying to transfer it to the new system which should also have a D drive.  If that is happening,t hen that error will be thrown.
    Try using the advanced options and view the report to see what exactly is happening and triggering the message.
    Let me know what happens. 
    The document in the thread is for a previous version of Windows, but you can search for Easy Transfer Reports from the Start screen in Windows 8.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

Maybe you are looking for

  • Sims 2 not working with QT 7.6. Will there be a fix?

    The Sims 2 is not working with QT 7.6. The Sims 2 (Aspyr) web site acknowledges this problem and state they are working with Apple to fix this. This game is not cheap so rather disappointed at the moment. Anybody know if this fix will really happen?

  • IBook G4 Display Removal

    I recently bought a 2005 iBook G4 running Tiger. The display on the iBook was not working when I purchased it and I thought I could either replace the inverter or display and make a quick buck, however it is apparently a mainboard problem instead.  I

  • UPgraging from 4.6c to Ecc 5.0

    Hi, Please let me know what are the precautions to be taken while upgrading from 4.6c to ECC 5.0, and what are the issues will arise? Please let me know. Thanks, Pavan.

  • Troubles downloading my adobe photoshop elements 11 and adobe premiere elements 11 for mac os

    no dvd drive trying to download my adobe photoshop elements 11 and adobe premiere elements 11 for mac os

  • Unknown problem installing itunes please help

    Hey, im trying to install itunes on a computer and i keep getting the following error "itunes installer completed, the installer has encountered errors before itunes could be configured. to retry these operations at a later time, please run the insta