TLS problems with OIM mailing through exchange server

Dear All,
I ran into a problem concerning the internal mailing mechanism Oracle provides in OIM.
Im trying to send email definitions through a custom made mail adapter.
Each time i send it i get a 530 5.7.1. Client was not authenticated error.
We narrowed it down to it being a TLS error since this is required by the exchange mail server we use.
When we turn TLS off the mails are being sent but when it it turned on again the error returns.
it seems the used provider, the javax.mail.provider com.sun.mail.smtp.SMTPTransport does not issue a TLS session.
sun also has an SMTPSSLTransport provider but i dont now where i can config oracle to use that one instead of SMTPTransport (or even if this will solve the issue).
Thanks in advance.

I am actually using that, and sending works fine aslong as TLS is turned off on the exchange server.
When it is turned on i get the 530 5.7.1 client not authenticated error, presumably caused by the Sun SMTPTransport driver used by the internal mechanism of Oracle IDM.
So im wondering whether it is possible to say to OIM: dont use the SMTPTransport driver but the SMTPSSLTransport driver (which hopefully can handle TLS calls)
Anyone? (or clues on how to solve it another way)

Similar Messages

  • Problem with Mavericks Mail and Exchange 2013

    Hello,
    I have just updated to Mavericks a few days ago. Now I have a strange problem.
    The setup with Exchange 2013 works fine ... so I can send&receive mails.
    The problem: I only get new mails. All (few thausand) mails stored on the Exchange account are not synced to mail?!
    Maybe anyone has an idea how to solve this ...
    Thanks,
    Marc

    Some problems with Exchange mail have been solved by disabling Autodiscovery. If that doesn't work, see below.
    Back up all data. Delete the Exchange account from the Internet Accounts preference pane and add it back. If there's still no improvement, continue.
    Quit Mail. Force quit if necessary.
    Back up all data. That means you know you can restore the Mail database, no matter what happens.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail/V2/MailData
    Copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
    Go ▹ Go to Folder
    from the menu bar. Paste into the box that opens (command-V), then press return.
    A folder window will open. Inside it there should be files with names as follows:
    Envelope Index
    ExternalUpdates.storedata
    Move those files to the Desktop, leaving the window open. Other files in the folder may have longer names that begin as above. Move those files, if any, to the Trash.
    Log out and log back in. Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is damaged and that Mail has to quit. Click OK.
    Test. If Mail now works as expected, you can delete the files you moved to the Desktop. Otherwise, post your results.

  • Problems with Calender Entries from Exchange Server

    I think this just started on Friday or Saturday--
    I opened my calender on my iPhone and it seemed a little empty. I noticed that a couple of appointments that I know should be there are not. I restarted the iPhone thinking there was some kind of transient glitch and some (not all) of my missing items appeared. Then disappeared. Then appeared. Then disappeared. Then they stayed gone. Every time I open my calender now, that happens.
    It seems that the items that stay put are the ones that I put directly into my iPhone. Many others come and go, and some never show up at all.
    Thankfully, my Outlook calender seems to be in good shape, although the new items I have put into my phone since Saturday have not synced.
    And my contacts sync with no problem, too. It's just the calender. Any help would be appreciated.
    Rick

    We have a similar problem with one VP's iPhone in our environment. Did some testing today and discovered the following:
    * When an appointment is sent to the VP and he accepts the appointment from his iPhone, all seems well, meaning that the appointment is visible both on his computer's Outlook and on his iPhone calendar.
    * When an appointment is sent to the VP and he accepts it from his computer's Outlook, it still appears as a "new invitation" on his iPhone and, if he does not respond right away from his iPhone, that appointment disappears from his iPhone. It remains on his Outlook calendar. These missing appointments on his iPhone cause scheduling problems for us, as you can imagine!
    So, my question is: how must one handle Outlook appointment schedule acceptance? Further complicating our situation is that this VP has a delegate who accepts appointments on his behalf. We're never quite confident whether his iPhone accurately reflects his actual appointment schedule.
    Please help! Thank you!
    Teija

  • Send mail to exchange server with TLS

    Hi,
    last month I enabled an oracle wallet TDE for creating encription for TS.
    Today, development team needs to send mail to exchange server with TLS.
    So I found this procedure on oracle support Doc ID 1323140.1
    My question is, can I use the same wallet to send mails from db?
    The Oracle Database  11.2.0.3
    Or I need to implement a different type of wallet with certificate?
    Is there, in this case,  a procedure step by step?
    I have never implemented that and I'm very confused....
    Thanks in advanced

    Hi, I have implemented a new wallet with certificates (for test SMTP.gmail.com) and i'm tryied to use this procedure:
    DECLARE
    mailhost VARCHAR2(64) := 'smtp.mydomain.it';
    sender VARCHAR2(64) := '[email protected]';
    recipient VARCHAR2(64) := '[email protected]';
    wallet_pwd VARCHAR2(64) := 'welcome1';
    wallet_loc VARCHAR2(64) := 'file:/etc/ORACLE/FRMSSYST/SMTP/';
    user_name VARCHAR2(64) := 'HDC021319';  -- alias for '[email protected]'
    user_pwd VARCHAR2(64) := 'password';  -- password of [email protected]
    mail_connection utl_smtp.connection;
    BEGIN
    -- Make a secure connection using the SSL port configured with your SMTP server
    -- Note: The sample code here uses the default of 465 but check your SMTP server settings
    mail_connection := utl_smtp.open_connection(
    host => mailhost,
    port => 25,
    wallet_path => wallet_loc,
    wallet_password => wallet_pwd,
    secure_connection_before_smtp => FALSE);
    -- Call the Auth procedure to authorized a user for access to the mail server
    -- Schemes should be set appropriatelty for your mail server
    -- See the UTL_SMTP documentation for a list of constants and meanings
    UTL_SMTP.helo(mail_connection, mailhost);
    UTL_SMTP.STARTTLS(mail_connection);
    UTL_SMTP.AUTH(
    c => mail_connection,
    username => user_name,
    password => user_pwd,
    schemes => 'LOGIN');
    -- Set up and make the the basic smtp calls to send a test email
    utl_smtp.helo(mail_connection, mailhost);
    utl_smtp.mail(mail_connection, sender);
    utl_smtp.rcpt(mail_connection, recipient);
    utl_smtp.open_data(mail_connection);
    utl_smtp.write_data(mail_connection, 'This is a test message using SSL with SMTP.' || chr(13));
    utl_smtp.write_data(mail_connection, 'This test requires an Oracle Wallet be properly configured.' || chr(13));
    utl_smtp.close_data(mail_connection);
    utl_smtp.quit(mail_connection);
    END;
    This procedure, works fine if I try to send an email to smtp.gmail.com (I tried first with gmail with appropriate certificates), but now, when I try to send an email to the local enterprise Exchange server  I get this error:
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 503 5.5.2 Send hello first
    ORA-06512: at "SYS.UTL_SMTP", line 54
    ORA-06512: at "SYS.UTL_SMTP", line 140
    ORA-06512: at "SYS.UTL_SMTP", line 439
    ORA-06512: at line 35
    Thanks in adavanced

  • Why do I get an "unable to connect - There may be a problem with the mail server or network." message from iCloud.  I have verified the settings.  I can access my iCloud account online but can't send or receive e-mail via the mail account.

    Text limits to the "Question" link prevents a full explanation:
    This is a long-time problem.  I have tried to resolve it with Apple but their "Customer Support" is merely a name.
    I can go online and access my e-mail but when I try to send or receive e-mail via iCloud through my internet server (Google fiber now but the same situation existed with my prior service), I receive "There may be a problem with the mail server or network.  Verify the settings for 'Apple Email' and try again.
    "The server returned the error:  The server 'p0-imap.mail.me.com' refused to allow a connection on port 143."
    Well, I have verified the setting and tried again and again and …
    Well, you get the idea …

    JungleTaxi Cabbie wrote:
    Csound1: iCloud: Configuring Mail with Mac OS X v10.6 or iOS 4
    Enter your Incoming Mail Server, User Name, and Password using the following settings:
    Incoming Mail Server: mail.me.com
    User Name: Your iCloud email address (excluding @me.com)
    Password: Your password
    Last Modified: Jun 27, 2013
    Maybe you should test these things before calling people out, because these settings do function perfectly well.
    iCloud is not supported on Snow Leopard or lower, why bother to mention it?
    The OP has an iCloud account, and that can not be opened without Lion or Mountain Lion (on a Mac), IOS5 or 6 (on an iPhone/iPad)
    The document I linked to is Apples documentation for iCloud on current devices,I don't care whether you believe that you know better than they do, but it will affect the people who follow your advice as it won't work
    JungleTaxi Cabbie wrote:
    Also, if you're not running Lion or Mountain Lion, there is no "Mail, Contacts & Calendars" prefpane.
    I never said that there was, perhaps you imagined it.

  • HT4864 I am getting a triangle with an exclamation point next to my inbox...it says: There may be a problem with the mail server or network. Verify the settings for account "MobileMe" or try again.  The server returned the error: Mail was unable to log in

    I can send but cannot recieve email
    This is the messege I am gewtting:
    There may be a problem with the mail server or network. Verify the settings for account “MobileMe” or try again.
    The server returned the error: Mail was unable to log in to the IMAP server “p02-imap.mail.me.com” using “Password” authentication. Verify that your account settings are correct.
    The server returned the error: Service temporarily unavailable

    Also if I go to system preferences accounts and re-enter the password it fixes the glitch sometimes.

  • Has there been any problems with the mail server?

    Has there been any problems with the mail server? I keep getting a notice of server failure.

    Unfortunately the error message does not identify the specific server, I (as many folks do) have several, Mac, yahoo, google ect.

  • Problems setting up Mail to Exchange

    Hey everyone,
    Having a few problems setting up mail to exchange on a Nokia 5800.
    We have the latest version of Mail to Exchange installed.
    Were using Microsoft Exchange 2007.
    Example serup of what we have done:
    Mail to exchange - New profile - Input Username and Password of domain account - Input domain name - Chose Internet as means of connection -
    The Nokia goes off and searches for the domain information, finds it OK. Shows a message regarding a server certificate, we chose to install this certificate this time only.
    Phone crashes?
    Any ideas whats going on?
    Thansk

    Hi Jim,
    Depending on the customer feedback, it works fine. Apple Mail the client that comes with OSX supports standard protocols (POP3, IMAP, SMTP), these are all supported by Exchange 2010. 
    If you're running Mac OS 10.4 Tiger or Mac OS 10.5 Leopard, you can still use the Mac Mail App to connect to your account. However, you need to connect to your account without using IMAP or POP.
    If you're running Mac OS 10.6 Snow Leopard or Mac OS 10.7 Lion, you can use the Mail program included with those releases to connect to your email account automatically using an Exchange account.
    When you use Mac OS 10.6 Snow Leopard or Mac OS 10.7 Lion and connect using an Exchange account, you can use features that aren't available to users who connect through IMAP or POP, including iCal and Address Book.
    More details about Set up email in Mac OS X Mail, please refer to:
    https://support.office.microsoft.com/en-in/article/Set-up-email-in-Mac-OS-X-Mail-de372dc4-9648-4044-a76c-e8a60e178d54?CorrelationId=a0ce4c19-1492-4e3b-bc7e-4af83d3cb347&ui=en-US&rs=en-IN&ad=IN
    Additional, I find a similar thread about your question, for your reference:
    https://social.technet.microsoft.com/Forums/exchange/en-US/b112b61e-401f-4ad9-b459-a25673ff5407/connecting-to-exchange-2010-using-apple-mail?forum=exchange2010
    https://social.technet.microsoft.com/Forums/en-US/d3c9b4ad-822b-4a7c-88b8-39df3f166f96/how-to-setup-exchange-account-on-macbook-os-x?forum=exchange2010
    Best Regards,
    Allen Wang

  • Problems with icloud mail constantly auto-saving

    Problems with icloud mail constantly auto-saving - screen freezes. VERY frustrating. running windows 8. same problem through safari, explorer and chrome. Any suggestions to reduce auto save frequency?

    Hi Csound1
    approx every 30 seconds the browser freezes and 'saving' appears in the top bar of icloud mail. The cursor starts spinning and then after about 8 secs I can start typing again. I also fiund that about 5-6 times a day my icloud browser tab showing mail just close and return to the main icloud menu page showing icons for mail, calender, notes etc

  • TS3899 With Yahoo Mail, and anotare account (Inacap Mail), I can only receive mails but I can't send emails. I don't know if this is a problem of the iPad or it is a problem with yahoo mail, because using Gmail and the email of my job I don' have this pro

    With Yahoo Mail, and anotare account (Inacap Mail), I can only receive mails but I can't send emails. I don't know if this is a problem of the iPad or it is a problem with yahoo mail, because using Gmail and the email of my job I don' have this problem.

    Google them to confirm the settings that you need for the outgoing server, then check the setting you entered on the pad.  Pay real close attention to the outgoing server name, and port.  You may need to change in on the pad. 

  • Strange problem with the mail app on an iPad

    I've got a bit of a strange problem with the mail app on an iPad - it's sending and receiving mail ok but won't let you delete mail. If you keep at it, it appears as if you have deleted mail (though takes a very long time as you just have to keep deleting it over and over again) -  but the size of the app still keeps going up - reached 600mb so far, even though there is hardly any mail or attachments (goes up quite a lot each time you try to delete anything) - any idea what's causing this and how I can fix it?
    It occasionally comes up with a dialogue panel saying to check my account settings, but I have checked those and they are fine. The little 'loading' icon just keeps spinning constantly too.

    go to Settings > Mail > your account > Advanced > Move Discarded Messages Into 
    and make sure that Deleted Mailbox is ticked, and not Archive Mailbox
    You can also adjust how long the deleted mail stays in the trash immediately below that.
    If you are talking about a gmail account, you may also have to login to your account on the gmail server and update the settings there.  This is what Barney previously posted about that:

  • HT6030 I have many problems with my mail since I moved to mavericks. The filter is very sensitive, read mail appears as unread, I can't drag mail to the folders and more. I can't update the mail program as directed on this page, update says my system is u

    I have many problems with my mail since I moved to mavericks. The filter is very sensitive, read mail appears as unread, I can't drag mail to the folders and more. I can't update the mail program as directed on this page, update says my system is updated

    I don't think that a software update from Apple will solve the issues that you are having. You have a rogue installation. After you posted I have just done the following:
    Disk Utility can verify  my partitioned Volume (including my boot disk) AND REPAIR the non-boot disks on the same Volume without a glitch. It repairs the non-boot disks containing data smoothly.
    I have used Mail to send some mails from some Yahoo and Hotmail accounts to my Thunderbird client containing GMail accounts - absolutely normal.
    I have iLife '09 but my iMovie '09 and iPhoto '09 open in a jiffy and I see no issues here. I have 6GB RAM (Maximum) on an early 2008 Macbook Pro with a 750GB hard drive partitioned with 120GB reserved for the Boot Drive.
    I am sorry that I cannot help further but I am sure there must be a way to reinstall the software without having to revert to restoring your ML backup. I have two clones and if you have such I would attempt to do that through that rather than through Time Machine - that is of course if you have a cloned drive.
    Good luck!

  • Is there a problem with Apple Mail using IMAP

    Is there a problem with Apple Mail using IMAP?  Having a problem syncing to our mail server: doesn't sync properly when multiple devices use same mail acct.  Spoken w/ mail hosting provider who says Apple Mail doesn't follow IMAP protocol properly leaving Apple Mail users to experience a variety of problems when connecting to IMAP accounts.  Among them:
    - Improper syncing
    - Proliferation of drafts during composition of an email.
    - Connections on the mail host do not close automatically and proliferate over time until the host rejects further connection requests.
    Hosting provider goes on to suggest turning off IDLE command.  In my experience turning this feature off did not improve the situation.  In fact, it created a few.
    Question: Is the hosting provider correct in faulting Apple Mail?
    Been fielding the question with a number of people.  I'm aware of three people who are experiencing similar problems, each using different mail hosts.  Tech reps at inmotionhosting.com and nexcess.com point the finger at a Apple Mail, along with an IT specialist in Los Angeles, CA, and a tech support rep at an Apple Store in Arizona who said that Apple and Google mail are aware of and coordinating to resolve the problem.
    Anyone out there have any insights into this?

    Is there a problem with Apple Mail using IMAP?  Having a problem syncing to our mail server: doesn't sync properly when multiple devices use same mail acct.  Spoken w/ mail hosting provider who says Apple Mail doesn't follow IMAP protocol properly leaving Apple Mail users to experience a variety of problems when connecting to IMAP accounts.  Among them:
    - Improper syncing
    - Proliferation of drafts during composition of an email.
    - Connections on the mail host do not close automatically and proliferate over time until the host rejects further connection requests.
    Hosting provider goes on to suggest turning off IDLE command.  In my experience turning this feature off did not improve the situation.  In fact, it created a few.
    Question: Is the hosting provider correct in faulting Apple Mail?
    Been fielding the question with a number of people.  I'm aware of three people who are experiencing similar problems, each using different mail hosts.  Tech reps at inmotionhosting.com and nexcess.com point the finger at a Apple Mail, along with an IT specialist in Los Angeles, CA, and a tech support rep at an Apple Store in Arizona who said that Apple and Google mail are aware of and coordinating to resolve the problem.
    Anyone out there have any insights into this?

  • Dear Fellows. Is there a problem with iPhones mail in general retrieved mail ?

    Is there a problem with iPhones mail in general retrieved mail ?

    My error message reads....  "Cannot get mail"...the mail server imap.gmail.com<http://imap.gmail.com> is not responding"
    John J. Divers https://discussions.apple.com/Roof Logo Small
    Chief Operating Officer and
    Chief Financial Officer
    ******<x-apple-msg-load://8778A9C9-0671-419A-B2DB-CD4A3315BA86/*****>
        https://discussions.apple.com/CDT Logo for Email Signature <http://www.cdt.biz/>
    tel:  212-271-5084<tel:212-271-5084>
    fax: 212-271-5079<tel:212-271-5079>
    *****<x-apple-data-detectors://1/2>
    New York, NY 10018-7702<x-apple-data-detectors://1/2>
    <Personal Information Edited By Host>

  • Problem with Apple Mail since OSX Mavericks

    Hello Folks,
    since i've updated my mid-2012 iMac to OSX Mavericks, i have a problem with Apple Mail: When i start the Apple Mail, the program says that it could not connect to the icloud mail server, and that i should enter my icloud passwort. When i do this, everything works fine. But that annoys me, because it worked without any problem under OSX Mountain Lion.
    Has anyone an idea what i can do to fix this?
    Regards,
    Alex

    In the iCloud pane of System Preferences, uncheck the box marked Mail and check it again.

Maybe you are looking for

  • Problems with all Adobe sites + Dreamwaver install

    Hi Sorry to post here - the first half of this topic is general, the second half is Dreamweaver. 1. I have been having loads of problems with Adobe websites a. could not get into Dreamweaver Trial download page because my IP was blocked and I am no s

  • Original Files Lost - Can't locate anywhere??

    I purchased & connected a Dynex adapter to my laptop after losing my original Ipod cable. When I installed it some type of "convergance" took place. ALL of my original music with the exception of 2 CD's dissapeared. It is not in iTunes, Music Library

  • Overlapping Bubble Charts with Categories

    I am struggling to create a report that looks like this in SSRS 2008 R2: Where I have a list of emails like this: I'm struggling to create an SSRS report with this data and a chart that looks like the attached: Email, ContactType [email protected], "

  • Front row movie section show genres

    i have an extensive movie collection in itunes and want to set it up so i can choose a genre to see specific movies similar to what the music section has but cannot find a way to do it. is there any way to search by genre in the movie section

  • Music speeds up then stops.

    Starting a few weeks ago, when playing music on my iPhone 3G, the songs suddenly speed up or stop and the phone goes back to the home screen. I have restored, reset and reloaded all my music and content in the phone and have the latest software. It m