When sending html mail from ocfo or direct telnet smtp_in returns an error

<lots of markup/>
......<snip>
<P class=MsoNormal><FONT face=Arial size=2><SPAN
style="FONT-SIZE: 10pt"><o:p> </o:p></SPAN></FONT></P></DIV></BLOCKQUOTE></BODY></HTML>
500 5.6.0 Data command failed: too many headers
550 5.7.1 Closing connection
Connection closed by foreign host.
Has anyone seen this problem? I get the feeling that smtp_in is counting every html tag as a header, should I increase the "Maximum Number of Headers Allowed in a Message" parameter in smtp_in to fix this problem? If so what might be a reasonable setting? I increased it from 1000 to 2500 but could not get a particular email to send. Small amounts of HTML send ok.
thanks!

OK, I think I have narrowed this to a problem somewhere between the listener and SMTP_IN. This problem only occurs when using SMTP over SSL. I switched my two SMTP_IN processes, I made the non-SSL into SSL and vice-versa. The problem followed the process with the SSL configuration. I have no idea what in the listener configuration (or the smtp_in config as its shown through em) could caused this kind of problem. Small html mails with basic markup in them work fine over SMTP SSL, but big html mails with lots of nasty markup alway fail, they just stay in the outbox and then ofco needs several folder refreshes (or restart) in order to be able to again view any of the "mail" type folders (imap).
Thunderbird also has these symptoms minus the need to refresh/restart after a failed html mail sending attempt.
Anyone seen/seeing anything like this?

