SMTP permanent error: 554 5.7.1

Hi all,
we are using the oracle database 10g
from the data basewe are trying to send the e-mail using util package it is working fine for the same domain . while we tried to send gmail or different other domains it's giving the following error .
ORA-29279: SMTP permanent error: 554 5.7.1 <[email protected]>: Relay access denied
can anybody help me ow to resolve this,
thank you.
this is the procedure we are using
=========================
CREATE OR REPLACE PROCEDURE mailout
sender IN VARCHAR2,
recipient IN VARCHAR2,
subject IN VARCHAR2,
cont_person IN VARCHAR2,
ls_msg1 in varchar2
)IS
crlf VARCHAR2(2):= UTL_TCP.CRLF;
connection utl_smtp.connection;
mailhost VARCHAR2(30) := '192.168.1.35';
header VARCHAR2(1000);
msg_line VARCHAR2(1000);
message varchar2(4000);
BEGIN
-- Start the connection.
connection := utl_smtp.open_connection('192.168.1.35',25);
header := 'Date: '||TO_CHAR(SYSDATE,'dd Mon yy hh24:mi:ss')||crlf||
'From: '||sender||''||crlf||
'Subject: '||subject||crlf||
'To: '||recipient||crlf;
message := 'Dear All,'||CRLF||
' '||CRLF||
ls_msg1||CRLF||
' '||CRLF||
' '||CRLF||
' '||CRLF||
'Best Regards'||CRLF||
'k.k.nagaraju';
-- Handshake with the SMTP server
utl_smtp.helo(connection, mailhost);
utl_smtp.mail(connection, sender);
utl_smtp.rcpt(connection, recipient);
utl_smtp.open_data(connection);
-- Write the header
utl_smtp.write_data(connection, header);
utl_smtp.write_data(connection, crlf ||message);
-- The crlf is required to distinguish that what comes next is not simply part of the header.
utl_smtp.close_data(connection);
utl_smtp.quit(connection);
EXCEPTION
WHEN UTL_SMTP.INVALID_OPERATION THEN
dbms_output.put_line('1-'||SQLERRM);
WHEN UTL_SMTP.TRANSIENT_ERROR THEN
dbms_output.put_line('2-'||SQLERRM);
WHEN UTL_SMTP.PERMANENT_ERROR THEN
dbms_output.put_line('3-'||SQLERRM);
END;

You might want to read:
Error while executing the utl_mail package
http://oraclequirks.blogspot.com/2009/08/ora-29279-smtp-permanent-error-554-571.html

