TS3988 Friends are reporting that some emails to me are bouncing back to them.  What might be wrong?

Friends are reporting that some emails to me are bouncing back.  It is multiple folks with different email systems.  I do still receive most emails (I think!)  and there does not seem to be anything unique about the ones bouncing back to distinguish them from the ones that come through.  They are not large, they don't have big attachments.  What could be wrong?

Are you running low on storage in your icloud account?
On an iOS device, go to Settings>General>Usage to see how much "Storage" you have available on the device.  Farther down the list is the available storage on iCloud.
On a mac, System Preference>iCloud.  Look at the bar graph to see how much space you have used.
Also, the bounced back emails should include some error statements as to what the problem is.  Can your friends report that to you?

Similar Messages

  • HT1819 I noticed that some of my podcast are missing from the iTunes store. What is the cause of that?

    I noticed that some of my podcast are missing from the iTunes store. What is the cause of that?

    That suggests that the tracks are damaged.
    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the dodgy tracks and try redownloading fresh copies. For instructions, see the following document:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.

  • Can UCCX 10 / CUIC Provide Historical Reports That Include Email Content?

    Hi,
    Can UCCX 10 / CUIC provide historical reports that include email content?
    Currently I can only see email subject within historical reports, but on supervisor real time you can see email content.
    Our customer wants to be able to report historically on email content, as its used for reviews etc.
    Thanks in advance.
    Mike.

    Hi
    Having looked at the DB schema I see that only the to/from/subject fields are logged in the database. That's all the would be available to CUIC.
    (http://www.cisco.com/c/dam/en/us/td/docs/voice_ip_comm/cust_contact/contact_center/crs/express_10_5/reference/guide/dbschema.pdf?mdfid=286265496)
    That's not to say it's completely impossible - but it would be very complicated. You'd need to somehow extrac the content of the emails on the Exchange server into a database where it could be read in to CUIC. That could be very difficult, take up lots of space...
    Aaron

  • Some emails I send are arriving with attachments but with no text in the body of the message. In the sent box my emails look OK. So it took me a while to know this was happening.

    I have an Apple Mac OS X Yosemite 10.10.3 with a 2.7 GHZ Intel Core 15 Processor. 8GB Memory.
    Just discovered that some emails I have sent with attachments have arrived with the attachments OK but my message has disappeared from the email. In the Sent box, the email looks OK with message intact. Has anyone else experienced this? No idea what to do.

    This is the Mac Pro desktop forum.
    In the received message does the subject appear correctly?
    Is just the body message field blank?
    What app is the recipient using?
    Can they try another pp?
    Is there anything strange in the body? Like special characters?

  • Hi all   report that sends email shows popup window needs to be supressed

    hi all
    i have developed a report that sends email as an attachement, but this report pops up a window in the end ( it says 'no of objext sent') and there i have to press enter, but my report is running in the background (scheduled report) and therefore there should be no pop ups in the report.
    question is how to avoid popup window in the following program.
    below is my code
    just enter your email id in the code and it will run anywhere.
    TABLES: ekko.
    *PARAMETERS: p_email   TYPE somlreci1-receiver
                                     DEFAULT '[email protected]'.
    TYPES: BEGIN OF t_ekpo,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
          wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
      ebeln(10) TYPE c,
      ebelp(5)  TYPE c,
      aedat(8)  TYPE c,
      matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA:   it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
            t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            w_cnt TYPE i,
            w_sent_all(1) TYPE c,
            w_doc_data LIKE sodocchgi1,
            gd_error    TYPE sy-subrc,
            gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
      Retrieve sample data from table ekpo
      PERFORM data_retrieval.
      Populate table with detaisl to be entered into .xls file
      PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    Populate message body text
      perform populate_email_message_body.
    Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   tables it_message
                                          it_attach
                                    using         " p_email
                                        'Example .xls documnet attachment'
                                          'XLS'
                                          'filename'
                                 changing gd_error
                                          gd_reciever.
      Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM initiate_mail_execute_program.
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp aedat matnr
       UP TO 1 ROWS
        FROM ekpo
        INTO TABLE it_ekpo.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  BUILD_XLS_DATA_TABLE
          Build data table for .xls document
    FORM build_xls_data_table.
    CONSTANTS: con_cret TYPE x VALUE '0D',  "OK for non Unicode
                con_tab TYPE x VALUE '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    class cl_abap_char_utilities definition load.
    constants:
        con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
        con_cret type c value cl_abap_char_utilities=>CR_LF.
      CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
             INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
      LOOP AT it_ekpo INTO wa_charekpo.
        CONCATENATE wa_charekpo-ebeln wa_charekpo-ebelp
                    wa_charekpo-aedat wa_charekpo-matnr
               INTO it_attach SEPARATED BY con_tab.
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND  it_attach.
      ENDLOOP.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          Send email
    FORM send_file_as_email_attachment tables pit_message
                                              pit_attach
                                        using                  "p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver value '[email protected]',
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
    ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = pit_attach[].
    Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           IMPORTING
                sent_to_all                = w_sent_all
           TABLES
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           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.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                    WITH output = 'X'.
                   AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
           Populate message body text
    form populate_email_message_body.
      REFRESH it_message.
      it_message = 'Please find attached a list test ekpo records'.
      APPEND it_message.
    thanx
    rocky

    hi rocky,
    pls comment the submit program form INITIATE_MAIL_EXECUTE_PROGRAM by default the email runs in background and there is no need to submit 'rsconn01'  it again to  that program where u actually get the pop-up...
    try it
    hope this helps
    regards,
    karthik

  • Since upgrading to ios5 doesnt play music from my playlists allthough songs are installed, and some of the applications are crashing

    since upgrading to ios5 on my iphone4 does not play music (ipod) from my playlists allthough songs are installed, and some of the applications are crashing

    Okay, mine now works here is what I did.
    plug in the iPhone, iPad etc
    in iTunes select the phone or iPad
    Under Summary uncheck "Sync with this....."
    Under "Music" uncheck the "Sync Music"
    Let it remove all the songs, dont worry it will come back no problems.
    Once that is all done all the music on the phone or ipad should be gone.
    Now check them both back on and everything should copy back onto it.
    Working now !!!!!

  • Some AR Invoice status are Closed but some AR invoice status are Open-Print

    Hi,
    I have seen some AR Invoice status are Closed but some AR invoice status are Open-Printed.
    There are any reason for this.
    Regards,
    Mzian

    Hello Mizan - if you add an AR Invoice and it immediately and automatically goes to "closed" status, then you have a big system problem on your hands.  There is no way SAP B1 should automatically close an AR Invoice unless someone has done a manual reconciliation or has created an AR Credit Memo or has made a payment or has closed/cancelled the AR Invoice manually.
    Call your SAP Partner or SAP Support immediately!!!
    Regards - Zal

  • TS3899 My ipad was working fine but if I go to send an email, a note pops up that my email address has been rejected by the server, what does that mean?

    Hi, my Ipad was working fine but if I try to send an email, a note pops up that my email address has been rejected by the server, what does this mean?  I am still receiving emails and can access websites through Safari.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    iPhone, iPad, iPod touch: Microsoft Outlook 2003, Outlook 2007, Outlook 2010 may not display contacts and calendars after sync
    http://support.apple.com/kb/TS1944
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iCloud: Create a group and add contacts to it
    http://support.apple.com/kb/PH2667
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email  -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • How do you disable available downloads that keep trying to download?  they are items that i already have and keep popping back up!

    how do you disable available downloads that keep trying to download?  they are items that i already have and keep popping back up!

    No one from Apple can answer this question???  Come On!!

  • What is wrong to cause someone replying to an email sent from my iPhone to always bounce back to them?

    What is wrong to cause someone replying to an email sent from my iPhone to always bounce back to them?

    It isn't for advertising. It is to let recipients know the message was sent from your iPhone in the event there are mispelled words, ect. You can add whatever you want such as sent from my mobile device.
    Settings > Mail, Contacts, Calendars > Signature. Select Clear and don't enter anything, or enter whatever you want.

  • I just got a notice to update my firefox to 4.0 and when I downloaded the new software it indicated: that I can't open the application "Firefox" because it is not supported on this architecture. Any ideas about what might be wrong and how to fix it?

    I just got a notice to update my firefox to 4.0 and when I downloaded the new software it indicated: that I can't open the application "Firefox" because it is not supported on this architecture. Any ideas about what might be wrong and how to fix it?

    Firefox 4 requires at least OS X 10.5 and an Intel Mac. There is a third party version of Firefox 4 that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox
    If you prefer, you can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html

  • Itunes document manager pro will not open a document with .cwk extension. It will catch the document then error message states that it cannot open document. Can anyone tell me what Im doing wrong?

    Itunes document manager pro will not open a document with .cwk extension. It will catch the document then error message states that it cannot open document. Can anyone tell me what Im doing wrong?

    Forgive my ignorance but I have never hear of iTunes Document Manager Pro. If you mean Document Manager Pro, i was able to find that. Back to your problem, have you tried opening one of those files in the iOS iWorks apps? Form the quick read that I did about this, .cwk files can be opened by Pages, Numbers or Keynote, depending on what type of document that it is and those files can be read by Document Manager Pro, after properly saving them. I don't see that you can go directly from the .cwk file in Document Manager Pro without converting them first.
    I took a very quick look at the app, so I may be a missing something about its capability.

  • HT2623 people are reporting that my mobile me email address is bouncing back emails.  please help!

    I am not recieving some important emails from multiple sources, some are being bounced back and others appear to be going through but i'm noit recieving them.  What can I do to fix this issue?
    thanks

    Did you migrate your MobileMe account to iCloud in August last year? Or did you open an iCloud account when it was first available? 
    Do you have a functioning @icloud.com version of the @me.com address? - please send yourself a message to that and see what happens.
    Can you log in with this address at http://icloud.com ?

  • Web Applet Report that creates email for Opportunity Details

    Hi,
    I'm trying to create a report that creates an opportunity detail report. My Web applet works. The only issue is the HTML tags show up in the email, instead of formatting the narrative fields.
    Any input is appreciated.
    Regards,
    Jo Ann

    Were you able to at least insert column values into the email (subject line, body)? I've got this to work in the Custom Text Format field of a user's email column:
    @[html]<**a href="mailto:"@"?subject=Good%20Morning">@<**/a>
    (Ignore the asterisks)
    It does popup a blank email with the user's email in the To: line but what I want to do is pull in other column values from the record into the subject line and body of the email. How do I do that?
    Edited by: user729346 on Apr 11, 2011 8:53 AM
    Edited by: user729346 on Apr 11, 2011 8:54 AM
    Edited by: user729346 on Apr 11, 2011 8:55 AM

  • Groupwise client is reporting 1 unread email when all are read

    Hi Folks,
    I have a rather strange problem that I'm hoping to find a solution to. I
    have one user who's client is reporting that there is an unread email in
    her inbox when all have been read. In fact, she has either deleted or
    moved all mail out of her inbox to either a cabinet directory or an
    archive. I had her log in at another workstation and the issue followed
    her. I have run both an analyze/fix with all the options checked, and a
    structural rebuild on her user database, and found no problems.
    Any assistance would be greatly appreciated.
    Thanks,
    Kris

    Do an "Advanced Find" with filter options "Item Status" "does not include"
    "Read".
    Now you should see any unread Item. If it's only one Item, it must be this
    one you see in the Home View. Just delete it or move it to another Folder.
    Greez
    Jrg
    >>> On Tuesday, 20. March 2007 at 08:35, <[email protected]> wrote:
    Allison,
    It's actually showing in the inbox, and it's always off by one when there
    IS unread mail in the inbox. For example, when I was working on it
    tonight, the inbox had 11 unread emails, but the number said 12.
    Kris
    > Is the message showing unread next to the inbox or the HOME? I had a
    case =
    > where a user had dragged an unread email to their "home" - so it showed
    1 =
    > unread email next to home. And this message did not show up in the
    inbox =
    > anymore. The only way I figured out how to see what was in home was to
    =
    > customize the HOME page (right click home> choose properties> display
    tab> =
    > customize) to show the HOME folder (I had to make a new panel), and
    then =
    > you were able to see the unread email and move it back to the inbox. =20
    >
    >
    > >>> On 03/19/07 at 9:27 AM, <[email protected]> wrote:
    >
    > Hi Folks,
    >
    > I have a rather strange problem that I'm hoping to find a solution to.
    =
    > I=20
    > have one user who's client is reporting that there is an unread email =
    > in=20
    > her inbox when all have been read. In fact, she has either deleted
    or=20
    > moved all mail out of her inbox to either a cabinet directory or an=20
    > archive. I had her log in at another workstation and the issue
    followed=20=
    >
    > her. I have run both an analyze/fix with all the options checked, and =
    > a=20
    > structural rebuild on her user database, and found no problems.=20
    >
    > Any assistance would be greatly appreciated.
    >
    > Thanks,=20
    > Kris
    >

Maybe you are looking for