Similar Messages

  • Mail app is crashing when sending e-mail from Yahoo

    When sending an e-mail from the Mail app, the "Sending..." bar shows up, and then the application shuts down and puts me back at the home screen.
    The email gets through though.
    (Using Yahoo to send)

    I, too, was having the same problem of blacking out and returning to home each time I sent an email with Edge. I put the phone to sleep, did a hard reset and re-added my account several times. Each time I came back to mail the message was waiting to be sent again. I finally checked my sent mail and it showed up as being sent 22 times. Apparently you should check the sent folder to make sure if it went through or not before trying again.

  • Sending HTTP/AS2 from BT to non-BT site returns 500 error.

    I have tested this internally, everything works fine within BizTalk, the remote receiving site uses Cleo and returns a 500 HTTP error... What can I look at/Any known issue?
    BT2013 - No Ack's/997's .
    Thanks
    Bico Bielich

    From Microsoft HTTP Status code :
    The HTTP status code in IIS 7.0, IIS 7.5, and IIS 8.0
    5XXX- HTTP status codes indicate that the server cannot complete the request because the server encounters an error.
    Its really very difficult to get the root cause for HTTP error status code 500 .There can be various reason starting from data contract to IIS misconfiguration  and Biz Talk misconfiguration as well.
    There is a similar post were you can follow were there was issue with receive location on the VDI .
    AS2 EDI -- Http 500 error
    I would  suggest to enable IIS tracing and use Microsoft Network Monitor tool to see how packets are send and received from the destination system.
    Enable IIS Tracing for Troubleshoot
    Download Microsoft Network Monitor tool
    Thanks
    Abhishek

  • I no longer get the whoosh when sending e-mail from my iPad2.  How do I get it back?

    The email no longer gives the swoosh sound when it is sent.  When I go to Sent, I see that it has been sent.  Also I no longer get an alarm sound on Timer+ app, however I do get an alarm sound using Clock app.  I have rebooted the iPad, but no change.

    Have you checked your Sound settings? Settings>Sounds. Go down to the "Sent Mail" line item and select it. Select a different sound, then re-select the Swish sound and close Settings. Then send an email to see if it is working.
    Cheers,
    GB

  • Firefox crashes when sending e-mail from hotmail. This is not an issue for safari. Help!

    Firefox keeps crashing when I try to create a new e-mail in hotmail or forward an e-mail. It is a browser issue, because when I try to do the same thing in safari, I don't have any trouble.

    I did. When I type in about crashes in the address bar I get this:
    Submitted Crash Reports
    No crash reports have been submitted.
    How can I search for a crash signature when I don't get one? Is there something I can do to make sure that I do get one.

  • Send E-mail from Oracle (9.2.0.1) : SMTP transient error: 421 Service not a

    I have used Oracle 9i server (9.2.0.1 version) on Windows XP machine(with SP2).I want to send Email from PL/SQL procedure.
    My Question is what sort of configuration needed to perform this activity?
    I have installed IIS (Internet Information Service)
    in my machine, then configure my SMTP mail server
    with a valid email id and password given TCP port 465.
    Later I came to know that to send Email from PL/SQL I have to install Oracle JServer Code. Follow three steps. the steps are
    1. Execute the script as sys "$ORACLE_HOME\javavm\install\initjvm.sql"
    2. Execute the loadjava classfile as
    $ORACLE_HOME\plsql\jlib>loadjava -f -v -r -u sys/**** plsql.jar
    3. Execute the script as sys "$ORACLE_HOME\rdbms\admin\initplsj.sql"
    I sucessfully executed the first step, but for the second step iam not able to locate the plsql.jar file in the specified path.
    So Please tell me if there is any other method to perform this task
    My code is as follows.
    CREATE OR REPLACE PROCEDURE SEND_MAIL (
                                  msg_to varchar2,
                                  msg_subject varchar2,
                                  msg_text varchar2
                                  IS
                                  c utl_smtp.connection;
                                  rc integer;
                                  msg_from varchar2(50) := '[email protected]';
                                  mailhost VARCHAR2(30) := 'mail.google.com';
                             BEGIN
                                  c := utl_smtp.open_connection(mailhost, 465);
                                  utl_smtp.helo(c, mailhost);
                                  utl_smtp.mail(c, msg_from);
                                  utl_smtp.rcpt(c, msg_to);
                                  dbms_output.put_line(' Start Sending data');
                                  utl_smtp.data(c,'From: Oracle Database' || utl_tcp.crlf ||
                                  'To: ' || msg_to || utl_tcp.crlf ||
                                  'Subject: ' || msg_subject ||
                                  utl_tcp.crlf || msg_text);
                                  dbms_output.put_line(' Finish Sending data');
                                  utl_smtp.quit(c);
              EXCEPTION
                   WHEN UTL_SMTP.INVALID_OPERATION THEN
    dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.');
                   WHEN UTL_SMTP.TRANSIENT_ERROR THEN
    dbms_output.put_line(' Temporary e-mail issue - try again');
    WHEN UTL_SMTP.PERMANENT_ERROR THEN
    dbms_output.put_line(' Permanent Error Encountered.');
    END;
    Procedure Created.
    SQL> execute prc_send_mail('[email protected]','[email protected]','Good Morning.');
    BEGIN prc_send_mail('[email protected]','[email protected]','Good Morning.'); END;
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 374
    ORA-06512: at "SCOTT.PRC_SEND_MAIL", line 19
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at line 1.
    Please tell me how to solve this problem.
    Thank You.

    1) Why did you install an SMTP server locally and then tell your code to try to use the server mail.google.com?
    2) The error you're getting is from mail.google.com indicating that Google isn't running an open SMTP server there. I would be very surprised if Google were running a publicly available SMTP server anywhere since that would be an invitation for spammers.
    Justin

  • HTML Mails from Safari using Mailing List from Excel sent by Mac Mail

    Hi.... Anybody got any ideas how I can use VCards or Excel as a database to send HTML mails from Mac Mail without having to add the names into my personal address book as I do not want client contacts in with my contacts... any ideas ? Thanks....

    This should not occur.
    As an experiment, I have some old saved received messages in a user created mailbox that were addressed to an old email account/address that was cancelled. When selecting Reply for any of these messages, my default Send New Mail from account is chosen as the sending email account/address.
    When doing the same for any messages located in a user created mailbox that were addressed to an existing valid email account/address that is not my default Sent New Mail from account selection, the account/email address the message was addressed to is the account chosen as the sending email account/address.
    I believe there is some minor corruption to your Mail.app preference file. Let me know if you need the instructions for targeting the preference file which will require re-entering all email account information.

  • When I send e-mails from my iPad the wrong last name appears, even though I have updated my Apple details. How can I correct this ?

    When I send e mails from my iPad my previous last name still appears, even though I have changed it on my Apple a/c.
    How can I correct this, please ?

    Try 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.
    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
    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
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    The iPad's Mail app has no provisions for creating groups. However, 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/group-email!-mail-client-attachments/id380690305 ?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/
     Cheers, Tom

  • When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    http://www.joshjacob.com/mac-development/tnef.php

  • When I send a mail from my iPhone, it displays the mail server name to the receiver if the mail and does nog display my name or e mail address. This only since upgrading my iPhone5 to iOS7

    When I send a mail from my iPhone, it displays the mail server name to the receiver if the mail and does not display my name or e mail address. This only since upgrading my iPhone5 to iOS7. I've checked all settings etc. anyone have a solution please?

    Rectory wrote:
    Please can someone tell me how  I can change this so when I send a mail from my phone and from the IPad that it reads from me.
    You need a separate email address but you've already ruled out that solution.

  • I am set up mac mini and when I test the mail server by sending a mail from administrator to administrator I get the error message 'Diagnostic-Code: X-Postfix; connect to 127.0.0.1[127.0.0.1]:10024: Connection    refused'. Can any one suggest a solution

    I set up mac mini and when I test the mail server by sending a mail from administrator to administrator I get the error message 'Diagnostic-Code: X-Postfix; connect to 127.0.0.1[127.0.0.1]:10024: Connection    refused'. Can any one suggest a solution

    Thanks. Where could I possibly look for a firewall rule. I knowingly did not creat any. My system has internet coming to a Modem which then is connected to a wireless router. I have computers connecting to the router through cable as well as wireless. One of these computers has been our  mailserver using Mercury and Pegasus and that computer has a static IP address. The Mac Mini also has been assigned a different srtatic IP address. I have only set up user account, none of them an email account as I initially expect them to receive only internal mails. Is it necessary that I must set up an email id for each user while setting up the user account. My server id is server.local. So would the email id for local users be [email protected]?

  • How do I remove the "Sent from Blackberry" when sending e-mails?

    I send e-mails from my Blackberry all the time, but I do not want it to say "sent from blackberry" on the e-mails. How do I fix this?

    michelebow wrote:
    Is there any way to remove this line if I am NOT using an Enterprise server?
    Hello,
    the answer of d_fisher concerns only those who don't use an Enterprise server.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • What has happened to the rotating disk when sending e-mails in 6.2?

    What has happened to the rotating disk when sending e-mails in 6.2?

    Fast user switching is on... I use the Name reference but I've tried switching to icon with the same result. If the a account I'm switching to is not logged in I get a blank Blue screen for about 2 seconds then the desktop of the account. If the account is already logged in then from the login window (all accounts have passwords) it just switches directly to the desktop.
    I have spaces turned on on my main account however none of the other accounts do, the same thing happens regardless of which account you are switching from or to.
    If you hadn't said it was working for you I would have believe they just pulled it from Leopard.

  • Sending HTML email from outlook 2013 exchange it comes broken to non outlook clients.

    Hi, when i send out email from my outlook 2013 where is configured Microsoft exchange account it comes broken to gmail clients. All html mail is broken and attachments comes like this file.jpg_ or adobe.pdf_ If i send mail to outlook user
    all is good but if client uses something else , they receive broken mail.
    Msg comes to gmail clients like this 
    http://community.office365.com/cfs-filesystemfile.ashx/__key/communityserver-components-userfiles/00-00-39-06-09-Attached+Files/4745.errror.jpg
    Without signature and normal phone and email. 
    Client is using windows 8.1.
    I started discussion here http://community.office365.com/en-us/forums/158/p/227602/704778.aspx#704778 but they sent me to your forum. You can read our discussion
    and see what i did already.

    Hi,
    Some question to help narrowing down the causes:
    1. Does this issue occur when using Outlook to configure the Gmail account, does the format change?
    2. Does this issue also occur when sending HTML emails to other remote domains?
    If the emails is fine when opening them on Outlook, it think Exchange does not change anything on the email. The issue occurs depends on how email clients open the email.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Sending E-Mail from PL/SQL

    I have used Oracle 9i (9.2.0.1) on windows Xp machine. I want to send e-mail
    from PL/SQL procedure.
    I execuete the procedure as follows friom SQL prompt in SCOTT user..
    execute prc_send_mail('[email protected]','[email protected]','Test message');
    before that I create the procedure in scott user and it is created successfully in scott user..
    Procedue is as follows...
    CREATE OR REPLACE PROCEDURE prc_send_mail (p_sender IN VARCHAR2,
    p_recipient IN VARCHAR2,
    p_message IN VARCHAR2)
    as
    l_mailhost VARCHAR2(255) := 'mail.yahoo.com';
    l_mail_conn utl_smtp.connection;
    BEGIN
    l_mail_conn := utl_smtp.open_connection(l_mailhost, 25);
    utl_smtp.helo(l_mail_conn, l_mailhost);
    utl_smtp.mail(l_mail_conn, p_sender);
    utl_smtp.rcpt(l_mail_conn, p_recipient);
    utl_smtp.open_data(l_mail_conn );
    utl_smtp.write_data(l_mail_conn, p_message);
    utl_smtp.close_data(l_mail_conn );
    utl_smtp.quit(l_mail_conn);
    end;
    unfortunately i have receiveed some error which I mentioned below...
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 138
    ORA-06512: at "SCOTT.PRC_SEND_MAIL", line 9
    ORA-06512: at line 1.
    Please anyone giove me the solution..

    > ORA-29278: SMTP transient error: 421 Service not available
    Not an Oracle error. This is the SMTP server telling you to go and get stuffed. It does not want to talk to you.
    See http://www.faqs.org/rfcs/rfc821.html.
    The RFC says that this type of response code can be for example when the SMTP server is about to shutdown - thus informing the client that it cannot be serviced.
    But seeing that you're trying to hijack mail.yahoo.com as your SMTP server.. I'm not surprise that the server is giving you the bird.

Maybe you are looking for

  • Syntax error in NQSConfig.ini.file

    # NQSConfig.INI # Copyright (c) 1997-2006 Oracle Corporation, All rights reserved # INI file parser rules are: # If values are in literals, digits or _, they can be # given as such. If values contain characters other than # literals, digits or _, val

  • Acrobat 9.1 AND Reader 9.1

    When installing this in a domain the following happens, when pushing the package to the clients: When the user is an administrator when it is installed the program get this error when opening, "Runtime Error! Program c:\program files\adobe\reader 9.0

  • ECC 6 with BIW on same server?

    Hi, I am installing ECC 6 (ABAP) in one server, now there is a requirement for BW also, in ECC 6 version BW comes with the ERP 2005 CDs, and does SAP recommends to install in same server as well?. (In ECC 5 I had a separate server for BW, and install

  • XML Gateway - XGM Mapping - Multiple NOTES Mapping

    Hi One of our Inbound transaction having Multiple NOTES. They are coming like below <NOTES index="1">PM~#*$PART DESCRIPTION7050-T76511</NOTES> <NOTES index="2">CR~#*$FOLLOW-UP COMMENTSMGE16424 17P6W6530-532</NOTES> <NOTES index="3">H7~#*$ITEM PURCHAS

  • Maverick lost my Images

    A friend reports that after installing Maverick she has lost access to her images in iPhoto.  How can she get to them without buying an upgrade to iPhoto. Aren't they still on her hard disk? Mary Lou