E-mails to my inbox (received)

I have set up my e-mail account on my Mac (latest software - Yosmite) using the default e-mail software.
I have various e-mail accounts - two of them google accounts.
I have one address enabled and on address disabled.
When sending a new message, the default address is used but when the other person respond (reply) the message goes to the disabled account.
Why and how do I fix it?
Anybody having the same situation and has a fix?

cbrittweber1 wrote:
I closed the email app, then reset the phone.  Nothing changed - problem still persists.  In my folders where I store e-mail after I've read them in Exchange, those folders show e-mails from today and yesterday back 30 days.  It's just the Inbox that seems to be the problem.
Remove the account and then re add it.

Similar Messages

  • This is regarding CBMA in SAP PI 7.3.1. I have set up the alert mail using default java mail client.I do receive the alerts via mail. But my requirement is to direct all the mails to Business workplace inbox in ECC.

    This is regarding CBMA in single stack SAP PI 7.3.1. I have set up the alert mail using default java mail client.I do receive the alerts via mail. But my requirement is to direct all the alert mails to Business workplace inbox in ECC.
    So I need to set up PI to redirect mails to ECC Business workplace user inbox (sbwp). From here rules are set up & routed per distribution list.
    Please guide me how I can achieve this requirement.

    Hi,
    yes, it is a little bit different. This is the issue.....  
    But I am not sure if your links will help:
    1) /people/william.li/blog/2008/02/13/sap-pi-71-mapping-enhancements-series-using-graphical-variable
    is about a different solution. I do not need to count the number of lines of the source message.
    And the second variable is about concat line by line from unbound node to unbound node.
    My issue is:
    Souce:
    Message line (0...unbound) ! ! ! ! ! ! ! !
    .    ResultLine   (1..1)
    Mapping:
    =>   ResultLine1
           ResultLine2
           ResultLine........          => into UDF to an element  (1..1) in one mapping operation.
    So that all "ResultLine"s are included.
    The result is explained in the given link for Mail attachment with UDF.
    So I am not sure how to use this thread for my issue.
    In the comments of that blog Christoph Gerber writes that the new variable feature can only handle single values.
    So it is not suitable for my purposes as I have a list of values here that needs to be moved into the target message field.
    2) http://wiki.sdn.sap.com/wiki/display/Java/UsingEditJavaSectioninMessageMapping
    shows where to find the button "Java section" which is not available here in 7.1
    3) /people/sap.user72/blog/2005/10/01/xi-new-features-in-sp14
    too is about the nice little button for Java Section that is no longer existing on PI 7.1 screen for mappings.  
    So my issue is: How to replace the Java section function with global variables in PI 7.1?
    Best regards
    Dirk

  • Mail issue: received mail is being replaced by older mail from my inbox

    Some of my inbox received mail content is being replaced by older mail from my inbox.  Since I receive mail from my gmail account, I have to go there to check the mail which is not replaced.  An ideas/suggestions?

    Did it work correctly before now?
    Not certain, but this can fix myriad Mail problems...
    Safe Boot from the HD, (holding Shift key down at bootup),  it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move this folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.
    If that doesn't do it and you can afford to redo all your Rules, try these & reboot...
    /Users/YourUserName/Library/Mail/MessageRules.plist
    /Users/YourUserName/Library/Mail/MessageRules.plist.backup
    Note, in 10.5 & up /Users/YourUserName/Library/Caches/Mail/ may or may not exist.
    In Mail's Window Menu, choose Connection Doctor, any red dots for status, if so what is the message?
    Then click the Show Details button & Check again.

  • How can I set up a rule to delete all messages older than 6 months left in Apple Mail's main inbox?

    How can I set up a rule to delete all messages older than 6 months left in Apple Mail's main inbox?
    I have created other rules to move some of my daily messages into specific folders and I don't wish to auto-delete those.
    Just the general stuff that keeps piling up in my me.com main email box.  Mail such as FB announcements and other low priority stuff I want to look at before deleting but don't want to keep longer than a week or month.
    TIA
    thokitts

    Thanks, but I am looking for a more automated solution than hand marking emails as junk. I might as well move them to the trash myself.
    Again, these are emails I want to receive and quickly read, but not keep longer than a week or month or so. By setting a rule to toss any older than 30 days back then my Mail program (and thus my hard drive) won't be wasting so much space. For example, currently I have over 6000 read messages, with their attachments, in my main email box. I'd rather not have to physically attend to sorting the one I don't want out.
    The one I do keep for other reasons get moved into other folders.
    It seems this should be possible.
    thokitts

  • Sending a Mail to SAP inbox

    Hi all,
        I am using the following code to send the mail to SAP inbox,
      DATA : it_reclist TYPE TABLE OF somlreci1,
             wa_reclist TYPE somlreci1.
      DATA : wa_docdata TYPE sodocchgi1.
      DATA : it_message TYPE TABLE OF solisti1,
             wa_message TYPE solisti1,
             it_attach  TYPE TABLE OF sopcklsti1.
      LOOP AT it_super_uid INTO wa_super_uid.
        wa_reclist-receiver = wa_super_uid-usid.
        wa_reclist-rec_type = 'B'.
        APPEND wa_reclist TO it_reclist.
      ENDLOOP.
      wa_docdata-obj_langu  = sy-langu.
      wa_docdata-obj_name   = text-005.
      wa_docdata-obj_descr  = text-006.
      wa_docdata-sensitivty = 'F'.
      wa_message-line = text-007.
      APPEND wa_message TO it_message.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = wa_docdata
          put_in_outbox                    = 'X'
        COMMIT_WORK                      = ' '
        IMPORTING
        SENT_TO_ALL                      =
        NEW_OBJECT_ID                    =
        TABLES
          packing_list                     = it_attach
        OBJECT_HEADER                    =
        CONTENTS_BIN                     =
        CONTENTS_TXT                     =
        CONTENTS_HEX                     =
        OBJECT_PARA                      =
        OBJECT_PARB                      =
          receivers                        = it_reclist
        EXCEPTIONS
          too_many_receivers               = 1
          document_not_sent                = 2
          document_type_not_exist          = 3
          operation_no_authorization       = 4
          parameter_error                  = 5
          x_error                          = 6
          enqueue_error                    = 7
          OTHERS                           = 8.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF sy-subrc = 0.
        MESSAGE text-008 TYPE 'S'.
      ENDIF.
    Still i am not able to send the mail , its giving me exception 5. Please let me know how could i modify the code.
    Thanx,
    Girish.

    HI,
    The code below demonstrates how to send an SAP mail to a users inbox (SBWP)
    : Report  ZSAPTALK                                                   :
    : Author  SAPdev.co.uk                                               :
    : Description :                                                      :
    : Send mail message to SAP mail inbox.                               :
    :                     Please visit www.sapdev.co.uk for further info :
    REPORT ZSAPMAIL NO STANDARD PAGE HEADING.
    TABLES: DRAD,
            QINF,
            DRAW,
            SOUC,
            SOFD,
            DRAP.
    DATA: P_RETURN_CODE LIKE SY-SUBRC.
    data: d_username LIKE DRAP-PRNAM.
    mail declarations
    DATA : BEGIN OF NEW_OBJECT_ID.         " the newly created email object
            INCLUDE STRUCTURE SOODK.
    DATA : END OF NEW_OBJECT_ID.
    DATA : BEGIN OF FOLDER_ID.             " the folder id of the outbox
            INCLUDE STRUCTURE SOODK.
    DATA : END OF FOLDER_ID.
    DATA : BEGIN OF REC_TAB OCCURS 5.     " the table which will contain the
            INCLUDE STRUCTURE SOOS1.       " information on the destination
    DATA : END OF REC_TAB.
    DATA : BEGIN OF OBJECT_HD_CHANGE.      " the table which contains the
            INCLUDE STRUCTURE SOOD1.       " info for the object we will be
    DATA : END OF OBJECT_HD_CHANGE.        " creating
    DATA : OBJECT_TYPE LIKE SOOD-OBJTP.    " the type of object
    DATA : BEGIN OF OBJHEAD OCCURS 5.      " the header of the object
            INCLUDE STRUCTURE SOLI.
    DATA : END OF OBJHEAD.
    DATA : BEGIN OF OBJCONT OCCURS 0.      " the contents of the object
            INCLUDE STRUCTURE SOLI.        " i.e. the text etc
    DATA : END OF OBJCONT.
    DATA : BEGIN OF OBJPARA OCCURS 5.      " formatting options
            INCLUDE STRUCTURE SELC.
    DATA : END OF OBJPARA.
    DATA : BEGIN OF OBJPARB OCCURS 5.      " formatting options
            INCLUDE STRUCTURE SOOP1.
    DATA : END OF OBJPARB.
    DATA : BEGIN OF T_MAIL_TEXT OCCURS 0,  "Message table for messages to
            STRING(255),                   "user via mailbox
           END OF T_MAIL_TEXT.
    Parameter: p_uname like sy-uname.
    **START-OF-SELECTION
    START-OF-SELECTION.
        d_username = p_uname.
        PERFORM POPULATE_EMAIL_TEXT.
        PERFORM SETUP_TRX_AND_RTX_MAILBOXES USING P_RETURN_CODE.
        PERFORM CREATE_AND_SEND_MAIL_OBJECT.
          FORM POPULATE_EMAIL_TEXT                                      *
          Inserts text for email message                                *
    FORM POPULATE_EMAIL_TEXT.
      CLEAR T_MAIL_TEXT-STRING.            "puts a blank line in
      APPEND T_MAIL_TEXT.
      APPEND T_MAIL_TEXT.
    adds failed list  on to end of success list.
      T_MAIL_TEXT-STRING = 'Test email message line 1'.
      APPEND T_MAIL_TEXT.
      T_MAIL_TEXT-STRING = 'Test email message line 1'.
      APPEND T_MAIL_TEXT.
      CLEAR T_MAIL_TEXT-STRING.            "puts a blank line in
      APPEND T_MAIL_TEXT.
      T_MAIL_TEXT-STRING = 'Header1    Header2    Header3'.
      APPEND T_MAIL_TEXT.
      T_MAIL_TEXT-STRING = '----
      APPEND T_MAIL_TEXT.
    ENDFORM.
    *&      Form  SETUP_TRX_&_RTX_MAILBOXES
      Ensure that the mailboxes of the sender (INTMGR) are set up OK
    FORM SETUP_TRX_AND_RTX_MAILBOXES USING P_RETURN_CODE.
    get the user no of the sender in order to add the mail to the
    user name's outbox for future reference
      SELECT SINGLE * FROM SOUC
               WHERE SAPNAM = SY-UNAME.    "SAP name of a SAPoffice user
      IF SY-SUBRC NE 0.
        "Error finding the SAPoffice user info for the user
        MESSAGE E064(ZR53) WITH SY-UNAME.
        P_RETURN_CODE = 1.
        EXIT.
      ENDIF.
    *Get the outbox No for the sender from the user No where the folder
                                           " type is an outbox
      SELECT * FROM SOFD WHERE OWNTP = SOUC-USRTP   "Owner type from ID
                           AND OWNYR = SOUC-USRYR   "Owner year from the ID
                           AND OWNNO = SOUC-USRNO   "Owner number from the I
                           AND FOLRG = 'O'."Output box
      ENDSELECT.
      IF SY-SUBRC NE 0.
        " Error getting folder information for the user
        MESSAGE E065(ZR53) WITH SY-UNAME.
        P_RETURN_CODE = 1.
        EXIT.
      ENDIF.
    ENDFORM.                               " SETUP_TRX_&_RTX_MAILBOXES
    *&      Form  CREATE_AND_SEND_MAIL_OBJECT
    FORM CREATE_AND_SEND_MAIL_OBJECT.
      FOLDER_ID-OBJTP = SOFD-FOLTP.        " the folder type ( usually FOL )
      FOLDER_ID-OBJYR = SOFD-FOLYR.        " the folder year ( usually 22 )
      FOLDER_ID-OBJNO = SOFD-FOLNO.        " the folder no.
      OBJECT_TYPE     = 'RAW'.             " the type of object being added
    build up the object information for creating the object
      OBJECT_HD_CHANGE-OBJLA  = SY-LANGU.  " the language of the email
      OBJECT_HD_CHANGE-OBJNAM = 'PS to DM Interface'. " the object name
    mail subject 'Mass Linking of QA, pass/fail'
      MOVE TEXT-002 TO OBJECT_HD_CHANGE-OBJDES.
      OBJECT_HD_CHANGE-DLDAT = SY-DATUM.   " the date of the email
      OBJECT_HD_CHANGE-DLTIM = SY-UZEIT.   " the time of the email
      OBJECT_HD_CHANGE-OBJPRI = '1'.       " the priority ( highest )
      OBJECT_HD_CHANGE-OBJSNS = 'F'.       " the object sensitivity
    F is functional, C - company sensitive
    object_hd_change-skips  = ' '.       " Skip first screen
    object_hd_change-acnam  = 'SM35'.    " Batch imput transaction
    object_hd_change-vmtyp  = 'T'.       " Transaction type
    add the text lines into the contents of the email
      CLEAR OBJCONT.
      REFRESH OBJCONT.
    free objcont.      " added this to delete the mail contents records
      LOOP AT T_MAIL_TEXT.
        OBJCONT-LINE = T_MAIL_TEXT-STRING.
        APPEND OBJCONT.
      ENDLOOP.
      CLEAR OBJCONT.
    build up the table of receivers for the email
      REC_TAB-RCDAT = SY-DATUM.            " the date to send the email
      REC_TAB-RCTIM = SY-UZEIT.            " the time to send the email
    the SAP username of the person who will receive the email
      REC_TAB-RECNAM = D_USERNAME.
    the user type of the person who will send the email ( USR )
      REC_TAB-SNDTP = SOUC-USRTP.
    the user year of the person who will send the email ( 22 )
      REC_TAB-SNDYR = SOUC-USRYR.
    the user number of the person who will send the email
      REC_TAB-SNDNO = SOUC-USRNO.
    the sap username of the person who will send the email
      REC_TAB-SNDNAM = SY-UNAME.
    get the user info for the receiver of the document
      SELECT SINGLE * FROM SOUC WHERE SAPNAM = D_USERNAME.
      IF SY-SUBRC NE 0.
        WRITE : / TEXT-001, D_USERNAME.    "usnam.
        EXIT.
      ENDIF.
    the user number of the person who will receive the email ( USR )
      REC_TAB-RECNO = SOUC-USRNO.
    the user type of the person who will receive the email ( USR )
      REC_TAB-RECTP = SOUC-USRTP.
    the user year of the person who will receive the email ( USR )
      REC_TAB-RECYR = SOUC-USRYR.
    the priority of the email ( highest )
      REC_TAB-SNDPRI = '1'.
    check for delivery on the email
      REC_TAB-DELIVER = 'X'.
    send express so recipient knows there is a problem
      REC_TAB-SNDEX = 'X'.
    check for a return receipt
      REC_TAB-READ = 'X'.
    the sap username of the person receiving the email
      REC_TAB-ADR_NAME = D_USERNAME.       "usnam.
    add this receiver to the internal table
      APPEND REC_TAB.
      CLEAR REC_TAB.
    call the function to create the object in the outbox of the sender
      CALL FUNCTION 'SO_OBJECT_INSERT'
           EXPORTING
                FOLDER_ID                  = FOLDER_ID
                OBJECT_HD_CHANGE           = OBJECT_HD_CHANGE
                OBJECT_TYPE                = OBJECT_TYPE
                OWNER                      = SY-UNAME
           IMPORTING
                OBJECT_ID                  = NEW_OBJECT_ID
           TABLES
                OBJCONT                    = OBJCONT
                OBJHEAD                    = OBJHEAD
                OBJPARA                    = OBJPARA
                OBJPARB                    = OBJPARB
           EXCEPTIONS
                ACTIVE_USER_NOT_EXIST      = 1
                COMMUNICATION_FAILURE      = 2
                COMPONENT_NOT_AVAILABLE    = 3
                DL_NAME_EXIST              = 4
                FOLDER_NOT_EXIST           = 5
                FOLDER_NO_AUTHORIZATION    = 6
                OBJECT_TYPE_NOT_EXIST      = 7
                OPERATION_NO_AUTHORIZATION = 8
                OWNER_NOT_EXIST            = 9
                PARAMETER_ERROR            = 10
                SUBSTITUTE_NOT_ACTIVE      = 11
                SUBSTITUTE_NOT_DEFINED     = 12
                SYSTEM_FAILURE             = 13
                X_ERROR                    = 14
                OTHERS                     = 15.
      IF SY-SUBRC NE 0.
        MESSAGE A063(ZR53) WITH SY-SUBRC.
        EXIT.
      ENDIF.
    call the function to send the already created email to the receivers
      CALL FUNCTION 'SO_OBJECT_SEND'
           EXPORTING
                FOLDER_ID                  = FOLDER_ID
                OBJECT_ID                  = NEW_OBJECT_ID
                OUTBOX_FLAG                = 'X'
                OWNER                      = SY-UNAME
           TABLES
                RECEIVERS                  = REC_TAB
           EXCEPTIONS
                ACTIVE_USER_NOT_EXIST      = 1
                COMMUNICATION_FAILURE      = 2
                COMPONENT_NOT_AVAILABLE    = 3
                FOLDER_NOT_EXIST           = 4
                FOLDER_NO_AUTHORIZATION    = 5
                FORWARDER_NOT_EXIST        = 6
                NOTE_NOT_EXIST             = 7
                OBJECT_NOT_EXIST           = 8
                OBJECT_NOT_SENT            = 9
                OBJECT_NO_AUTHORIZATION    = 10
                OBJECT_TYPE_NOT_EXIST      = 11
                OPERATION_NO_AUTHORIZATION = 12
                OWNER_NOT_EXIST            = 13
                PARAMETER_ERROR            = 14
                SUBSTITUTE_NOT_ACTIVE      = 15
                SUBSTITUTE_NOT_DEFINED     = 16
                SYSTEM_FAILURE             = 17
                TOO_MUCH_RECEIVERS         = 18
                USER_NOT_EXIST             = 19
                X_ERROR                    = 20
                OTHERS                     = 21.
      IF SY-SUBRC EQ 0.
        MESSAGE I035(ZR53) WITH NEW_OBJECT_ID D_USERNAME. "usnam.
      ELSE.
        MESSAGE I036(ZR53) WITH D_USERNAME."      sy-subrc.
      ENDIF.
    ENDFORM.                               " CREATE_AND_SEND_MAIL_OBJECT
    Hope this helps.
    Reward if helpful.
    Regards,
    Sipra

  • When PO workflow is triggered i get the following mail to my inbox

    Hi Experts,
                     When PO workflow is triggered i get the following mail to my inbox
    Error processing following event linkage:
    BUS2012 RELEASESTEPCREATED WS90000001
    Following error occurred:
    SWF_RUN 594
    Message text:
    Import container contains errors (are any obligatory elements missing?)
    Event container appended as attachment.
    Event linkage not changed.
    Event stored temporarily.
    Events can be redelivered via event queue
    administration (transaction SWEQADM).
    Please suggest me how to correct this error.
    Regards,
    Dheepak

    Hi,
    This happen when the release code value is not passing in to the Event Container.
    Check the event Binding, Re-generate, Save & activate it.
    See this [Thread|workflow inbox level  given  message Error in event receiver .;.
    Regards,
    Surjith

  • Reproducible bug in mail deleting IMAP INBOX messages

    I have just installed Lion on my Mac Pro and am having problems with the Mail App.
    I have been running my own mail server for the last eight years on a Linux box, Postfix, with IMAP on top. This has been reliable and pretty foolproof. It supports most of my family and has been running happily with Thunderbird (all versions), most Linux mail clients and all Apple Mail versions upto (but not including Lion Mail), two iPad's and my iPhone.
    Nothing has changed on the mail server for the last few months.
    After installing Lion, I configured mail to connect to the mail server as normal using IMAP. No difference in configuration to any other install.
    Mail downloads all my folders as per normal and then downloads my INBOX. I run my INBOX with mail going back to the begining of the year so circa 1,200 messages.
    Next thing is my INBOX is now empty, I haven't asked the Lion Mail app to delete the mail but it has. Odd.
    I have a backup of the current mail and load that back in. Start up mail again in Lion and a couple of minutes later, deleted. Nothing in the trash folder, no warning at all.
    I search the internet and finds this thread https://discussions.apple.com/thread/3206902?start=0&tstart=0 which seems similar to my problem. I clear all my mail preferences out, I remove all the directories from the~/Library, restart Lion mail, re-enter my  and guess what, same behavior as before. I can copy mail into the INBOX and it's deleted, I can receive mail and it's deleted. No warning.
    No rules are set up to delete any mail, I have no spam filter installed on Lion, I can sit and watch it just disappear. This problem does not occur on previous versions of Apple mail, e.g. Snow Leopard.
    I have moved to Thunderbird for the moment to get around the problem.
    Anybody else having the same problem?

    OK, I now appear to have the problem.
    I installed OS X Server on my Mac Pro some weeks ago. One change I made was to setup the Calender Server to prepare for a move from my separate Snow Leopard Server. As part of setting the Calendar Server up it requires an e-mail address. This was set last last week.
    It now appears that the Calendar Server pulls all e-mail from the e-mail address provided on the mail server, this is different (or it appears to be different) to the behaviour from Snow Leopard Server. The configuration for each is very different from the interfaces.
    After turning off the Calender Server, it looks as if the mail is now staying on the server.

  • Problem-Solution: Help! Whenever I Archive a read e-mail from my Inbox, it shows up in Archive as Unread.

    Problem: Help! Whenever I Archive an already read e-mail from my Inbox, it shows up in Archive as Unread.
    Solution:
    Open Mail.app >
    If your vertial mailbox list on the right is already showing, then skip the next step.
    Click [View] then [Show Mailbox List] >
    Delete the Smart Mailbox "Today" from the list. >
    Quit Mail, then re-open it.
    Why is this happening?
    I've seen this since Mavericks 10.9 launched but it's likely to have existed earlier than this. My conjectural opinion is that using a Smart Mailbox like "Today" (turned on by default) seem to exacerbate this behavior. I've noticed it happens a lot more often than not with a Gmail account as well, even running 10.9.1.

    Update to above question:
    Hello All,
    To anyone with the same problem described above, on THEIR iPad (if it is running iOS 7.0.2):
    Go to Settings; Mail, Contacts, Calendars; DELETE your *******@btinternet.com e-mail account, that you originally set up either using 'Other', or the 'BT' option which I am sure was in the list previous to the iOS 7 update.
    Then ADD a NEW account choosing YAHOO from the list of options. DO NOT USE 'OTHER'.
    Enter the correct details just as you (almost certainly) had already done in your previous attempts using 'other'.
    When you see the 'verifying......' and 'the blue ticks' you should be able to exit settings and open your mail app and then receive all your 'old' e-mails again, AND be able to SEND as well.
    All my 'old' e-mails, were NOT found in the 'old e-mail' folder though. THEY are still in my inbox.
    So this fix worked for me.
    After I deleted my account from 'OTHER' and put it in Yahoo, I like other people also ended up with more folders.
    I hope this works for you on YOUR Apple devices.
    Bob

  • An e-mail is not being received

    I have tried to figure this one out for about an hour. My banker has been trying to send me an e-mail and I am not receiving it. I have been receiving all of my other e-mails and the banker has been able to send the same e-mail to others successfully.
    My first thought since I was receiving all of my e-mails except for this one is that it is a problem with the sender, but since they have not had any problems either I'm clueless to where the problem is coming from. Any information would be very much appreciated.

    Double check you are sorting the e-mail in the inbox so you can see the most recent e-mail, and that you checked your most recent e-mail, and any message that might have arrived at the same time as your banker's e-mail is in plain view when sorted by time.
    If you are filtering spam, check your spam mailbox.
    If you are not filtering spam, it is possible your internet service provider has setup a realtime blackhole for that address, and needs to stop doing that.
    http://en.wikipedia.org/wiki/RealtimeBlackholeList
    These are really insideous problems, because someone can spoof an address, and make it appear to certain internet providers the sender is a spammer, when in reality they are not.

  • Hello everybody, I have the following problem: my apple id was desabled for security reason and I have to reset my password to enable the account again, but when I try to do this, using the e-mail, I've never received such e-mail. When I chose to do

    Hello everybody, I have the following problem: my apple id was desabled for security reason and I have to reset my password to enable the account again, but when I try to do this, using the e-mail, I've never received such e-mail. When I chose to do this by the security answers, it's not work again, because does not accept my birth date. Can you please somebody help with this issue? Thanks in advance

    If you have a rescue email address on your account then you've checked the inbox and spam folder on that account as well, and you've tried requesting the email again ? If you still can't find it then try contacting Support in your country and see if they can reset it for you.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699

  • Upgraded to Firefox 4 now can not access my inbox in email. Error message say I have undefined new mails in the inbox

    Downloaded update toi mFirewfox 4. ISP is Talktalk. Can open My mail and get to screen with inbox but page seems to stopp loading then as it doesa not show amount of space being used etc which it normally does. Instead message says 'You have undefined new mails in your inbox' Nothing then happens and the button to open the inbox does not work. Can however access my email and inbox through Outlook express. Contacted TalkTalk help line and after running some checks was told that the problem is with the browser. Canb anyone help solve this please.

    Me too, problem is being googled alot by other tiscali users also.

  • My e-mail automatically deletes read e-mail in my inbox every 14 days without my permission. How do I get this to stop?

    I switched e-mail clients from windows live to thunderbird in mid december to alleviate problems in sending group e-mail. I have thunderbird on a different laptop and the product works flawlessly. The client works flawlessly with one exception: It automatically deletes any read e-mail in my inbox every 14 days without any input from me. I have had ITOK & Hughes.net look at the problem as I am using my inbox as a staging area for for pending business that tracks progress of different events. I have checked settings and there are no evident features that I can switch on or off with that time frame. This has occurred 3 times since December and I have resorted to printing e-mails to prevent loss of data.
    The desktop uses windows 7, IMAP for incoming mail...

    Log into your account at the providers web mail page and look for any retention options that might be there. Do not put too much into what their help desk tells you. Most help desk agents are lucky to know that the ringing sound means to answer the phone.

  • How do I keep new e-mails in my Inbox after I've opened them?

    When I close a new e-mail in my inbox after I've opened it to read it, it disappears into my old mail box. This does not happen with Internet Explorer. How do I keep an e-mail in my inbox after I've opened it?

    Always keep an eye on 'More like this', the column to the right of your initial post.    You will often find answers and direct leads to your questions there.
    >>>>>>>>>
    In this case all five options show they are related, and within those are other links.

  • Can't get into talk talk email account in Mozilla, you have undefined new mails in your inbox message. No problem with Internet Explorer though

    I've been using the Firefox browser for nearly a year now but for the past three days I can't open my tiscali email account via Firefox. The message "you have undefined new mails in your inbox" comes up. Talk Talk technical help says there is a problem with Firefox and advised me to use Internet Explorer. I can get into my account through Explorer but would much prefer to use Firefox so please help me out.

    Apparently TalkTalk mail will work with Firefox 4 and Firefox 5 ''if'' you set the browser to ''lie'' to TalkTalk mail by saying that you are still using version 3.6.
    You can find the instructions for that in a post on the TalkTalk forums: [http://www.talktalk.co.uk/forums/showthread.php?t=185113#post2452787 Firefox 4 & TalkTalk webmail - Forums].
    Note: when you open about:config the first time, it will display a warning message that you should be careful with the changes you make. That's definitely good to bear in mind.
    Does it work?

  • Lost all my mail in my inbox +my mail account

    lost all my mail in my inbox +my mail account settings except @mac.com after a crash of my system.
    When I rebooted my mac, a pop-up from mail was telling me that it had created a new folder called "distributed" in replacement of the usual "sent items" folder. This last folder is still there but is empty.
    Can I somehow recuperate the settings as it was before the crash?

    Hi Jake, and a warm welcome to the forums!
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then 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, reboot when it completes.
    After we're sure those things are OK, we can go further.

Maybe you are looking for

  • FF 29.0.1 bug - filled-out-forms

    Hi, ever since I started using Firefox, I'd often have tabs already-open with already-filled-out-forms that would, every single day without fail, have my data retained (I'd fill out the form, hit the Back button, and the data would still be seen in t

  • Business Objects Authorization

    Hi Gurus, We are planning to implement Business Objects XI in 2 of our projects. In one of our projects data is stored in SAP BW cubes and in the other project we have data stored directly in SQL. I have tried to investigate in detail for authorizati

  • The path of learning; where next

    Just a broad question. I'm slowly making my way through Head First Java (Sierra, Bates). Good book for fundamentals. I've also read a majority of Thinking in Java (Bruce Eckel). Yes, its all self-study with no formal classes. So where do I go next. S

  • BP Internal Reconciliation through SDK

    Hello All: IS there any object / service that open for Business Partner Internal Reconciliation? I couldn't find it. We are looking for 8.8.1 PL 08. Any help will be greatly appreciated! Thank You

  • Help to open photoshop after download?

    I have downloaded photoshop, CS6 and am trying to open, but the icon WILL NOT open when i click it, please help me with opening this..does something need to be open for photoshop to work, please help me!!