VD-4280: The SMTP server cound not be connected to

I am trying to configure Email Notifications through OMS. When I hit the test button I get follwing message "VD-4280: The SMTP server cound not be connected to". I have given the correct IP address of our mail server for smtp Mail Gateway option. I have even added "OMS.VDM.SMTP.LINESEPARATOR=CRLF
" in omsconfig.properties file as advised by metalink note 302828.1 but still i am unable to get rid of the above message.

From the SQL*Plus prompt type "host" and go to an operating system terminal window. Can you ping the mail server?
Did you set the SMTP_OUT_SERVER = <port_number> initialization parameter?
Did you identify the mail server? For example:
ALTER SYSTEM SET smtp_out_server = 'smtp.psoug.org' SCOPE=BOTH;
Hopefully one of these will help.

Similar Messages

  • The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
                    SmtpServer.UseDefaultCredentials = true;
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    When i m run this part of code it throw an Ecxeption                                                          
            Given Below is the Error.. 
        The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Bikky Kumar

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
    SmtpServer.UseDefaultCredentials = true;    ///Set it to false, or remove this line
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    Given Below is the Error..      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Solution:
    The error might occur due to following cases.
    case 1: when the password is wrong
    case 2: when you try to login from some App
    case 3: when you try to login from the domain other than your time zone/domain/computer (This
    is the case in most of scenarios when sending mail from code)
    There is a solution for each
    solution for case 1: Enter the correct password.
    Recomended: solution for case 2: go to
    security settings at the following link https://www.google.com/settings/security/lesssecureapps and
    enable less secure apps . So that you will be able to login from all apps.
    solution 1 for case 3: (This might be helpful) you need to review the activity. but reviewing the activity will not be helpful due to latest security
    standards the link will not be useful. So try the below case.
    solution 2 for case 3: If you have hosted your code somewhere on production server and if you have access to the production server, than take remote
    desktop connection to the production server and try to login once from the browser of the production server. This will add exception for login to google and you will be allowed to login from code.
    But what if you don't have access to the production server. try
    the solution 3
    solution 3 for case 3: You have to enable
    login from other timezone / ip for your google account.
    to do this follow the link https://g.co/allowaccess and
    allow access by clicking the continue button.
    And that's it. Here you go. Now you will be able to login from any of the computer and by any means of app to your google account.
    Regards,
    Nabeel Arif

  • "The iTunes server could not be connected..." How do I install the new version of itunes now?

    Every time I try to check for updates I get this message across my screen.
    "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “ax.itunes.apple.com”, which could put your confidential information at risk. Would you like to connect to the server anyway?"
    After which it informs me the user could not be connected.
    I need to update so I can sync my phone that just got replaced. Is there any way to do this?

    Refer to this article:
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    http://support.apple.com/kb/TS1814

  • The SMTP server requires a secure connection or the client was not authenticated. -.

    Hello
    I wrote this code. I searched but could not find a solution for my problem.
    private void button_sendemail_Click(object sender, EventArgs e)
    string temp = "mygmailpassword";
    System.Security.SecureString password = new System.Security.SecureString();
    temp.ToCharArray().ToList().ForEach(p => password.AppendChar(p));
    string mailfrom = "…@gmail.com";
    string mailto = "…@yahoo.com";
    string subject = "Hello";
    string body = "Hello, I'm just writing this to say Hi!";
    using (MailMessage mail = new MailMessage())
    mail.From = new MailAddress(mailfrom);
    mail.To.Add(mailto);
    mail.Subject = subject;
    mail.Body = body;
    mail.IsBodyHtml = true;
    // Can set to false, if you are sending pure text.
    using (SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587))
    smtp.UseDefaultCredentials = false;
    smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
    smtp.Credentials = new NetworkCredential(mailfrom, password);
    smtp.EnableSsl = true;
    smtp.Send(mail);

    Hi ARZARE,
    After some research and i have tested your code, it works fine on my side. But i used Hotmail
    using (SmtpClient smtp = new SmtpClient("smtp.live.com", 587))
    Per my understanding, you're trying to send from an @gmail.com address and they will require authentication, but you don't have credentials specified.  Try sending from @hotmail.com or change smtp.EnableSsl
    = false to see what happens.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Why does'nt work the SMTP-server suddely not.I can't send mail anymore.

    Suddenly I cannot send my mail from my 3 Gmailacounts in "Mail'.
    I can receive my mail normaly.
    Whats wrong?

    Hello sama,
    Thank you for the details of the issue you are experiencing with sending email from your iMac.  I recommend following the steps in the following article to continue isolating and troubleshooting the issue you are experiencing with Mail:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Apple SMTP server IP not reverse mapped

    I have discovered that the SMTP server that Apple is using to reply my outgoing iCloud email (17.111.211.51) does not have a valid reverse hostname associated with it. This causes some of my email to be rejected by other mail servers. I do know that some of Apple SMTP servers are correctly reverse mapped,. but not this particular one.
    i.e.
    host 17.172.220.237
    237.220.172.17.in-addr.arpa domain name pointer st11p02mm-asmtp002.mac.com.
    237.220.172.17.in-addr.arpa domain name pointer st11p02mm-asmtpout002.mac.com.
    This seems to be an oversight bt Apple's network administarators. I'm hoping that this message can be forwarded to the appropriate dept.
    Thanks!

    F.D.E. Schleiermacher wrote:
    Hello.
    I'm hoping someone can help with a problem I've been having today.
    I have a Gmail account which I use on my Mac (MacBook Pro, 2.4GHz Intel Core 2 Duo, System 10.6.8), my iPad and my ancient iPhone. Everything has worked perfectly for the last two years until today when it stopped sending e-mail from any device. On my iPad, it tells me that the SMTP server 'does not allow relay'. On my MacBook, it simply refuses to send it and prompts me to choose another SMTP server (which, alas, I don't have).
    At any rate, here is a list of things I've already tried:
    1. I tried switching my computer off and on again. This didn't work.
    2. I have deleted the account (from both Mac and iPad) and set it up again. This didn't work.
    3. I have deleted just the SMTP server details and re-entered them (both Mac and iPad). This also didn't work.
    4. I manually changed the SMTP port to 25 and 587. This didn't work.
    5. I have tried to send e-mail from a different WiFi network and from 3G (Mac, iPad and iPhone). This didn't work.
    6. I have tried setting up a completely new Gmail account and using the SMTP server of that account to send messages. Bizarrely, this sort of worked: it allowed me to send a message, but the message showed up from the new account rather than from my primary account. However this is not an ideal solution. I would much prefer having a single e-mail account which both sends and receives.
    7. I also tried a variety of other things, but nothing worked.
    I fear the problem may actually be with Gmail, and not with any of the Apple products in question. I spent about an hour trying to contact Google, but I don't think they will get back to me.
    If anyone has any brilliant ideas, I would be tremendously grateful.
    All the best.
    The issue is with gmail.  There are 10 post already about this in the iphone forum.

  • Can not specify the SMTP server port, username and password for my SharePoint 2013 web application

    We have our SMTP server under port number 141 and we should add username and password. but inside SharePoint 2013, I can only define the SMTP server name , from email, reply-to . But there are not fields to define the port number , the username and password.
    So can anyone advice from where I can define the port number and other field settings for the SMTP server ?
    Thanks

    i am no sure about user name and password. i never saw that option.
    check this guide:
    http://blogs.technet.com/b/tirumals/archive/2012/03/17/step-by-step-configuration-of-outgoing-emails-from-sharepoint-to-microsoft-online.aspx
    http://blog.fpweb.net/configuring-an-smtp-server-for-sharepoint/#.UuANoxAo6M8
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog
    thanks for the reply, but in our case the SMTP is  a separate server , and to connect to it i need to define the ; server IP /Name , port number, username & password. but in SharePoint there is no option to define the port number , and the links you
    provide are regarding configuring SMTP server, while we already have an SMTP server but i need to connect SP with it . can you advice please?

  • I am not able to send mails through Yahoo APP.It gives me an error msg :"the sender address has ben rejected by the server ".I tried adding username and password in the SMTP server settings,But those optiopns are greyed out.

    I am not able to send mails through Yahoo APP. It gives me an error msg :"the sender address has ben rejected by the server ".
    I tried adding username and password in the SMTP server settings,But those optiopns are greyed out.
    So, i am not able to enter anything in fields under SMTP server settings

    You probably have changing settings disabled in Restrictions.

  • Can't send mail, get message: the smtp server rejected the password. I tried lock and unlock keychain. I tried unlock captcha. Gmail works okay, it is Mail that does not. Help!! :(

    Can't send mail, get message: the smtp server rejected the password. I tried lock and unlock keychain. I tried unlock captcha. Gmail works okay, it is Mail that does not. Help!!

    Hi
    You need to check with your ISP whether or not the send mail server (SMTP) requires a password.  Some do, but many do not.  When you know the correct password to send mail, then you need to tell Mail as follows:
    Mail menu > Preferences > Accounts > Select the account
    Click on the Outgoing Mail Server (SMTP) combo box, and select Edit SMTP Server List...
    In the Account Information tab put the server name
    In the Advanced Tab, set up the authentication information from your ISP.
    Good luck
    Bob

  • I changed my password on my aol account but it did not change on the SMTP server which is preventing me from answering email.  Help

    I changed my aol password but the SMTP server password did not change so I can't send mail.  How can I change the SMTP password?

    Go into Settings > Mail, Contacts, Calendars and select the account, then tap the account on the popup that you should get, and then tap on the SMTP server name

  • Mail not being able to find the SMTP server

    hi there,
    I am trying to use a new mailbox account but Mail cannot find the SMTP server and refuses to send emails. It is a pop account and it can find the incoming server ok. I know that the server is ok because I can send emails from a webmail version of the account but in Mail..nada.
    Does anyone know why Mail is not finding the server?
    Many thanks
    Shark

    What version of OSX were you using before upgrading to Snow Leopard? Since introduction of Leopard and Mail 3.x, the Outbox has only been seen in the Sidebar when there is one or more messages not yet sent.
    Sending with webmail is no test of the SMTP, since it is not used when sending via webmail. What Port are you presenting the SMTP on, and what does the provider recommend in that regard? Who is that provider?
    Ernie

  • How do i create a mail box in the SMTP server thru a java program

    How do i create a mail box in the SMTP server thru a java program. If it is possible thru a java program.pls suggest a mail server compatible for the above possibility to work.
    pls help ....

    Please let me know if it is not at all possible to
    create a user account automatically thru a program
    (java) in a mail server... how does yahoo work
    then..does he manually add a user to the mail
    server...By talking to a web server not a mail server.
    >
    Is not there any mail server that will allow us to
    create mailboxes for my java program.. how do the
    other web account services work..
    As I said mail servers do have management interfaces. You need to find one and then determine what the management interface is.

  • How to setup the SMTP server in Oracle apps?

    Hi,
    How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
    Thanks,
    Bijoy
    Edited by: user12070886 on Feb 6, 2013 4:26 AM
    Edited by: user12070886 on Feb 6, 2013 4:27 AM

    How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? No, it is not mandatory. Also please note that the mails are sent out from concurrent manager mode. Not from the database node.
    Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
    >
    It depends on the operating system you are using. If you are using *nix then sendmail needs to be configured.
    Thanks

  • Can I change the smtp server with Yahoo push account?

    My yahoo email account will send and receive over EDGE using the default yahoo mail settings. On my home Cox internet WiFi network I can retrieve messages but cannot send. When sending it says it was sent and makes the "swooshing" mail sent sound, but the message disappears. It does not appear in the "sent" folder or "drafts" folder either. No error message is returned.
    I suspect this is related to Cox blocking the smtp server, but the iPhone does not allow me to change the smtp settings on the default yahoo account. Does anyone know how to do this? I can set it up manually for POP access, but then I'm flooded with spam.

    No, you cannot change the SMTP server on the Yahoo push account.
    Yahoo push only works if you configure your account using the Yahoo! Mail shortcut on the iPhone, and that shortcut does not allow for ANY customization.

  • Email Enabled lists - where to run the SMTP server? On APP server or on Exchange Server? Or somewhere else?

    Hi there,
    I need to setup EMail Enabled lists in SharePoint 2010 site. Where do I need to run the SMTP server? On APP server or on Exchange Server? Or somewhere else?
    Thank you so much.

    The SMTP service cannot run on the Exchange server. You can run it on a SharePoint server, or a stand alone server and share out the drop directory over SMB.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • Export problem in a red work flow.

    For our latest show we made some background material and we gave it a light grading in FCP. The material is in Redcode. Now I get a problem. If I export it the film looks just very bad with all edges all slightly squary. Since the original Redcode is

  • System preferences, sharing, remote management?

    Hello, Could someone tell me where I can find more information of how to use remote management that is under system preferences, sharing. What is the difference between screen sharing and remote management? It will be a great help as I am learning my

  • Active Directory Offline Login work??

    Hey all, I'm having an issue with loging in to a Leopard client which is bound to Active Directory. Whenever I unhook this MacBook, off the network, it won't allow me to login to the machine via the domain credentials. In Tiger, I remember there was

  • I'm having trouble with CS6 on my Mac OS X 10.9.4

    it won't load. I've tried complete reinstallation but that doesn't work....I'm loosing the will!

  • Workflow... is it difficult to pick it up...

    Hi all, I have been doing ABAP on HR (payroll, leave, benefits, pa) as well as IDOCs. Recently my superivsor mentioned something on workflow in IDOCS. Is it difficult to do workflow? or pick it up? Is Business Workflow and workflow in IDOC similar? I