POP3 email cross-coupling between headers and body

I have three POP3 email accounts set up on my DROID.  Lately, about one out of ten of the messages I get will have the body of one message shown under the header of a completely unrelated message.  If I choose "reply" or "forward" I will see the correct body for the header, but the receipient of the replay or forwarded message may see the erroneous body and not my text.  If I log into the accounts from my computer, the messages are fine: header matches body.  What's the problem here -- and more importantly, how do I fix it? 

What app are you using to check your POP3 accounts?  The one that was included on the Droid, or something you downloaded from the Marketplace?
An easy solution might be to go to the Marketplace and grab a different e-mail app and see if that fixes the problem.

Similar Messages

  • Space between header and body section

    Hi All,
    I have a RTF template in that i am displaying the header and body section , i have more than one pages in my report so in the first page the gap between header section and the contains start after that is fine, but for the rest of the pages the gap between header and contaisn is more , can you please guide me how to decrease the space.
    Ex:
    Page 1: Header section
    ABC CORPORATION
    JJJJJJJJJJJJJJJJJJJJJJJ
    -----------------PAGE ENDS---------------------------
    Page2:
    Page 1: Header section
    ABC CORPORATION
    JJJJJJJJJJJJJJJJJJJJJJJ ------------------This space is more i need to decrease
    -----------------PAGE ENDS---------------------------
    Thanks
    Deb

    check if u have any spaces after the for each or any logic u used before data table which have spaces in between.
    send me your sample xml and template i can try at my side.
    email : [email protected]

  • Cross-reference between structured and unstructured FM documents

    Hello,
    Is it possible to retain FM cross-references from structured to unstructured FM documents during an XML round trip?
    From what I know, cross-references between or inside structured documents form pairs of ID and IDREF, while cross-references to unstructured documents are dumped as normal text and lose their functionality.
    The unstructured target documents might be converted to Structured FM at some point, but for the time being I'd like to find another solution. Do you know any solution to this?
    Thanks,
    Johannes

    Johannes,
    This is just a guess, because I do not do this.
    First, of course, you cannot export the unstructured file to XML, because it is unstructured.
    Second, IF the cross-reference from the structured file to the unstructured file were done via your cross-reference ELEMENT, then the cross-reference element should export to XML as an XML element with one of its IDref attribute set to the ID of something in the unstructured file. When you open the XML file in FrameMaker, the cross-reference is re-established.
    In other words, when exporting to XML, FrameMaker does not care to what you are referencing. It just converts the cross-reference element into an element with an attribute in the XML file. So, it should work as expected when opened in FrameMaker. Of course, I am assuming your read-write file is set up to handle cross-references.
    On the other hand, IF you are creating your cross-reference from the structured file by simply inserting a cross-reference, that is NOT as an element, then I do not know what happens. If it is being exported as text, then I am not sure FrameMaker will know what to do with it when you reopen the XML file.
    Hope this helps,
    Van

  • HT201320 I'm getting my emails but only the headers and date but no content. I have several email accounts set up they are all the same but it was OK yesterday What have I done please?

    Hello, can someone help please. I'm getting my emails OK but only the headers and date but no content. I have set up three accounts and they were all OK yesterday. What have I done or what can I do please?

    Sorry I see someone has answerd this altready Please ignore me !

  • Payment advice notes by email (change in sender id) and body

    Hi experts ,
    I am trying to change the sender name and body of the mail that is send by mail.does this code work i called SO_NEW_DOCUMENT_ATT_SEND_API1 in Z_PAN_EMAIL_00002040.
    look in the code and also tell me me does this work out. can some one tell me what is the 'SAPoffice'  in this code. (ls_document_data-obj_name  = 'SAPoffice'.) in fill document data part.
    FUNCTION Z_PAN_EMAIL_00002040.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(I_REGUH) LIKE  REGUH STRUCTURE  REGUH
    *"  CHANGING
    *"     REFERENCE(C_FINAA) LIKE  FINAA STRUCTURE  FINAA
    data: zadrnr     like adr6-addrnumber,
          zsmtp_addr like adr6-smtp_addr,
          zremark    like adrt-remark,
          begin of zcon occurs 0,
              zadrnr     like adr6-addrnumber,
              zconnumber like adr6-consnumber,
              zsmtp_addr like adr6-smtp_addr,
          end of zcon.
          refresh zcon.
          select single adrnr into zadrnr from lfa1 where
                              lifnr = i_reguh-lifnr.
          if sy-subrc = 0.
             select addrnumber consnumber smtp_addr into table zcon
             from adr6 where addrnumber = zadrnr.
          endif.
             loop at zcon.
                  clear zremark.
                  select single REMARK INTO ZREMARK FROM ADRT
                                   where addrnumber = zcon-zadrnr
                                   and consnumber = zcon-zconnumber.
                  TRANSLATE zREMARK TO UPPER CASE.
                  if sy-subrc = 0 and zremark = 'REMIT'.
                     zsmtp_addr = zcon-zsmtp_addr.
                     exit.
                  endif.
             endloop.
             IF zsmtp_addr <> ' '.
       search zsmtp_addr for 'britishcouncil' .
       if sy-subrc <> 0.
      code modified to check if sy-subrc = 0.
               C_FINAA-NACHA = 'I'.
    CODE MODIFIED AS PER SAP NOTE  1033893 .
          C_FINAA-NAMEP = 'Testname'.
        internet address of partner company clerk has been changed by pradeep akula as per requirements.
          C_FINAA-INTAD = zsmtp_addr.
          C_FINAA-FORNR = 'Z_F110_IN_AVIS2'.
      this zzmail_sender_addrr and zzmail_body_text  did not work in testing.
         C_FINAA-ZZMAIL_BODY_TEXT = 'This is a test body text'.
         C_FINAA-ZZMAIL_BODY_TEXT = 'Payment Advice Notes attached, please do not discard this message .All vendors should please add their company name'.
       endif.
    ENDIF.
    code changes done by pradeep akula for Body of mail .
    CLASS cl_abap_char_utilities DEFINITION LOAD.
    TYPES: t_solisti1 TYPE TABLE OF solisti1,
          t_sopcklsti1 TYPE TABLE OF sopcklsti1,
          t_somlreci1 TYPE TABLE OF somlreci1.
    DATA: lt_content       TYPE t_solisti1,
          lt_packing_list  TYPE t_sopcklsti1,
          lt_header        TYPE t_solisti1,
          ls_document_data TYPE sodocchgi1,
          l_subject        TYPE solisti1-line,
          l_content_lines  TYPE i,
          lt_receiver      TYPE t_somlreci1,
          l_address        TYPE adr6-smtp_addr,
          l_new_object_id  TYPE sofolenti1-object_id,
          l_sent_to_all    TYPE sy-binpt,
          l_msg_text       TYPE string,
          l_rc             TYPE sy-subrc,
          l_user           TYPE sy-uname.
    DATA:  l_crlf(2)             TYPE  c.
    DATA:  BEGIN OF crlf,
             x(1) TYPE x VALUE '0D',
             y(1) TYPE x VALUE '0A',
           END OF crlf.
      l_crlf = cl_abap_char_utilities=>cr_lf.
    receiver address
      DATA: ls_receiver TYPE somlreci1.
      ls_receiver-receiver = zsmtp_addr.
    receiver address type (internet address)
      ls_receiver-rec_type = 'U'.
    communication type (send via internet)
      ls_receiver-com_type = 'INT'.
      APPEND ls_receiver TO lt_receiver.
    SAP name: used for the shortcut to the inbox (optional)
    l_user = p_user.
    l_user = ' '.
    mail subject
    l_subject = p_subj.
    DATA: ls_content TYPE solisti1,
          ls_header  TYPE solisti1.
    fill the document data.
      READ TABLE lt_content INDEX l_content_lines INTO ls_content.
      ls_document_data-doc_size =
        ( l_content_lines - 1 ) * 255 + STRLEN( ls_content ).
      ls_document_data-obj_name  = 'SAPoffice'.
      ls_document_data-obj_descr =  'Test mail form payment advice its working'.
      ls_document_data-obj_prio = 5.
      ls_document_data-priority = 5.
    fill data of mail
      DATA: ls_packing_list TYPE sopcklsti1.
    update the packing list.
      ls_packing_list-transf_bin = ' '.
      ls_packing_list-body_start = 1.
      ls_packing_list-body_num = l_content_lines.
      ls_packing_list-doc_type = 'RAW'.
      APPEND ls_packing_list TO lt_packing_list.
      ls_header-line = 'Test header - Vish'.
      append ls_header to lt_header.
      ls_content-line =   'Test mail form payment advice what you want to print here'.
      append ls_content to lt_content.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = ls_document_data
          commit_work                = 'X'
        IMPORTING
         sent_to_all                = l_sent_to_all
          new_object_id              = l_new_object_id
        TABLES
          packing_list               = lt_packing_list
          object_header              = lt_header
          contents_txt               = lt_content
          receivers                  = lt_receiver
        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.
      keep error message
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                INTO l_msg_text.
      ENDIF.
    endfunction.

    Hi Pradeep,
    you can change the sender, when you change the system-field SY-UNAME before calling FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    REPORT Z_TEST_SEND_MAIL.
    h_uname must be a SAP-UserId.
    sy-uname = h_uname.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DOC_CHNG
         PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = OBJPACK
          OBJECT_HEADER              = OBJHEAD
          CONTENTS_BIN               = OBJBIN
          CONTENTS_TXT               = OBJTXT
          RECEIVERS                  = RECLIST
        EXCEPTIONS
          TOO_MANY_RECEIVERS         = 1
          DOCUMENT_NOT_SENT          = 2
          OPERATION_NO_AUTHORIZATION = 4
          OTHERS                     = 99.
    I tried it and it was successfull.

  • Email submit button concatenate subject and body

    Hello Expert,
    I'm trying to modify what the body of the email will look like once the user has pressed an email submit button. In Livecycle designer, I clicked on the button and viewed java script code
    this.resolveNode("#event.#submit").target = "mailto:"+$record.XXXXXX.MAIL_ID.value+"?subject ="+" Subject line "+"&body="+"Body of the mail";
    Whenever i click the button its conacatenate the subject line with -- " Subject line &body body of the mail ".
    My requirement is to change the body of the mail. Can anyone help me on this issue.

    Hi Abdul,
    Try this. Create a regular button and in the click event put this script.
    var mail;
    var add = mailAddress.rawValue; // the to mail address you want.
    var msg = "Sample message"; // This is the body of the mail Customize it as per need by fetching value from different fields
    var sub = "Sample Subject"; // This is the subject of the mail.
    event.target.mailDoc({
              bUI: true,
              cTo: add,
              cCc: '',
              cBcc: '',
              cSubject: sub,
              cMsg: msg
    Thanks,
    Bibhu.

  • Unable to open OWA cross site between 2013 and 2010 Exchange Server

    Hello,
    First of all allow me to describe the scenario as this always helps and is often omitted from many questions.
    SITEA – 1 x 2010 Exchange Server (All roles except UM and Edge), Domain controllers etc available
    SITEB- 1 x Newly installed 2013 Exchange Server (Mailbox and CAS roles), GC Domain controllers etc. avaliable
    Sites and Services are correctly configured between the sites and we have a high speed WAN connection between the data centres all ports and communication between servers at both sites are open as the connection is secure. 
    After installing Exchange 2013 in SITEB, whenever I try to login to either the ECP or OWA of the 2013 with a user whose mailbox is in SITEA we immediately receive the sad smiley face with the something went wrong message. Clicking more details displays
    the following message:
    X-FEServer: <OUR_EX_2013_SERVER>
    I was expecting Exchange to proxy the request to the 2010 server and get the 2010 OWA experience. If I create a new mailbox on the 2013 then it is of course fine. 
    Is someone able to suggest any troubleshooting steps? I have of course fully followed the Exchange 2013 deployment assistant from Microsoft and ensured all pre-requisites were carried out. 
    The Exchange 2013 server is SP1 and is running on Windows 2012 R2

    Hi,
    According to your description, your ECP and OWA requests cannot be proxyed or redirected from your Exchange 2013 to Exchange 2010 server. If I misunderstand your meaning, please feel free to let me know.
    If yes, I recommend you the following troubleshooting:
    1. Check all URLs of ECP and OWA virtual directory on your Exchange 2010 server.
    get-owavirtualdorectory |fl *url
    get-ecpvirtualdirectory |fl *url
    Does your Exchange 2010 server has the same namespace with your Exchange 2013 server?
    2. Check if you can ping your Exhange 2010 server on your Exchange 2013 server.
    3. Check if there is any error in your event log and IIS log on the Exchange 2013 server.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Transporttaion Cross Docking between EWM and ECC across company codes

    Seceanrio is as follows:
    We have an EWM managed site in GB, and an IM managed site in IE.
    We would like to use the transportation cross docking solution from within Service Parts Management to transfer goods from GB to IE, (ECC > EWM > ECC) across company codes.
    Is this possible within the standard SAP solution?
    Thanks in advance,
    Craig Bramhald

    Hi Hari
    Inter Company Purchase scenario works when the same material exists in both the company codes... I dont know how SAP would manage this in the case of Assets, when the Same Asset No is not existent in the other Co Code...
    However, Refer 1523976  PurchaseOrderERPRequest_In_V1:Asset account assignment fails
    This applies to EhP4 / EhP5 - But I dont know if you are using the enterprise service PurchaseOrderERPRequest_In_V1 ....
    If not, better create an OSS message to SAP and check with them mentioning the notes that you have mentioned in your message
    BR,Ajay M

  • Cox adds authenticated smtp, email working seemlessly between wifi and 3g

    I had a problem, but it just went away. Background: I have Cox high speed internet at home (in Tucson), and Cox would not let any email go out to any smtp server (authenticated or not, ssl, didn't matter) other than their own. Which meant when my iphone was on wifi at home I HAD to use smtp.west.cox.net, but as soon as I left my email wouldn't send because I was no longer on cox over the air. So I could either optimize for home or road - either set my smtp server priority for cox, or set it for authenticated gmail, or cwmx.com, or whatever. It was sort of messy at best with a list of smtp servers and trying to get the right one into the priority slot (is that game?). BUT, my life has recently changed, although it's a sad thing when an adult prances around saying "cox has authenticated smtp now, yay!" But they do, and it works from anywhere. So what I have now on my iphone is my 3 email accounts, and just a single solitary smtp server - cox. Obviously you need to be a cox subscriber, and you need to know your cox user name, but the steps are here:
    http://support.cox.com/knowledgecenter/cox_hsikb_defcontent_view.asp?sprt_cid=1689d919-54ca-496a-b081-cc3617a7d7 f3&sprtver=5
    I hope this helps someone who is dealing with smt pcraziness and cox.

    Thanks for this! I had figured out the problem on my wife's iPhone due to the outbound smtp servers not being on the cox network when on the ATT EDGE, and wanted to let Apple fix it for us by having another option on the mail account settings: If I'm on WiFi - try smtp.cox.net for outbound email, if I'm on EDGE, use ATT's outbound email.
    Glad to see the Authenticated SMTP for Cox and will try that later tonight.
    I don't think I'll do the prancing , but my wife will be grateful for this!

  • Gap between nav and body

    http://naruphotography.net/AO/shedule.html
    There is a large gap below the nav to the text in firefox but in safari and Opera it is showing corectly.
    Any helps would be much appreciated

    Marian
    Thank you for taking the time to reply.
    After the post I  put the text in a table and that seemed to fix my problem

  • Gap between header and body

    Page:
    www.megamarketingtools.com/problem.html
    That small gap (looks like a black line) is driving me crazy.
    I searched these forums but the suggestions I found didn't
    do anything for me.
    Help, please.
    Thank you.

    bffinn wrote:
    Page:
    www.megamarketingtools.com/problem.html
    That small gap (looks like a black line) is driving me crazy.
    I searched these forums but the suggestions I found didn't
    do anything for me.
    Help, please.
    Thank you.
    Your code is screwed up. Try the amended version below:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>MegaMarketing One Time Offer</title>
    <link href="scripts/ototemp/Template8/Blue/style.css" rel="stylesheet" type="text/css" /> 
    <style type="text/css"> 
    <!-- 
    .copywrite { font-size: x-small; } 
    .moretext { font-size: 12px; } 
    --> 
    </style> 
    <link href="otostyle.css" rel="stylesheet" type="text/css" /> 
    </head> 
    <body> 
    <table width="750" border="0" align="center" cellpadding="0" cellspacing="0"> 
      <tr> 
      <td width="750" height="270" valign="bottom" background="scripts/ototemp/Template8/Blue/images/header.jpg" border="0"> </td>   
    </tr> 
      <tr> 
        <td align="left" valign="top" background="scripts/ototemp/Template8/Blue/images/page-inside-bg.jpg"> </td> 
        </tr> 
    </table> 
    </body> 
    </html>

  • Email sync problem between iPad Air and iPhone 6+

    Hello,
    I have a user that travels quite a bit. We use Office 365 Enterprise
    for our emails. He is reporting email sync issues between iPhone and iPad. Meaning
    sometimes he will receive emails on the iPhone but not on the iPad or vice versa.
    Both devices use the same AT&T network. Does anyone out there have any
    suggestions as to what may be causing the sync problem between devices? I am
    not sure if the devices ever have the same emails on the inbox. Does this make
    sense? I will be happy to provide any other information if needed.
    Thank you!

    Hey daniel hkn,
    Thanks for the question. It sounds like the email account may be configured and setup as a POP account. If so, check out this resource:
    Using a POP account with more than one device - Apple Support
    http://support.apple.com/en-us/HT201855
    When using the same POP email account on more than one device, email messages may appear only on the first device that receives them. This occurs when an email client is configured to automatically remove email from the server after an email client has received it. You can configure your iPhone, iPad, iPod touch, or Mac either to keep a copy of the email on the server, remove it after a certain number of days have passed, or keep it until you move it from your inbox.
    Thanks,
    Matt M.

  • How to maintain space between table and header in ssrs

    Hi Everyone, 
      I have created a report. In page header of this report, On First Page space between header and
    body is good , but from next page, space is not maintain. 
    Please suggest me how to maintain space at every page of report.
    Thanks. 

    Can you post a screenshot?
    This can be achieved if you are repeating column headers on each page. Just change row height of header and align text to bottom, and make sure there is no space between Page Header and Tablix.
    - Vishal
    SqlAndMe.com

  • PDF headers and footers

    Hi,
    Trying to write a vocal reader for a PDF document, however, stuff that people would normally skip are being read by the reader (headers, footers, page numbers, footnotes, etc).
    Anyone knows a way to programmatically recognize the type of the paragraph you are currently reading in a PDF file so the reader can skip those?
    Thanks,
    T.R.

    Depends on whether the PDF is tagged or not.  If it's tagged, then those things would be artifacts and you could skip them.  If it's not tagged, then you'll need to do the analysis yourself to make the determination.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 10 Oct 2011 08:07:34 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: PDF headers and footers
    PDF headers and footers
    created by traxster72<http://forums.adobe.com/people/traxster72> in PDF Language and Specifications - View the full discussion<http://forums.adobe.com/message/3962980#3962980

  • Pdf headers and footers again

    I have windows 7 -64bit with Safari 5.03 on my work-pc.
    When I try to Save As a .pdf files it won't, it shoes me only All Files in file type.
    Also when I try to print the .pdf, it prints only headers and footers.
    I have reinstalled adobe readers (suggested fix )several times, but it hasn't helped me. Any other ideas?

    Depends on whether the PDF is tagged or not.  If it's tagged, then those things would be artifacts and you could skip them.  If it's not tagged, then you'll need to do the analysis yourself to make the determination.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 10 Oct 2011 08:07:34 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: PDF headers and footers
    PDF headers and footers
    created by traxster72<http://forums.adobe.com/people/traxster72> in PDF Language and Specifications - View the full discussion<http://forums.adobe.com/message/3962980#3962980

Maybe you are looking for

  • I have two iTunes accounts somehow, and just want to merge them together.

    If you have two iTunes accounts by accident (one iPhone and one Computer...) how can you merge them together into one account?

  • How to delete database using sql

    I have to delete some databases from oracle 8i. I tried it using the Database Configuration Assistant and I get stuck indefinately as the message always says connecting but nothing happens. How can I delete databases using sql not thru the DCA? Thank

  • Creating different PO in SC depending upon line item

    Hello everyone I need to urgently check the functionality of the any BADIs  and see whether the shopping cart can be converted to a PO , based on the product type  ( this is the same as material type in ECC). If a shopping cart has 1 line item with c

  • Why do some video files show up under music, & some under movies?

    I ordered a CD off of iTunes that included bonus material, 4 of which were videos. 3 were music videos, 1 an interview with the artist. The 3 music videos show up at the end of the album in the music part of iTunes, the interview video shows up seper

  • Reinstalling packages to get btrfs to compress the files?

    I recently upgraded most of my partitions to btrfs. I turned on compression in fstab, but it will only compress newly created files, which makes sense. Lets say I have firefox installed. If I do pacman -S firefox, I assume it will actually rewrite th