Message/rfc822

How can I read a message in message/rfc822 mime type? The forwarded e-mail is encoded in this type.

MultiPart mp = (MultiPart)message.getContent();
//get the subparts of current part and go through all of them
int partCount = mPart.getCount();
for (int i = 0; i < partCount; i++) {
//get the first bodyPart
BodyPart bodyPart = mPart.getBodyPart(i);
//XXX check here all bodyParts of Multipart if they are instanceof Message. Note that also subparts of the bodyPart may be the attached mail. write a method which is called recursively until the attached mail is reached or there are no more parts in the mail.
Hope this helps you.

Similar Messages

  • Message/rfc822 error in mail

    When retrieving older emails from my exchange server I get a format error - message/rfc822 - unable to read format, please re-send.
    How can I stop this happening?

    iCloud email has a 20MB size limit, that's all that can be sent.
    The total number of messages you can send each day (200 messages)
    The number of recipients to whom you can send each day (1000 recipients)
    The maximum number of recipients per message (100 recipients)
    The size of incoming and outgoing messages (20 MB)

  • How to get message/rfc822 attachment name by using JavaMail

    Hi,
    I am fetching incoming mail which has message/rfc822 attachment. i.e: ".msg" (mime message) is attached to this incoming mail. When I try to get name of this message/rfc822 attachment, I am getting null. Body part for this message attachment doesn't contain attachment name? Is this known issue? Is there any solution for this? How to get attached message name?
    I am using javax.mail.part.getFileName() for getting bodypart's filename.
    Thanks,
    Shilpa

    This is not unusual. An attached message need not have a filename,
    especially if it wasn't stored in a file but rather was just attached to the
    new message from within the mailer that composed the new message.
    Some mailers will set a filename anyway, but there's no requirement
    that they do that.

  • Hoe to read attachments of type MESSAGE/RFC822

    hi,
    How to read attachments in mails of type MESSAGE/RFC822
    this occurs when somebody puts "Forwarded mails" directly as an attachment inside the mail body itself..
    guyz ur help for this will be very much helpful..
    thanks
    sriram.B

    Hi,
    I am also struggling the same problem. When I am reading part of type message/rfc822 I am not able to get right content.
    Waiting for some reply.
    Subhash

  • Content-Type: message/rfc822?

    So Mail on the iphone doesn't appear to be able to display inline the following content type
    Content-Type: message/rfc822
    Content-Disposition: inline
    Content-Transfer-Encoding: 8bit
    Does anybody else know a way Mail can display the message as an attachment "inline?"

    Robert,
    I have received messages forwarded from Thunderbird and had them show up.
    There must be some difference. When you are constructing the message yourself, are you following all the guidelines in RFC 1049, 1341, and 1521-1524? I think there might be other involved. Essentially as I understand it, and its been a while since I read the RFC's in full, that the message/rfc822 was to indicate an attachment, or portion that complied with the older rfc822 for backwards compatibility.
    Hope this helps,
    Nathan C.

  • How to inline message/rfc822 attachments?

    Howdy,
    In Tiger, attachments with a MIME type of "message/rfc822" were shown inline.
    In leopard they are not.
    Now they show up as an attachment with an envelope icon and a filename of "somefilename.eml" where "somefilename" appears to be based off the subject, but is likely set by the sender's mail client.
    How do I get the Tiger behavior back?
    Thanks,
    Jeff.

    This is not unusual. An attached message need not have a filename,
    especially if it wasn't stored in a file but rather was just attached to the
    new message from within the mailer that composed the new message.
    Some mailers will set a filename anyway, but there's no requirement
    that they do that.

  • Handling of base64 encoded body for message/rfc822

    As I understand the mime spec allows only "7bit", "8bit", or "binary" for the body of a "message/rfc822" entity
    However, it looks like Outlook is generating these under some circumstances (I have supplied a sample below). When attempting to read these via the JavaMail API the message content is empty and instead ends up in the header fields.
    Is there a workaround or setting to handle these base64 RFC822 attachments in JavaMail?
    Here's a stripped down sample of the message with the RFC822 attachment that I'm trying to handle:
    MIME-Version: 1.0
    X-Mailer: Microsoft Office Outlook 12.0
    Content-Type: multipart/mixed; boundary=00235400e66249e8d9047d9b2ab3
    --00235400e66249e8d9047d9b2ab3
    Content-Type: multipart/alternative;
         boundary=00235400e66249e8cf047d9b2ab1
    --00235400e66249e8cf047d9b2ab1
    Content-Type: text/plain;
         charset=iso-8859-1
    Content-Transfer-Encoding: 8bit
    ... [plain text version of message]
    --00235400e66249e8cf047d9b2ab1
    Content-Type: text/html;
         charset=iso-8859-1
    Content-Transfer-Encoding: quoted-printable
    ... [html version of message]
    --00235400e66249e8cf047d9b2ab1--
    --00235400e66249e8d9047d9b2ab3
    Content-Disposition: attachment
    Content-Type: message/rfc822
    Content-Transfer-Encoding: base64
    UmVjZW...
    --00235400e66249e8d9047d9b2ab3--

    Thanks for the info and suggested workaround. Would be neat to have a configurable option in 1.4.4 since info on the web suggests there are other email systems generating this rubbish.
    The customer who generated the emails is using Outlook 2007 with the Google Apps Sync for Outlook. I haven't been able to replicate in Outlook 2007 so might be related to the connector. I'll do some more testing before reporting the problem to the appropriate organization!

  • Improper rendering of forwarded message in Outlook Express

    I am not able to view forwarded mail (not properly rendered) in Outlook
    Express although in Microsoft Outlook, it views fine. The forwarded
    message is not shown as an email message but instead as a file
    attachment which can be saved to file. Any pointers to why Outlook
    Express renders it like that?
    I have copied below the code and the message.
    The following code is being used to create the forwarded message:
    String subject = oldMsg.getSubject(); //oldMsg is the MimeMessage to be forwarded.
    MimeMultipart mp = new MimeMultipart();
    MimeBodyPart bp = new MimeBodyPart();
    bp.setContent( "", "text/plain" );
    mp.addBodyPart( bp );
    MimeMessage msg = new MimeMessage( mailSession );
    msg.setFrom( from );
    MimeBodyPart bp = new MimeBodyPart();
    bp.setContent( oldMsg, "message/rfc822" );
    bp.setFileName( "forward.cpm" );
    mp.addBodyPart( bp );
    msg.setContent( mp ); // add Multipart
    msg.saveChanges(); // generate appropriate headers
    The message is getting created as follows:
    X-Message-Info: dHZMQeBBv44lPE7o4B5bAg==
    Date: Mon, 03 Feb 2003 03:09:34 -0700 (MST)
    From: Harry Potter <[email protected]>
    Subject: Fwd: Testing
    To: <[email protected]>
    MIME-version: 1.0
    Content-type: multipart/mixed; boundary="Boundary_(ID_pNopV8f7QdWLCYzK1WJbdg)"
    X-OriginalArrivalTime: 03 Feb 2003 10:07:10.0684 (UTC) FILETIME=[042E39C0:01C2CB6C]
    --Boundary_(ID_pNopV8f7QdWLCYzK1WJbdg)
    Content-type: text/plain
    Content-transfer-encoding: 7BIT
    Harry Potter wrote:
    Testing--Boundary_(ID_pNopV8f7QdWLCYzK1WJbdg)
    Content-type: message/rfc822; name=forward.cpm
    Date: Mon, 03 Feb 2003 03:08:13 -0700 (MST)
    From: Harry Potter <[email protected]>
    Subject: Testing
    To: Harry Potter <[email protected]>
    MIME-version: 1.0
    Content-type: multipart/mixed; boundary="Boundary_(ID_5ty0zdftzZazrM1I5lvWNQ)"
    --Boundary_(ID_5ty0zdftzZazrM1I5lvWNQ)
    Content-type: text/plain
    Content-transfer-encoding: 7BIT
    Testing
    --Boundary_(ID_5ty0zdftzZazrM1I5lvWNQ)
    Content-type: application/msword; name=MimeMessageInterpretation.doc
    Content-transfer-encoding: base64
    Content-disposition: attachment; filename=MimeMessageInterpretation.doc
    0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAABAAAAFQAAAAAA
    AAAAEAAAFgAAAAEAAAD+////AAAAABQAAAD/////////////////////////////////////
    ////////////////AAAMEAAAAgAAAB4AAAArAAAAUHJlc2VudGF0aW9uIG9mIFZhcmlvdXMg
    TWVzc2FnZSBNaW1lIFR5cGVzAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
    Boundary_(ID_5ty0zdftzZazrM1I5lvWNQ)
    Boundary_(ID_pNopV8f7QdWLCYzK1WJbdg)

    Guru,
    I am trying to run sample javamail program msgshow.java
    with these parameters
    -T imap -H <host> -U <user> -P <pwd>
    and I get an exception
    javax.mail.AuthenticationFailedException: There is no such mailbox on this server
         boolean com.sun.mail.imap.IMAPStore.protocolConnect(java.lang.String, int, java.lang.String, java.lang.String)
         void javax.mail.Service.connect(java.lang.String, int, java.lang.String, java.lang.String)
         void msgshow.main(java.lang.String[])
    My question is
    1. Where can I find host name for reading email from Microsoft Exchange server?
    2. Could you give me an example of such a server?
    Thanks a lot in advance.

  • Get parent of Embedded message

    Hello all.
    I have a message with the following structure:
    Message
    multipart-1
    gif1
    embedded message (Content-Type: message/rfc822)
    multipart-2
    text
    gif2
    I have the gif2 body part in my hand, and I want to get the message-id header of the outer message.
    I can get the parent of the gif body part (the multipart-2), and the parent of that multipart-2 (the embedded message).
    How can I get on from here? How can I get the first multipart (multipart-1), and from there the outer message, and from
    it, the message-id header?
    thanks in advance,
    Alon

    The structure is:
    Message
    ---multipart-1
    -------gif1
    -------embedded message (Content-Type: message/rfc822)
    ----------multipart-2
    -------------text
    -------------gif2

  • Message object returns SharedByteArrayInputStream instead of Multipart.

    Dear friends,
    I am using java Mail API v 1.3.1 to access POP3 server.
    I am getting problem while I try to read an RTF message from POP3 server.
    When I try to access the data through getContent() method on javax.mail.Message Object, it sometimes gives me correct result as a Multipart data, while sometimes, it returns an object of type com.sun.mail.util.SharedByteArrayInputStream.
    Although it returns SharedByteArrayInputStream object, when I invoke getContentType() on Message Object, it returns Multipart as correct.
    I think this is some problem with the JavaMail API.
    Going specifically, I use the POP server : ksc.th.com
    Waiting for reply,
    -> Maulik Soni.

    hi,
    I have the same Problem,too. But now, i have found the reason.
    the javamail jar delivers a file named 'mailcap' in the META-INF dir of the library jar with
    the following content:
    text/plain;;          x-java-content-handler=com.sun.mail.handlers.text_plain
    text/html;;          x-java-content-handler=com.sun.mail.handlers.text_html
    text/xml;;          x-java-content-handler=com.sun.mail.handlers.text_xml
    multipart/*;;          x-java-content-handler=com.sun.mail.handlers.multipart_mixed
    message/rfc822;;     x-java-content-handler=com.sun.mail.handlers.message_rfc822
    now while creating the default instance of MailcapCommandMap (activation framework),
    this class is searching the 'mailcap' file in the META-INF dir. if 'mailcap' is not found, the
    activation framework don't map these mimetyps.
    workaround:
    make sure, that the MailcapCommandMap can find the mailcap file in META-INF or in user.home dir
    or
    map manually (javax.activation.MailcapCommandMap):
    MailcapCommandMap map = (MailcapCommandMap)MailcapCommandMap.getDefaultCommandMap();
    map.addMailcap("text/plain;;x-java-content-handler=com.sun.mail.handlers.text_plain");
    map.addMailcap("text/html;;x-java-content-handler=com.sun.mail.handlers.text_html");
    map.addMailcap("text/xml;;x-java-content-handler=com.sun.mail.handlers.text_xml");
    map.addMailcap("multipart/*;;x-java-content-handler=com.sun.mail.handlers.multipart_mixed");
    map.addMailcap("message/rfc822;;x-java-content-handler=com.sun.mail.handlers.message_rfc822");
    simple,
    if you known it.
    thx, bye.
    franz bartlechner

  • Undeletable message

    One of my text-only newsletter subscriptions (ILSTCLAI-D Digest) sends messages to my .mac account which cause a problem for Mail. I click the Delete button. The message disappears. The next time Mail shows "Opening Mailbox" the message reappears in the Inbox. Mail apparently moves the message to the Trash because I end up with multiple copies there.
    I need to delete the message from the www.mac.com web interface, then (sometimes) rebuild the inbox.
    Additionally, Mail displays these messages as having no content. I can View Long Headers to see most of the content. If I then switch back to Default Headers, the patrial content remains. Only Raw Source shows the entire message.
    I suspect there is a problem with formatting. Below see what I see and then what the Raw Source shows.
    I will contact the list administrator. I am upset that Mail fails like this and wish that it be fixed!
    <begin displayed message>
    and no other text. No subject line is necessary, but if your software
    requires one, just use unsubscribe in the subject, too.
    <end displayed messsage>
    <begin raw source>
    and no other text. No subject line is necessary, but if your software
    requires one, just use unsubscribe in the subject, too.
    ____________________________Today's Topics:
    #1 thanks for the help ["dorac" <[email protected]>]
    Administrivia:
    To unsubscribe from ILSTCLAI-D, send a message to
    [email protected]
    that contains in the body of the message the command
    unsubscribe
    and no other text. No subject line is necessary, but if your software
    requires one, just use unsubscribe in the subject, too.
    Content-Transfer-Encoding: 7bit
    Content-Type: message/rfc822
    Thanks to Diane Walsh for the help with my mortlity census search. The
    information you gave was a great help. I sure we all can find family there.
    It is so nice to make the pieces fit!
    Thank you and others who have helped in the past.
    Dora
    <end raw source>
    iMac G4   Mac OS X (10.4.4)   Mail 2.0.5

    Ok I got it.. with the original iPhone you could force quit an application when open by holding down the home button... but with the newer iPhones and including the 4 this will launch Voice Control...
    Here's How... Launch the mail app, hold the sleep/wake button located top right, when the slide slide off comes up, then hold down the home button about 6 seconds... when you return to the mail these message should be gone, they were for me..... Thanks everyone.. found this info on the internet..

  • "Returned mail: Message failed to pass through virus scanner"

    We have a large number of this mail (see below) on our OCS1 cause by virus like MyDoom:
    From: "Mail Delivery Subsystem" <[email protected]>
    To: [email protected]
    Mime-Version: 1.0
    Content-Type: multipart/report;
         report-type=delivery-status; BOUNDARY="----ORCL_ES6_BOUNCE_1095724----"
    Date: Fri, 22 Oct 2004 09:52:32 +0200
    Subject: Returned mail: Message failed to pass through virus scanner
    ------ORCL_ES6_BOUNCE_1095724----
    Content-Type: text/plain
    The original message was received at Fri, 22 Oct 2004 09:51:21 +0200
    from <[email protected]>
    ----- The following addresses had delivery problems -----
    <[email protected]> (unrecoverable error)
    ----- Transcript of session follows -----
    Message failed to pass through virus scanner
    ------ORCL_ES6_BOUNCE_1095724----
    content-type: message/delivery-status
    Reporting-MTA: dns; maildb.italtbs.com
    Final-Recipient: rfc822;[email protected]
    Action: failed
    Status: 5.7.7
    Diagnostic-Code: smtp; Message failed to pass through virus scanner
    ------ORCL_ES6_BOUNCE_1095724----
    Content-Type: message/rfc822
    Return-Path: <[email protected]>
    Received: from mailas.italtbs.com by maildb.italtbs.com
         with ESMTP id 10957241098431481; Fri, 22 Oct 2004 09:51:21 +0200
    Received: from italtbs.com
         by mailas.italtbs.com with SMTP id i9M7pJJ06571
         for <[email protected]>; Fri, 22 Oct 2004 09:51:19 +0200
    Message-Id: <[email protected]>
    From: [email protected]
    To: [email protected]
    Subject: Found
    Date: Fri, 22 Oct 2004 09:50:40 +0200
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_NextPart_000_0007_0000355F.0000439E"
    X-Priority: 3
    X-MSMail-Priority: Normal
    ------ORCL_ES6_BOUNCE_1095724------
    On MAILAS.italtbs.com are installed infrastructure, sendmail and Symantec Scan Engine.
    On MAILDB.italtbs.com are installed storage database and midtier.
    Can I stop this useless messagges?
    Thanks and regard
    Matteo

    Are you still unable to send email?  What client are you using?  Do you see your job represented on ePrintCenter?
    Although I am an HP employee, I am speaking for myself and not for HP

  • Creating Mime-messages from String data

    How do I save string data of email received from Outlook Express by calling BufferedReader's readLine() method over a socket a connection so that it can be converted into MimeMessage.

    Sorry but i didn't read your code snipppet so well.
    So you have a Vector v wicht contains the client part of the dialog.
    This is a typical conversation: ( you don't use EHLO or HELO handshake!? it's considered rude not to introduce yourself :) )
    EHLO CLIENTNAME
    250
    MAIL FROM:<[email protected]>
    250 MAIL FROM:<[email protected]> OK
    RCPT TO:<[email protected]>
    250 RCPT TO:<[email protected]> OK
    DATA
    354 Start mail input; end with <CRLF>.<CRLF>
    Message-ID: <24569170.1093420595394.JavaMail.cau@PTWPC019>
    From: [email protected]
    To: [email protected]
    Subject: something
    Mime-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_0_17459938.1093420595224"
    ------=_Part_0_17459938.1093420595224
    Content-Type: text/plain; charset=US-ASCII
    Content-Transfer-Encoding: 7bit
    TEXT CONTENTS
    ------=_Part_0_17459938.1093420595224
    Content-Type: text/html; charset=US-ASCII
    Content-Transfer-Encoding: 7bit
    <b>HTML CONTENTS<b>
    ------=_Part_0_17459938.1093420595224--
    250 <412ADBC5000000B5> Mail accepted
    QUIT
    221 ontrob1.bmsg.nl QUIT
    The results in the vector from DATA to the ending dot . should be the part of your constructor string;
    Use this constructor
    MimeMessage mm = new MimeMessage(null,  ByteArrayInputStream( yourstring.getBytes() )  ) ;at this moment you can deconstruct the mime further.
    maybe this code will help:
    you should call the dumpPart method like this dumpPart( mm );
         Store store;
         Folder folder;
         static boolean verbose = false;
         static boolean debug = false;
         static boolean showStructure = true;
         private static void dumpPart(Part part) throws Exception {
              if (part instanceof Message)
                   dumpEnvelope((Message) part);
              /** //Dump input stream ..
              InputStream is = part.getInputStream();
              // If "is" is not already buffered, wrap a BufferedInputStream
              // around it.
              if (!(is instanceof BufferedInputStream))
                   is = new BufferedInputStream(is);
              int c;
              while ((c = is.read()) != -1)
                   System.err.write(c);
              pr("CONTENT-TYPE: " + part.getContentType());
              * Using isMimeType to determine the content type avoids
              * fetching the actual content data until we need it.
              if (part.isMimeType("text/plain")) {
                   pr("This is plain text");
                   pr("---------------------------");
                   if (!showStructure)
                        System.out.println((String) part.getContent());
              } else if (part.isMimeType("multipart/*")) {
                   pr("This is a Multipart");
                   pr("---------------------------");
                   Multipart mp = (Multipart) part.getContent();
                   level++;
                   int count = mp.getCount();
                   for (int i = 0; i < count; i++)
                        dumpPart(mp.getBodyPart(i));
                   level--;
              } else if (part.isMimeType("message/rfc822")) {
                   pr("This is a Nested Message");
                   pr("---------------------------");
                   level++;
                   dumpPart((Part) part.getContent());
                   level--;
              } else if (!showStructure) {
                   * If we actually want to see the data, and it?s not a
                   * MIME type we know, fetch it and check its Java type.
                   Object o = part.getContent();
                   if (o instanceof String) {
                        pr("This is a string");
                        pr("---------------------------");
                        System.out.println((String) o);
                   } else if (o instanceof InputStream) {
                        System.err.println("HELLO CAU 1111");
                        pr("This is just an input stream");
                        pr("---------------------------");
                        InputStream is2 = (InputStream) o;
                        int c2;
                        while ((c2= is2.read()) != -1)
                             System.out.write(c2);
                        System.err.println("\nHELLO CAU");
                   } else {
                        pr("This is an unknown type");
                        pr("---------------------------");
                        pr(o.toString());
              } else {
                   pr("This is an unknown type");
                   pr("---------------------------");
         private static void dumpEnvelope(Message msg) throws Exception {
              pr("This is the message envelope");
              pr("---------------------------");
              Address[] a;
              // FROM
              if ((a = msg.getFrom()) != null) {
                   for (int j = 0; j < a.length; j++)
                        pr("FROM: " + a[j].toString());
              //TO
              if ((a = msg.getRecipients(Message.RecipientType.TO)) != null) {
                   for (int j = 0; j < a.length; j++)
                        pr("TO: " + a[j].toString());
              // SUBJECT
              pr("SUBJECT: " + msg.getSubject());
              // DATE
              Date d = msg.getSentDate();
              pr("SendDate: " + (d != null ? d.toString() : "UNKNOWN"));
              //FLAGS
              Flags flags = msg.getFlags();
              StringBuffer sb = new StringBuffer();
              Flags.Flag[] sf = flags.getSystemFlags(); // get the system flags
              boolean first = true;
              for (int i = 0; i < sf.length; i++) {
                   String s;
                   Flags.Flag f = sf;
                   if (f == Flags.Flag.ANSWERED)
                        s = "\\Answered";
                   else if (f == Flags.Flag.DELETED)
                        s = "\\Deleted";
                   else if (f == Flags.Flag.DRAFT)
                        s = "\\Draft";
                   else if (f == Flags.Flag.FLAGGED)
                        s = "\\Flagged";
                   else if (f == Flags.Flag.RECENT)
                        s = "\\Recent";
                   else if (f == Flags.Flag.SEEN)
                        s = "\\Seen";
                   else
                        continue; // skip it
                   if (first)
                        first = false;
                   else
                        sb.append(' ');
                   sb.append(s);
              String[] uf = flags.getUserFlags(); // get user-flag strings
              for (int i = 0; i < uf.length; i++) {
                   if (first)
                        first = false;
                   else
                        sb.append(' ');
                   sb.append(uf[i]);
              pr("FLAGS: " + sb.toString());
              // X-MAILER
              String[] hdrs = msg.getHeader("X-Mailer");
              if (hdrs != null)
                   pr("X-Mailer: " + hdrs[0]);
              else
                   pr("X-Mailer NOT available");
         static String indentStr = " ";
         static int level = 0;
         * Print a, possibly indented, string.
         public static void pr(String s) {
              if (showStructure)
                   System.out.print(indentStr.substring(0, level * 2));
              System.out.println(s);
    Tricae

  • "Report this Post" Messages Bounced to Email

    The last two times I used the "Report this Post" link the messages bounced back to my email address from a third-party server. I don't know if the problem resulted from a misconfigured co-location server or Apple's mail server, or if it was the result of an iframe injection or other cross-site scripting attack. I sent several messages directly to Apple about this but have not received a response. Has anyone else experienced this?
    Received: (qmail xxxx invoked from network); 6 Oct 2009 00:00:00
    Received: from xxx.contegix.com (HELO xxx.contegix.com) (xxx.xxx.xxx.xxx)
    by xxx.xxx.xxx.xxx with SMTP; 6 Oct 2009 00:00:00
    Received: by xxx.contegix.com (Postfix)
    id xxxxxxxxxxx; Tue, 6 Oct 2009 00:00:00
    Date: Tue, 6 Oct 2009 00:00:00
    From: [email protected] (Mail Delivery System)
    Subject: Undelivered Mail Returned to Sender
    To: [email protected]
    Auto-Submitted: auto-replied
    MIME-Version: 1.0
    Content-Type: multipart/report; report-type=delivery-status;
    boundary="xxxxxx.xxxxxx
    Message-Id: <[email protected]>
    This is a MIME-encapsulated message.
    --xxxxxx.xxxxxx/xxx.contegix.com
    Content-Description: Notification
    Content-Type: text/plain; charset=us-ascii
    This is the mail system at host xxx.contegix.com.
    I'm sorry to have to inform you that your message could not
    be delivered to one or more recipients. It's attached below.
    For further assistance, please send mail to <postmaster>
    If you do so, please include this problem report. You can
    delete your own text from the attached returned message.
    The mail system
    <[email protected]>: delivery temporarily suspended: host
    xxx.apple.com\[xxx.xxx.xxx.xxx\] refused to talk to me: 554 Open proxy list.
    Review your server settings.
    --xxxxxx.xxxxxx/xxx.contegix.com
    Content-Description: Delivery report
    Content-Type: message/delivery-status
    Reporting-MTA: dns; xxx.contegix.com
    X-Postfix-Queue-ID: xxxxxxxxxxx
    X-Postfix-Sender: rfc822; [email protected]
    Arrival-Date: Thu, 1 Oct 2009 00:00:00
    Final-Recipient: rfc822; [email protected]
    Original-Recipient: rfc822;[email protected]
    Action: failed
    Status: 4.0.0
    Remote-MTA: dns; xxx.apple.com
    Diagnostic-Code: smtp; 554 Open proxy list. Review your server settings.
    --3883A8B3ACA.1254814094/xxx.contegix.com
    Content-Description: Undelivered Message
    Content-Type: message/rfc822
    Received: from xxx.contegix.com (localhost.localdomain \[127.0.0.1\])
    by xxx.contegix.com (Postfix) with ESMTP id xxxxxxxxxxx
    for <[email protected]>; Thu, 1 Oct 2009 00:00:00
    From: [email protected]
    To: [email protected]
    Message-ID: <[email protected]>
    Subject: Notification: innappropriate message
    MIME-Version: 1.0
    Content-Type: text/plain; charset=ANSI_X3.4-1968
    Content-Transfer-Encoding: 7bit
    Date: Thu, 1 Oct 2009 00:00:00
    The following post is innappropriate
    \[message content\]
    \--xxxxxx.xxxxxx/xxx.contegix.com--
    ----------

    capaho,
    Previous related Topics:
    9/3/09 Duplicate Post Report Rejected
    9/6/09 Is anyone else getting bounced email notifications for "Report this Post?".
    9/8/09 Weird bounce message when I report a questionable or duplicate post
    9/25/09 Does this indicate a problem on the forums
    ali b

  • Recipient failure and rfc822

    Several emails not going through today, here's raw source of mail...what's it mean(user unknown in local recipient list)? (I added "xxx" in emails to hide addresses)
    Received: from alnrmhc14.comcast.net (localhost[127.0.0.1])
    by comcast.net (alnrmhc14) with ESMTP
    id <20070922005220b1400nslkhe>; Sat, 22 Sep 2007 00:52:20 +0000
    From: Mail Delivery Subsystem <[email protected]>
    Subject: Returned mail: delivery problems encountered
    Message-Id: <[email protected]>
    Date: 22 Sep 2007 0:52:19 +0000
    To: <[email protected]>
    Mime-Version: 1.0
    Content-Type: multipart/report; report-type=delivery-status; boundary="46f46743.4019.6+comcast.net="
    --46f46743.4019.6+comcast.net=
    Content-Type: text/plain
    A message (from <[email protected]>) was received at 21 Sep 2007 23:53:00 +0000.
    The following addresses had delivery problems:
    <[email protected]>
    Permanent Failure: 550<[email protected]>:_Recipient_address_rejected:_User_unknown_in_local_recipienttable
    Delivery last attempted at Sat, 22 Sep 2007 00:46:09 -0000
    --46f46743.4019.6+comcast.net=
    Content-Type: message/delivery-status
    Reporting-MTA: dns; comcast.net
    Arrival-Date: 21 Sep 2007 23:53:00 +0000
    Final-Recipient: rfc822; <[email protected]>
    Action: failed
    Status: 5.0.0 550<[email protected]>:_Recipient_address_rejected:_User_unknown_in_local_recipienttable
    Diagnostic-Code: smtp; Permanent Failure: Other undefined Status
    Last-Attempt-Date: Sat, 22 Sep 2007 00:46:09 -0000
    --46f46743.4019.6+comcast.net=
    Content-Type: message/rfc822
    Received: from [98.203.159.250] (c-98-203-159-250.hsd1.wa.comcast.net[98.203.159.250])
    by comcast.net (alnrmhc14) with SMTP
    id <20070921235257b1400ooapse>; Fri, 21 Sep 2007 23:53:00 +0000
    Mime-Version: 1.0 (Apple Message framework v752.2)
    Message-Id: <[email protected]>
    Content-Type: multipart/alternative; boundary=Apple-Mail-5--489303981
    To: <[email protected]>
    Subject: VERY GOOD TAPE RENTAL!
    From: <[email protected]>
    Date: Fri, 21 Sep 2007 16:52:57 -0700
    X-Mailer: Apple Mail (2.752.2)
    --Apple-Mail-5--489303981
    Content-Transfer-Encoding: 7bit
    Content-Type: text/plain;
    charset=US-ASCII;
    delsp=yes;
    format=flowed

    This is a message from the mail delivery agent at webtv.com: It doesn't know who [email protected] is. The exact text of the message is up to the mail delivery agent, but basically what it's saying is that it received a request for local delivery (i.e., to a user actually on the system, as opposed to something that's being sent out to another system) for [email protected], but it couldn't find that user.
    The cause could be anything from a typo in the recipient address to a problem in the configuration at webtv.com - or even at comcast.net, though that's less likely. Or it could be that xxx has moved this account away from webtv.com!
    -- Jerry

Maybe you are looking for

  • SIMPLE FORMULA IN ADOBE ACROBAT PRO

    I am not a programmer and do not know how to use Javascript. I have a simple calculation that I cannot determine how to put it together. Cell A minus Cell B = Cell C Each Cell is a total of several cells and I need to determine the net amount with a

  • IDOC number and status

    Hi All, i am using Function Module IDOC_INBOUND_ASYNCHRONOUS to post inventory records. its posting the data sucsessfully but it does not return IDOC number and status. i can see the status and number in WE02 but please tell me how can i get that in

  • BPM Block step

    Hi everyone, In my scenario IDOC XI JDBC scenario I am using the BPM. My IDOC message type is Vendor master and needs to send to 4 Legacy systems. My BPM steps are: 1)Receive step 2)Transformation step. 3)Fork step(4 branches). Inside the fork a)4 re

  • How to manipulate data in AS400 using JSP?

    hi i am developing a system and i am using JSP with AS400 as its database. My question in how am i be able to access the data from the database to the pages? How can i also manipulate the data in the database using JSPs?ex..add,edit,delete Can anyone

  • Function module not allowed: AFS_RETAIL_ARTMAS_IDOC_INPUT.

    Dear Expert,    I have a problem when I use ALE. I found error message of inbound in target system have a error status 51. Function module not allowed: AFS_RETAIL_ARTMAS_IDOC_INPUT. message type is MATMAS. and i want to distribute Material master fro