Error sending e-mail by Authentication unsucessful

Hi PI Experts,
I´m with problems for sending e-mails in SMTP Adapter Receiver.
In SXI_MONITOR display as message: "server not responding OK to Auth; 535 5.7.3 Authentication unsucessful".
This problem occurs only in QAS but in DEV and PRD is working...
Is there any port configuration on the machine QAS or some other solution?
TKS.
COROL

Hi,
maybe it's the firewall issue ?
can you ask your basis people if qas PI server has access to the mail server ?
Regards,
Michal Krawczyk

Similar Messages

  • Error sending e-mail.

    Hi,
    Since last 2 years this code was working perfectly and suddenly since last 2 days, this code is giving error, would you guys help me here. Please find below the ERROR CODE:
    E-mail couldn't be sent. Error returned: Failed to connect to mail.mudhranaa.co.in:25 [SMTP: Failed to connect socket: Connection refused (code: -1, response: )]. (EMAIL_FAILED)
    Thanks in advance for help.
    Regards,
    Venkatesha

    Hi Venkaesha and  NJFuller,
    I am also facing same issue.
    From last 2 months my application  was working  fine and able to send mails.  But suddenly my application is not able to send mails.
    FYI : I didnot change any settings related to SMTP server details.
    Error is ::
    com.adobe.idp.dsc.email.ConnectionFailedException: Failed to connect to email server:
    10.238.52.70. Reason: Could not connect to SMTP host: XX.X.X.X port: 25, response: -1
    at com.adobe.idp.dsc.email.EmailServiceImpl.sendMessage(EmailServiceImpl.java:473)
    Please help me on this.
    Thanks
    Praveen

  • Error Send E-MAIL

    Hi everybody!
    I am configuring KM Services, I need to utilize the Send E-MAIL function but when I try to send the following error gives me:  Not transport there you are been configured for e-mail.  Already configure the Channel (E-mail server) by which is sent for: System admin -> System Config -> KM -> Content Management. 
    Am i skiping any step?
    Please advice. Thanks..

    Hi ,
    Check the below steps mentioned in thread once again
    Configuration for Sending UM Mails?
    Koti Reddy

  • Error Sending E-mails

    I can receive e-mails all day long (with the very frequent "message could not be downloaded from server" text). But when I try to send e-mails I get the "Cannot Send Mail" error that I need to check my account settings for the outgoing server. But I have it configured the same as in Outlook. I have Charter Communications cable and I called Charter and the customer service person was clearly not technical and had no clue how to begin to help me figure this out. Help!
    Thanks!

    It does!!!! Just put cwmx.com with no password or
    account ID! THANKS GUYS!!!!!!!!!
    -Thad
    i have charter too in NC and I agree that the support team are truly clueless. Here is my current situation and has been since day 1 Any help is appreciated.
    1.My wifi home network is recognized by my iphone. When I go to browse it says Safari can't open the page because it can't find the server. (keep in mind i go to other wifi places and it works like a charm but it will not send out mail using my pop.charter account. using port 25 which was added during initial set up) also keep in mind i am running 2 laptops off the home network and they work fine.
    I updated the firmware on my router (Linksys WRT54GX2) and still no go on the iphone.
    2 I have tried using edge smtp to send out e-mail and it is not working for me.
    3. I can use edge for browing as well and getting e-mail but not sending
    4. Went to apple store genius bar in Raleigh NC they were baffled. They took out sims card and put back in, made a report told me to try it again when i got home. if not come back and they will give me a new phone. ( I live 2.5 hrs away from the store)
    I'm baffled as well. I truly do not think that getting a new phone will change my situation. I have tried just about every suggestion on this board (they are truly appreciated by me) from resetting to restoring to changing email smtp to changing router info the list goes on.
    I love my iphone but i am developing a love/hate relationship with it. I think it is too early in the relationship for that. Any more suggetions would again be greatly aqppreciated.

  • Error sending e-mail (alert report)

    hai,
    I am trying to send alert message and Report via e-mail.
    I caught up in this error .The eventvwr is giving this error.
    " The transport failed to connect to the server."
    Please help me to solve this problem.
    thanks in advance.

    Hai,
    Thanks for the reply...i had given the correct "Server Name: and
    Email Account for Alerting" in the
    Message Center management and restarted the Event Engine .....still i am getting the same error.....
    Please provide me the solution....
    thanks.

  • Error sending e-mail in SendEmailSample

    Hi,
    I got the following error when trying to send an e-mail with the provided sample:
    [2005/06/20 16:11:23] "{http://services.oracle.com/bpel/mail}sendMessageFault" has been thrown. Less
    <sendMessageFault xmlns="http://services.oracle.com/bpel/mail">
    <part name="summary">
    <summary>Mail account not found. The mail account "test_account " cannot be found in the metadata directory.</summary>
    </part>
    </sendMessageFault>
    What could be wrong? The test_account.xml file is in the deployed jar file and I configured it with my e-mail settings.
    regards,
    Jan

    Please run obant and cross check whether test_account.xml file is located in "${home}/domains/${deploy}/metadata/MailService". If still it doesnt work.
    Then please open .bpel file, search for test_account and remove any enter in the end if any. Then redeploy.

  • Error sending attachments mail

    I am trying to send attachments using javamail and i tried out the example at:
    http://developer.java.sun.com/developer/onlineTraining/JavaMail/exercises/MailAttach/index.html but I get an error on this line Transport.send(message), has anyone faced this problem, if you have, please do help me out man.
    thanks
    topraj

    try this code..
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class MailExample1 {
    public static void main(String a[]) throws Exception {
         try {
         String host = "<your smtp server address here>";
         String to = "<to mailid here>";
         String from = "<From mail id here>";
         Properties props = new Properties();
         props.put("mail.smtp.host",host);
         Session session = Session.getDefaultInstance(props,null);
         MimeMessage message = new MimeMessage(session);
         BodyPart bp1 = new MimeBodyPart();
         bp1.setText("This is a message with multi media content sending gif files with text");
         Multipart mp = new MimeMultipart();
         mp.addBodyPart(bp1);
    BodyPart bp2 = new MimeBodyPart();
         DataSource ds = new FileDataSource("Ivy.gif");
         bp2.setDataHandler(new DataHandler(ds));
         mp.addBodyPart(bp2);
         message.setFrom(new InternetAddress(from));
         message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
         message.setSubject("Test mail from java");
         message.setContent(mp);
         javax.mail.Transport.send(message);
         System.out.println("Message sent to: "+to);
         } catch(Exception e) { e.printStackTrace(); }
    hope this will help you..
    regards,
    ashok

  • Snipping tool error- send to mail

    hi
    i am having proplem when tring to send screen shot with snipping tool to mail with outlook 2013
    error - the operation system is not presentky configured to runthis application
    win 8.1 pro + office 2013 H&B

    Hi,
    Considering that there is no permission to access related files.
    Please right click Snipping tool and choose "Run as admin", then try the send to feature.
    Also, we can also identify if the issue can be caused by corrupted user profile, please create new user account to check the issue.
    If in above steps, we can get it work fine, please follow these steps to fix it:
    First, take ownership of the %temp% folder:
    How to "Take Ownership" of a File, Folder, Drive, or Registry Key in Windows 8
    http://www.eightforums.com/tutorials/2808-take-ownership-file-folder-drive-registry-key-windows-8-a.html
    If the issue still persists after above fixed, please use process monitor to capture the system event when reproing this issue and upload the log file here for our research:
    Process Monitor v3.05
    http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
    How to use, please refer to this article:
    Using Process Monitor to capture system events
    http://www.sophos.com/en-us/support/knowledgebase/119038.aspx
    In addition, you can also check captured events to see if there is any access denied issue, and try to fix it yourself:
    Solving Access Denied Errors Using Process Monitor
    http://improve.dk/solving-access-denied-errors-using-process-monitor/
    Kate Li
    TechNet Community Support

  • Error: Error sending e-mail.

    Hi,
    I have created a form-based on CONTACT FORM Tutorial by
    Razvan Racasanu
    My form works just like CONTACT FORM, except it has more
    fields, it is submit to the database and email is send to 3
    different person. But i am getting the above mentioned error, while
    some help me here please.
    Regards,
    Venkatesha

    hi Gino,
    good that you have found the solution.
    So don't leave the thread open/unanswered
    kindly close the thread.
    Regards,
    SuryaD.

  • Error sending email in hyperion financial reporting

    Hi,
    While scheduling a batch for a report in HFR we are unable to get email notifications and we are getting the following error as below
    Batch "Shared Workspace pages/ Cashflow batch" finished at thursday,December 6,2012 10.25.14 AM EST
    Error sending e-mail.
    Can anyone give suggestions to reoslve this issue.
    Regards,
    Sai
    Edited by: 975434 on Dec 6, 2012 10:43 PM

    Hi Ajay,
    Today we are unable to connect to the VPN network due to some network issues, once we got connected i will try executing the following manner you replied.
    Mean while i tried to surf this issue in google browser and find out a link.
    http://www.elmajdal.net/win2k8/how_to_enable_telnet_in_windows_server_2008.aspx
    Can you please go through this link and confirm me whether this will assist me to resolve the issue.
    Regards,
    Sai

  • Error in E-mail Notification in BPM

    Hi folks,
      I have create one Simple BPM Project in which i Created one Notification Activity to send the mail
      but when i am starting my BPM Project it is showing the below error in history :
    Notification could not be sent to
    the following recipients:
    [email protected](Error sending e-mail),
    xxx@xxxcom(Error sending e-mail)
    and also the Task Event Notification is not working , giving following error :
    Event notification could not be
    sent to recipients [email protected] for task instance ID
    7800745f-3a34-11e4-b4c2-0000037bb076. Problem: Cannot send e-mail because the
    e-mail session cannot be retrieved
    Please give the solution for this.
    Thanks

    Hi Jun
    thnks for your reply
    below is the default trace error :
    Error
    sending notification email to recipient [email protected]. Reason:
    com.sap.bpem.base.mail.MailException: Cannot send e-mail because the e-mail
    session cannot be
    retrieved
    [EXCEPTION]
    com.sap.bpem.base.mail.MailException: Cannot send
    e-mail because the e-mail session cannot be retrieved
    at
    com.sap.bpem.base.mail.Send.initializeSession(Send.java:65)
    at
    com.sap.bpem.base.mail.Send.send(Send.java:116)
    at
    com.sap.bpem.base.mail.MailSenderBean.doSend(MailSenderBean.java:43)
    at
    com.sap.bpem.base.mail.MailSenderBean.surroundSend(MailSenderBean.java:74)
    at
    com.sap.bpem.base.mail.MailSenderBean.send(MailSenderBean.java:26)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at
    java.lang.reflect.Method.invoke(Method.java:597)
    at
    com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:47)
    at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166)
    at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19)
    at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:50)
    at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:37)
    at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:21)
    at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_MethodRetry.invoke(Interceptors_MethodRetry.java:46)
    at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:191)
    at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:23)
    at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:25)
    at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:17)
    at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at
    com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:138)
    at
    com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164)
    at
    com.sun.proxy.$Proxy397.send(Unknown Source)
    at
    com.sap.bpem.notification.adapter.Notification.send(Notification.java:385)
    at
    com.sap.bpem.notification.adapter.Notification.sendToUser(Notification.java:325)
    at
    com.sap.bpem.notification.adapter.Notification.handleUser(Notification.java:269)
    at
    com.sap.bpem.notification.adapter.Notification.handlePrincipals(Notification.java:189)
    at
    com.sap.bpem.notification.adapter.Notification.process(Notification.java:152)
    at
    com.sap.bpem.notification.adapter.NotificationHandler$2.inCommit(NotificationHandler.java:112)
    at
    com.sap.glx.core.kernel.mmtx.PrimaryTransaction.inCommit(PrimaryTransaction.java:263)
    at
    com.sap.glx.core.kernel.mmtx.AbstractTransaction.do_commit(AbstractTransaction.java:230)
    at
    com.sap.glx.core.kernel.mmtx.AbstractTransaction.commit(AbstractTransaction.java:128)
    at
    com.sap.glx.core.kernel.execution.LeaderWorkerPool$Follower.run(LeaderWorkerPool.java:171)
    at
    com.sap.glx.core.resource.impl.common.WorkWrapper.run(WorkWrapper.java:58)
    at
    com.sap.glx.core.resource.impl.j2ee.J2EEResourceImpl$Sessionizer.run(J2EEResourceImpl.java:255)
    at
    com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator$1.run(ServiceUserManager.java:164)
    at
    java.security.AccessController.doPrivileged(Native Method)
    at
    javax.security.auth.Subject.doAs(Subject.java:335)
    at
    com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator.run(ServiceUserManager.java:161)
    at
    com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at
    java.security.AccessController.doPrivileged(Native Method)
    at
    com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:185)
    at
    com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:302)
    Caused
    by: javax.mail.AuthenticationFailedException
    at
    javax.mail.Service.connect(Service.java:319)
    at
    javax.mail.Service.connect(Service.java:169)
    at
    javax.mail.Service.connect(Service.java:118)
    at
    com.sap.bpem.base.mail.Send.initializeSession(Send.java:59)
    ... 49 more

  • Error while sending E-Mail -- 501 Syntax error in parameters or arguments

    Dear Friends,
    I was trying to send E-Mail using the NTLM Authentication mechanism using the below program:
    import java.util.Properties;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    import javax.mail.PasswordAuthentication;
    import java.util.Date;
    import com.sun.mail.smtp.*;
    public class MailerWithAuthentication
         private String     smtpServer;
         private String      fromEmailId;
         private String      toEmailId;
         private String      ccEmailId;
         private String      bccEmailId;
         private String      subject;
         private String      message;
         private String host;
         public MailerWithAuthentication(String toemail, String msg,String sub,String fromId,String host)
              this.toEmailId = toemail;;
              this.subject = sub;
              this.message = msg;
              this.fromEmailId=fromId;
              this.host=host;
    public void sendMail()
              String mailContent = "";
              try
                   Authenticator authenticator = new Authenticator();
                   Properties props = new Properties();
              props.put("mail.smtp.host",this.host );
              props.put("mail.smtp.port", "25");
              props.put("mail.smtp.auth", "true");
              props.put("mail.smtp.auth.mechanisms", "NTLM");
              props.put("mail.smtp.auth.ntlm.flags", "0x00000200");          
              props.put("mail.smtp.auth.ntlm.domain","sal.ad");
              props.put("mail.debug", "true");
              Session session = Session.getDefaultInstance(props,authenticator);
    Message msg = new MimeMessage(session);          
              MimeMessage message = new MimeMessage(session);
              message.setContent("This is a test", "text/plain");
              message.setFrom(new InternetAddress(this.fromEmailId));
              message.addRecipient(Message.RecipientType.TO,new InternetAddress(this.toEmailId));
              Transport.send(message);
              catch (Exception e)
                   e.printStackTrace();
                   System.out.println("Exception in MailerThread : run: " + e.getMessage());               
    private class Authenticator extends javax.mail.Authenticator {
              private PasswordAuthentication authentication;
              public Authenticator() {
                   String username= "sal.ad\mailuser";
                   String password = "mail@123";          
                   authentication = new PasswordAuthentication(username, password);
              protected PasswordAuthentication getPasswordAuthentication() {
                   return authentication;
    public static void main(String args[])
              try
                   System.out.println(" Usage : java MailerWithAuthentication <To-Email> <Message> <Subject> <From-Email> <Mail-Server-IP>");
                   MailerWithAuthentication mailer = new MailerWithAuthentication (args[0],args[1],args[2],args[3],args[4]);
                   mailer.sendMail();
              catch(Exception e)
                   e.printStackTrace();
    Following is the output while running the program:
    DEBUG: JavaMail version 1.4ea
    DEBUG: java.io.FileNotFoundException: /usr/java/jdk1.5.0_14/jre/lib/javamail.providers (No such file or directory)
    DEBUG: !anyLoaded
    DEBUG: not loading resource: /META-INF/javamail.providers
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc]}
    DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: !anyLoaded
    DEBUG: not loading resource: /META-INF/javamail.address.map
    DEBUG: java.io.FileNotFoundException: /usr/java/jdk1.5.0_14/jre/lib/javamail.address.map (No such file or directory)
    Mechanishm = NTLM
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: trying to connect to host "192.168.14.6", port 25, isSSL false
    220 ****************************************************************************
    DEBUG SMTP: connected to host "192.168.14.6", port: 25
    EHLO
    501 Syntax error in parameters or arguments -
    HELO
    501 Syntax error in parameters or arguments -
    javax.mail.MessagingException: 501 Syntax error in parameters or arguments -
    =================================
    The error is :
    EHLO
    501 Syntax error in parameters or arguments -
    HELO
    501 Syntax error in parameters or arguments -
    =================================
    Please tell me what went wrong here. Is it due to any mistake in the program ?
    Thanks in advance.

    hello Anirudh Pucha,
    thanks for your message,
    i'm downloading all the files you advised and one more doubt regarding SOA installation,
    i'm using BPEL Process manager 10.1.3.1.0 installed on my machine and not installed SOA Suite (problem in installing AS Middle tier), i send voice,sms through BPEL PM which works fine, and faced problem in e-mail notification only, according to me with out installing SOA suite we can use BPEL PM or please let me know the procedure to install the downloading files.
    if possible please send me a details in word documents to my mail "[email protected]".
    Thanks again

  • Send a mail via smtp without authentication

    Hello,
    I'm developping a web application that reports errors or 'strange situations' to the application'a admin with an e-mail message to the address entered in a sort of wizard. I've read some tutorials and actually I'm able to send mail via smtp only with authentication, withouth i get this error: "530, Address requires authentication". How can i send mails without authentication?

    Normally the administrator of those forums is also the administrator of the SMTP server they use, so they configure the server to accept requests from the forum software without authentication.
    If you are running your own SMTP server you can do that too. If you are using somebody else's server you will have to follow their rules. You could always contact the administrator and ask whether you could be made exempt from authentication...

  • Cannot send e-mail - "The sender address invalid" error message

    Today I keep getting this error message "The sender address is invalid - when i try to send e-mail. I checked my settings and they are the same as always - my e-mail address hasn't changed; the outgoing and incoming server information is the same. I went through the Troubleshooting steps and still nothing. Also it's taking a really long time to connect to check for incoming e-mails. Any clues on why this is happening or what I should try next? The e-mail is via Roadrunner does that matter (althoug it didn't a couple of days ago)

    This message means that your outgoing email server is not letting you connect to send email. Maybe RR changed their policy. You should be able to send using home WiFi, but when using 3G RR will not allow connections from outside their network.
    One easy way around this, is to use the built-in AT&T SMTP server for outgoing email.
    Or, check the RR FAQs and see if they allow an authenticated account to send email - maybe you just need to add SSL and username/pwd on the RR outgoing email server settings.
    BTW - this is asked almost daily - the "Search Discussions" box to your right would have given you many hits with the same answer.

  • Sending php mail(); using postfix. Authentication failed.

    Trying to set up my localhost to send php mail() using postfix.
    I did the following:
    Created the sasl_passwd file
    Created the sasl_passwd.db file
    Edited mail.cf in the postfix folder to include relay host: relayhost=smtp.live.com:587
    I'm trying to relay through my hotmail account. The mail.log returns the following:
    Jan 24 13:17:30 Richards-MacBook-Pro.local postfix/error[927]: E75CCE40EE4: to=<[email protected]>, relay=none, delay=1580, delays=1580/0.07/0/0, dsn=4.0.0, status=deferred (delivery temporarily suspended: SASL authentication failed; server smtp.live.com[65.55.162.200] said: 535 5.0.0 Authentication Failed)
    Any ideas what I'm doing wrong here?

    Ok problem solved :)
    Problem was between oracle and MS exchange server. Live server oracle 9i is on linux, and testing server works on windows.
    So the problem was with configuration. Our admins corrected it and now works :). I don't know details.

Maybe you are looking for