Similar Messages

  • ORA-29279: SMTP permanent error: 554 5.5.1 Error: no valid recipients

    Hi ,
    Following error msg coming when notification was sending to mail .
    ORA-29279: SMTP permanent error: 554 5.5.1 Error: no valid recipients
    Please advise how to clear this error.
    Thanks&Regards
    Ranganath Konikineni

    It's not related to oracle. Check How you made the connection with SMTP server and to whom you are sending the mail.
    Post your code with tag like {noformat} Your lines of code {noformat}                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Status :ORA-29279: SMTP permanent error: 554 5.7.1 email id ACL helo_host

    Hi All,
    I am trying to send the email through database, but i am getting below error message.
    Please let me know if you any one resolved this issue.
    Status :ORA-29279: SMTP permanent error: 554 5.7.1 <email id>: ACL helo_hostnames
    Thanks,
    Venkat.

    user540791 wrote:
    Hi All,
    I am trying to send the email through database, but i am getting below error message.
    Please let me know if you any one resolved this issue.
    Status :ORA-29279: SMTP permanent error: 554 5.7.1 <email id>: ACL helo_hostnames
    Thanks,
    Venkat.Venkat,
    Have you checked MOS [ID 402678.1] (ORA-29279 Relay Errors When Using utl_smtp to Send Email)?
    Best Regards,
    Gokhan
    If this question is answered, please mark appropriate posts as correct/helpful and the thread as closed. Thanks

  • SMTP permanent error

    Hi all,
    we are using the oracle database 10g
    from the data basewe are trying to send the e-mail using util package it is working fine for the same domain . while we tried to send gmail or different other domains it's giving the following error .
    ORA-29279: SMTP permanent error: 554 5.7.1 <[email protected]>: Relay access denied_
    can anybody help me ow to resolve this,
    thank you.
    this is the procedure we are using
    =========================
    CREATE OR REPLACE PROCEDURE mailout
    sender IN VARCHAR2,
    recipient IN VARCHAR2,
    subject IN VARCHAR2,
    cont_person IN VARCHAR2,
    ls_msg1 in varchar2
    )IS
    crlf VARCHAR2(2):= UTL_TCP.CRLF;
    connection utl_smtp.connection;
    mailhost VARCHAR2(30) := '192.168.1.35';
    header VARCHAR2(1000);
    msg_line VARCHAR2(1000);
    message varchar2(4000);
    BEGIN
    -- Start the connection.
    connection := utl_smtp.open_connection('192.168.1.35',25);
    header := 'Date: '||TO_CHAR(SYSDATE,'dd Mon yy hh24:mi:ss')||crlf||
    'From: '||sender||''||crlf||
    'Subject: '||subject||crlf||
    'To: '||recipient||crlf;
    message := 'Dear All,'||CRLF||
    ' '||CRLF||
    ls_msg1||CRLF||
    ' '||CRLF||
    ' '||CRLF||
    ' '||CRLF||
    'Best Regards'||CRLF||
    'k.k.nagaraju';
    -- Handshake with the SMTP server
    utl_smtp.helo(connection, mailhost);
    utl_smtp.mail(connection, sender);
    utl_smtp.rcpt(connection, recipient);
    utl_smtp.open_data(connection);
    -- Write the header
    utl_smtp.write_data(connection, header);
    utl_smtp.write_data(connection, crlf ||message);
    -- The crlf is required to distinguish that what comes next is not simply part of the header.
    utl_smtp.close_data(connection);
    utl_smtp.quit(connection);
    EXCEPTION
    WHEN UTL_SMTP.INVALID_OPERATION THEN
    dbms_output.put_line('1-'||SQLERRM);
    WHEN UTL_SMTP.TRANSIENT_ERROR THEN
    dbms_output.put_line('2-'||SQLERRM);
    WHEN UTL_SMTP.PERMANENT_ERROR THEN
    dbms_output.put_line('3-'||SQLERRM);
    END;

    As this is database procedure and UTL_SMTP query it should be posted in {forum:id=75} forum.
    While on the point, gmail and some other mail systems use TLS and that requires tunnels to setup using Bitwise Tunneler , STunnel,etc.
    Regards,

  • ORA-29279: SMTP permanent error: To Send Mail from Oracle 10g (10.2.0.1)

    I have installed Oracle 10g (10.2.0.1) on Windows XP (SP2) machine at my home PC.There is a broadband connection on my home PC.I have installed UTL_MAIL package and then set SMTP_OUT_PARAMETER by the following SQL Statement.
    My machine IP address is 192.168.0.3
    SQl> alter system set smtp_out_server = 'smtp.bsnl.in:25' scope = 25;
    Then we run the following script.
    BEGIN
    UTL_MAIL.SEND(
    SENDER => '[email protected]',
    RECIPIENTS => '[email protected]',
    SUBJECT => 'Testing UTL_MAIL',
    MESSAGE => 'The receipt of this email means'||
    'that it works for UTL_MAIL'
    END;
    Then following error message comes.
    BEGIN
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 553 Authentication is required to send mail as
    <[email protected]>
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 222
    ORA-06512: at "SYS.UTL_MAIL", line 407
    ORA-06512: at "SYS.UTL_MAIL", line 594
    ORA-06512: at line 2
    Can anybody suggest the solution of the above problem.

    Hi,
    is your smtp server configured to use anonymous connection?
    Attackwave
    Reply Code       Description
    211      System status, or system help reply
    214      Help message [Information on how to use the receiver or the meaning of a particular non-standard command; this reply is useful only to the human user]
    220      <domain> Service ready
    221      <domain> Service closing transmission channel
    250      Requested mail action okay, completed
    251      User not local; will forward to <forward-path>
    252      OK, pending messages for node <node> started. Cannot VRFY user (for example, info is not local), but will take message for this user and attempt delivery.
    253      OK, <messages> pending messages for node <node> started
    354      Start mail input; end with <CRLF>.<CRLF>
    355      Octet-offset is the transaction offset
    421      <domain> Service not available, closing transmission channel (This may be a reply to any command if the service knows it must shut down.)
    450      Requested mail action not taken: mailbox unavailable [for example, mailbox busy]
    451      Requested action terminated: local error in processing
    452      Requested action not taken: insufficient system storage
    453      You have no mail.
    454      TLS not available due to temporary reason. Encryption required for requested authentication mechanism.
    458      Unable to queue messages for node <node>
    459      Node <node> not allowed: reason
    500      Syntax error, command unrecognized (This may include errors such as command line too long.)
    501      Syntax error in parameters or arguments
    502      Command not implemented
    503      Bad sequence of commands
    504      Command parameter not implemented
    521      <Machine> does not accept mail.
    530      Must issue a STARTTLS command first. Encryption required for requested authentication.
    534      Authentication mechanism is too weak.
    538      Encryption required for requested authentication mechanism.
    550      Requested action not taken: mailbox unavailable [for , mailbox not found, no access]
    551      User not local; please try <forward-path>
    552      Requested mail action terminated: exceeded storage allocation
    *553      Requested action not taken: mailbox name not allowed [for example, mailbox syntax incorrect]*
    554      Transaction failed

  • ORA-29279: SMTP permanent error: 550 5.7.1

    Dear All,
         I am trying to send a mail from my database server but getting this following error:
    ORA-29279: SMTP permanent error: 550 5.7.1
    My database server IP is :192.168.10.242
    And I set the SMTP_OUT_SERVER parameter : 192.168.10.242.
    Please help me, how can I solve this problem?

    mwz wrote:
    Dear All,
         I am trying to send a mail from my database server but getting this following error:
    ORA-29279: SMTP permanent error: 550 5.7.1
    My database server IP is :192.168.10.242
    And I set the SMTP_OUT_SERVER parameter : 192.168.10.242.
    Please help me, how can I solve this problem?I wonder if this error message was followed by "554 5.0.0 Service unavailable"? Do you have an email server with a SMTP receive connector on the same server as the Oracle instance? SMTP_OUT_SERVER should point to the remote SMTP (email) server which will receive and route the email message. The documentation could have made that point a little more clear, see:
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10755/initparams198.htm
    If you are able to resolve the above configuration problem, and are still having trouble, you may need to talk with the person responsible for the SMTP (email) server. That person may need to review the SMTP logging (if enabled) to determine the exact problem, and offer suggestions to you and/or modify the configuration of the SMTP server to permit delivery of email messages from the Oracle server. The SMTP log might look something like this one:
    http://playground.sun.com/mobile-ip/WG-archive/current/msg01660.html
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • File does not exist, SMTP permanent error

    Hi All,
    I got stuck with this error, please help me on this.
    Mine is windows OS, apps 11.5.10.2
    I have a cocncurrent program out file (.out) in out directory and also the same file with naming convention 'name_concurrenrequestid_1.EXCEL' extension in the same directoy. I need to send this EXCEL file as attachment to email id in windows environment. Whenver submit the request is giving the error.
    File Does Not Exist
    Error in Send Mail: ORA-29279: SMTP permanent error: 501 5.5.4 Invalid Address.
    I verified the file , it is already existed in the directory. Why did it not recognized the file. I tried the below query in toad,, but got the 'FALSE' for %APPLCSF, and got the TRUE for custom directory which has the same file
    declare
    v_boolean BOOLEAN;
    v_Len NUMBER;
    v_Block NUMBER;
    BEGIN
    utl_file.fgetattr('%APPLCSF%\%APPLOUT', 'name_concurrentreuestid_1.EXCEL', v_boolean, v_Len, v_Block);
    if v_boolean then
    dbms_output.put_line('v_boolean: TRUE');
    dbms_output.put_line('L:' || to_char(v_Len));
    dbms_output.put_line('B:' || to_char(v_Block));
    else
    dbms_output.put_line('EX: FALSE');
    end if;
    END;
    I do have full access on this folder. Once it recognizes the file I can send the mail.
    Appreciate any help on this. Plz...........
    Thanks,
    JP

    Thank you for the quick reply Srini.
    But my email program is working fine if I change the path from %APPLCSF%APPLOUT to Customtop\out directory to identify the file. It was sent the attachment also to my email id.
    But my requirement is I need to send the file from Out directory not from customtop out . Even it is not recognized the .out file using this UTL_File.fgetattr() in out directory.
    Appreciate any furthur assistance.
    Thanks,
    JP

  • ORA-29279: SMTP permanent error: 501 5.5.2

    im getting the error
    ORA-29279: SMTP permanent error: 501 5.5.2 Syntax error in parameters scanning "FROM"
    kindly help . What is the problem exactly?

    I'm having this same issue now.
    This doesn't happen to my other databases on another server.
    Basically, I have a startup trigger that sends out mail, and I'm finding on database on a particular (new) server, UTL_SMTP is getting this error.
    Have you figured out your root cause?

  • ORA-29279: SMTP permanent error: 530 5.7.0 Must issue a STARTTLS command fi

    Hello friend,
    I have changed my smtp server to send email but now i am getting a different error like given below
    ORA-29279: SMTP permanent error: 530 5.7.0 Must issue a STARTTLS command first. 2sm141783tif.39
    I dont know what is this STARTTLS command.
    Pls help me ;
    Thanks,
    Uttam SIngh

    It is NOT obvious to someone experiencing a ORA-29279: SMTP permanent error: messages that the root cause is in the SMPT server, it is still an ORA error code. It is especially NOT OBVIOUS, if that person is OBVIOUSLY a newbie. It is OBVIOUS that when you essentially flame people for asking such questions you discourage them from ever asking questions on your forum.
    Could you PLEASE, PLEASE, PLEASE be a little less arrogant and stop cluttering up this forum with over-the-top and OFF responses????
    Thank You in Advance Mr. Expert.

  • ORA-12012: error on auto execute of job 754461 ORA-29279: SMTP permanent error: ORA-29279: SMTP permanent error: 501 Syntax error, parameters in command "RCPT TO:" unrecognized or missing ORA-06512: at "SYS.UTL_SMTP", line 20 ORA-06512: at "SYS.UTL_SMTP",

    Hi ,
    I am getting below error frequently in alert log of database.
    ORA-12012: error on auto execute of job 754461
    ORA-29279: SMTP permanent error: ORA-29279: SMTP permanent error: 501 Syntax error, parameters in command "RCPT TO:" unrecognized or missing
    ORA-06512: at "SYS.UTL_SMTP", line 20
    ORA-06512: at "SYS.UTL_SMTP", line 98
    ORA-06512: at "SYS.UTL_SMTP", line 240
    ORA-06512: at "APPS.EIS_UTIL_PKG", line 94
    ORA-06512: at "APPS.HKD_PO_ADDON_PKG", line 110
    ORA-06512: at line 1

    You have a job running in the database. Its job ID is 754461
    It looks as if that job runs APPS.HKD_PO_ADDON_PKG
    That job is attempting to send mail using UTL_SMTP and apparently passing some strange value to SMTP server for the RCPT TO: parameter.

  • UTL.MAIL error ORA-29279: SMTP permanent error: 501 Address Syntax Error in

    Hi,
    I am new to the forum so please excuse if I post incorrectly without conforming to the standards.
    We need to send mails using the UTL.MAIL package and have installed them on the database.
    Whenever I am trying to send an email I am getting the following error:
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 501 Address Syntax Error in
    [email protected]
    ORA-06512: at "SYS.UTL_MAIL", line 654
    ORA-06512: at "SYS.UTL_MAIL", line 671
    ORA-06512: at line 2
    The test code which I am running is as follows:
    BEGIN
    UTL_MAIL.send(sender => 'test <[email protected]>',
    recipients => '[email protected]',
    subject => 'UTL_MAIL test subject',
    message => 'UTL_MAIL test body');
    END;
    I have tried different combinations:
    BEGIN
    UTL_MAIL.send(sender => 'test "<[email protected]>"',
    recipients => '[email protected]',
    subject => 'UTL_MAIL test subject',
    message => 'UTL_MAIL test body');
    END;
    even tried
    BEGIN
    UTL_MAIL.send(sender => '[email protected]',
    recipients => '[email protected]',
    subject => 'UTL_MAIL test subject',
    message => 'UTL_MAIL test body');
    END;
    Everytime I am getting the same error.
    This seems to be working with an exchange mail server but never on the SMTP server.
    In the SMTP server logs the sender address is not having the angular brackets <> unlike the other mails which are being sent over.
    It seems that the SMTP server is pretty strict and the SMTP admin will not change any settings on the server.
    The oracle version is as follows
    Oracle Database 11g Release 11.2.0.1.0 - 64bit Production
    Could you please help me out with a solution.
    Some how the angular brackets are geting stripped off (which UTL MAIL package generally does), Is there any way in which I can include the angular brackets.
    Edited by: 984757 on 29-Jan-2013 02:56
    Edited by: 984757 on 29-Jan-2013 02:57

    I dislike UTL_MAIL - clunky and poor abstraction interface, and not well written.
    Had a look at the code. It does this:
    WHILE (ALL_RCPTS IS NOT NULL) LOOP
          UTL_SMTP.RCPT(MAIL_CONN,'&lt;' || GET_ADDRESS(ALL_RCPTS) || '&gt;');
    END LOOP;The GET_ADDRESS() function process the ALL_RCPTS parameter, returns the 1st address from it, and updates the (in/out) parameter with the remaining string.
    SQL> var address varchar2(200);
    SQL> exec :address := '<[email protected]>,[email protected]';
    PL/SQL procedure successfully completed.
    SQL> exec dbms_output.put_line( 'get_address='||UTL_MAIL.GET_ADDRESS(:address)||' address='||:address );
    get_address=[email protected] address=[email protected]
    PL/SQL procedure successfully completed.
    SQL> exec dbms_output.put_line( 'get_address='||UTL_MAIL.GET_ADDRESS(:address)||' address='||:address );
    get_address=[email protected] address=
    PL/SQL procedure successfully completed.
    SQL> The address is explicitly surrounded by brackets as per the RFC. So that is what your SMTP server should see.
    If not - perhaps then our UTL_MAIL versions do not match. Cannot recall from what version I pulled and unwrapped the UTL_MAIL package code I have.
    Personally though, I've ceased using UTL_MAIL a while back. It lacks in may respects. I have written my own mail package that supports multiple attachment, complex Mime formatting, attachments of 20+ MB in size, and so on - running on the UTL_SMTP interface (that provides the transport layer for sending mail). And for issues like you are facing, I suggest considering using UTL_SMTP directly.
    Edited by: Billy Verreynne on Jan 29, 2013 12:52 PM
    (Updated the code with HTML entity names to get the code snippet to render correctly)

  • Unable to send Email: ORA-29279: SMTP permanent error: 501 Syntax error in

    We have a procedure use utl_smtp in 10g (10.0.4). we got this msg (Unable to send Email: ORA-29279: SMTP permanent error: 501 Syntax error in arguments) when send e-mail to another mail box (internal),
    but we use the same procedure running in 10g(10.03) it works perfectly. Is Oracle 10g(10.0.4 vs. 10.0.3) causing this issue ? Can someone shed some lights on my head ? Thx.

    We found what is wrong about this.
    The problem is in CC we had a e-mail address has one space like this test [email protected] so UTL_smtp doesn't like this kind format then we recreated a new e-mail address without space and it works fine.

  • Getting ORA-29279: SMTP permanent error: 553

    Error report:
    ORA-29279: SMTP permanent error: 553 Requested action not taken: mailbox name not allowed
    ORA-06512: at "SYS.UTL_SMTP", line 20
    ORA-06512: at "SYS.UTL_SMTP", line 98
    ORA-06512: at "SYS.UTL_SMTP", line 221
    ORA-06512: at "SYS.UTL_MAIL", line 397
    ORA-06512: at "SYS.UTL_MAIL", line 608
    ORA-06512: at line 2
    29279. 00000 - "SMTP permanent error: %s"*Cause: A SMTP permanent error occurred.
    *Action:   Correct the error and retry the SMTP operation..
    The mail server changed in our company and i have updated the smtp_out_server parameter in system to reflect the new ip with the port.
    But when i try testing the utl_mail package, i get this error message. It used to work fine with the old mail server. Nothing else has changed.
    Please advice.
    Thanks
    Kavita

    994008 wrote:
    Error report:
    ORA-29279: SMTP permanent error: 553 Requested action not taken: mailbox name not allowed
    ORA-06512: at "SYS.UTL_SMTP", line 20
    ORA-06512: at "SYS.UTL_SMTP", line 98
    ORA-06512: at "SYS.UTL_SMTP", line 221
    ORA-06512: at "SYS.UTL_MAIL", line 397
    ORA-06512: at "SYS.UTL_MAIL", line 608
    ORA-06512: at line 2
    29279. 00000 - "SMTP permanent error: %s"*Cause: A SMTP permanent error occurred.
    *Action:   Correct the error and retry the SMTP operation..
    The mail server changed in our company and i have updated the smtp_out_server parameter in system to reflect the new ip with the port.
    But when i try testing the utl_mail package, i get this error message. It used to work fine with the old mail server. Nothing else has changed.
    Please advice.
    Thanks
    Kavitawhile logged onto the DB then do as below
    telnet <new_mail_server> 25
    post results back here

  • SMTP permanent error: 501 5.1.7 Invalid address

    hi,
    I am getting follwoing error where executing procedure. i am able to send from that server
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 501 5.1.7 Invalid address
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 222
    Thanks,

    Seems the issue is with the email address which you are referring to in your execution or else please check whether the smtp server is configured properly.

  • ORA-29279: SMTP permanent error: 530 5.7.0 Must issue a STARTTLS command

    Hi,
    When am sending mail through apex_mail it getting an error { " ORA-29279: SMTP permanent error: 530 5.7.0 Must issue a STARTTLS  "}
    ACL Package
    {{{{  " DECLARE
    ACL_PATH VARCHAR2(4000);
    ACL_ID RAW(16);
    BEGIN
    -- Look for the ACL currently assigned to '*' and give APEX_040100
    -- the "connect" privilege if APEX_040000 does not have the privilege yet.
    SELECT ACL INTO ACL_PATH FROM DBA_NETWORK_ACLS
    WHERE HOST = '*' AND LOWER_PORT IS NULL AND UPPER_PORT IS NULL;
    -- Before checking the privilege, make sure that the ACL is valid
    -- (for example, does not contain stale references to dropped users).
    -- If it does, the following exception will be raised:
    -- ORA-44416: Invalid ACL: Unresolved principal 'APEX_040100'
    -- ORA-06512: at "XDB.DBMS_XDBZ", line ...
    SELECT SYS_OP_R2O(extractValue(P.RES, '/Resource/XMLRef')) INTO ACL_ID
    FROM XDB.XDB$ACL A, PATH_VIEW P
    WHERE extractValue(P.RES, '/Resource/XMLRef') = REF(A) AND
    EQUALS_PATH(P.RES, ACL_PATH) = 1;
    DBMS_XDBZ.ValidateACL(ACL_ID);
    IF DBMS_NETWORK_ACL_ADMIN.CHECK_PRIVILEGE(ACL_PATH, 'APEX_040100',
    'connect') IS NULL THEN
    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(ACL_PATH,
    'APEX_040100', TRUE, 'connect');
    END IF;
    EXCEPTION
    -- When no ACL has been assigned to '*'.
    WHEN NO_DATA_FOUND THEN
    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('power_users.xml',
    'ACL that lets power users to connect to everywhere',
    'APEX_040100', TRUE, 'connect');
    DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL('power_users.xml','*');
    END;
    COMMIT;
    And i changed in the instance settings under email to smtp credentials.
    can anyone tel me about this error.??
    My apex version - 4.1.1
    database version - 11gr2
    Edited by: Tulasi 1243 on Aug 17, 2012 4:27 PM

    Hi,
    Many mail server provides like gmail use TLS/SSL for mail transmission. The error suggest your mail server is expecting a TLS/SSL connection.
    The TLS/SSL connection is not part of the UTL_SMTP and UTL_MAIL API. You have to either use Wallet as described here http://oracleblues.blogspot.in/2010/09/11g-release-2-11202-new-utlsmtp.html or use a third party tunneler like stunnel as described here http://monkeyonoracle.blogspot.in/2009/11/plsql-and-gmail-or-utlsmtp-with-ssl.html
    Cheers,

Maybe you are looking for

  • Duplex printing problem with hp 9500 (right side always just half printed)

    Since OS X 10.6 was released there is a problem with the print out of duplex printed pages (specially via Indesign CS4 broschure printing function). Using Mac OS X 10.5.8 with old and new driver everything is fine - but under 10.6, 10.6.1 or 10.6.2 n

  • Implementing routine in DTP to restrict value

    Hi , I want to implement a routine in DTP to restrict value 'F' or 'f' which can appear anywhere in the number of a field. ex : "00000F389877" . As 'F' appears at the six position in the number, there can be a possibility of 'F'/'f' appearing at any

  • Import from catalog: what happens to this catalog ?

    Hello everyone! I follow Scott Kelbys LR3 book for transferring my work from my studio laptop to my main processing computer in my office using the EXPORT TO CATALOG technique. So then I transfer the folder to where I keep my LR pictures in MY  COMPU

  • Multiple y axes overlay eachother

    I'm working on a program which will allow users to plot up to 5 different channels with indepdnant y axes. I make them visible / invisible depending on how many channels are being plotted.  Unfortunately, the axes start to overlap eachother.  I decid

  • Provisioning different User Type to different systems

    Dear Experts, Is there a way by which we can provision different user types to defferent systems via CUP? We have the following requirement: 1. User created in ECC should be dialog user 2. User created in BW should be service user 3. User always sele