Sending mail with mail client failure problem

My installation config :
Solaris 10
Sun Java(tm) System Messaging Server 7.3-11.01 64bit (built Sep 1 2009)
single host installation
since past few days , I encounter a new problem with SJMS after finish installation . When using mail client Thunderbird 2.0.0.23 , sending mail message to outside email providers / non-local (e.g correctly typed yahoo/gmail) domain always failed whenever I use from outside networks/Internet ( smtp setting in mail client require username and password authentication ) . however,users between the same local domain is OK .
The thunderbird always prompt :
" The mail server responded: Recipient address rejected: User unknown. Please check the message recipients and try again "
The problem does not occured when I was using inside LAN and connected locally with the server host .
but, I am able and succesful to telnet to port 25 using command via outside the network, indicating the port and server not being blocked by firewall :
telnet smtp.abcxyz.com 25
220 ***************************************
any help is welcome.
Thanks

I would be good to have the full output from the "imsimta version" command. That gives OS information too, which may not be pertinent to this specific problem, but it is better to give all the info than for us to wish we had it.
Also, what is the full, exact error message you get when you try this with telnet to port 25 and it fails? It may be significant to see the exact text because it could be coming from some intermediate device rather than the Messaging Server itself.
If you are getting connected to the Messaging Server's MTA, you should find some indication of this in the mail.log_current file. If not, I would say to make sure the "logging" keyword is on the "defaults" channel and add LOG_CONNECTION=3 LOG_PROCESS=1 LOG_USERNAME=1 to option.dat and do imsimta cnbuild; and imsimta restart dispatcher. Then repeat the test. If you still get nothing in mail.log_current about that test, then I would conclude the connection is not getting to the Messaging Server's MTA but rather the failure is coming from a firewall or some other intermediate device.
If your mail client authenticates to the MTA when trying to send mail from outside your network, this should result in the message submission being switched to the tcp_auth channel instead of tcp_local and that should allow the message to go thru. If the connect is making it to the MTA and being rejected there, it will be interesting to see which channel is involved. The mail.log_current records should show that.

Similar Messages

  • Having trouble receiving Yahoo mail on iPhone 6 sending mail is no problem?

    Having trouble receiving Yahoo mail on iPhone 6 sending mail is no problem?

    Any chance you use two step verification on your Yahoo account? If you've ever had to enter a code that was text messaged to you when you log into your Yahoo account on a new computer, then two step verification is probably on.
    If that is the case, you'll have to generate an app specific password in the Yahoo web mail page and enter that as your password on your Apple Device instead of your standard password in Mail Settings.

  • Smtp mail client socket problem

    As soon i enter the smtp server address (smtp.mail.yahoo.com) i get the following:
    Exception in thread "main" java.net.UnknownHostException: smtp.mail.yahoo.com: smtp.mail.yahoo.com
            at java.net.InetAddress.getAllByName0(InetAddress.java:1128)
            at java.net.InetAddress.getAllByName0(InetAddress.java:1098)
            at java.net.InetAddress.getAllByName(InetAddress.java:1061)
            at java.net.InetAddress.getByName(InetAddress.java:958)
            at MailTest.<init>(MailTest.java:20)
            at MailTest.main(MailTest.java:97)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 11 seconds)
    import java.util.*;
    import java.net.*;
    import java.io.BufferedReader;
    import java.io.*;
    public class MailTest
        String from;
        String to;
        String smtp; //smtp.mail.yahoo.com
        String hostName;
        BufferedReader brin;
        PrintWriter pwout;
        String communication;   
        public MailTest() throws UnknownHostException,IOException
            readMailData();       
            Socket s=new Socket(InetAddress.getByName(smtp), 25);
            //tried also smtp.plus.mail.yahoo4.akadns.net and with the
            //corresponding ip
            hostName=InetAddress.getLocalHost().getHostName();
            brin=new BufferedReader(new InputStreamReader(s.getInputStream()));       
            pwout=new PrintWriter(s.getOutputStream());               
            receive();
            send("HELO "+ hostName);
            receive();
            send("MAIL FROM: <"+from+">");
            receive();
            send("DATA");
            receive();       
            send(readMessageBody());
            send(".");
            receive();
            s.close();
        private void receive() throws IOException
            System.out.println("Incoming Communication");
            System.out.println("-----------------------------------------");
            while (!(communication=brin.readLine()).equals(null))
                System.out.println(communication);
            System.out.println("-----------------------------------------");
        private void send(String s) throws IOException
            System.out.println("Outcoming Communication");
            System.out.println(s);
            pwout.write(s);
            pwout.flush();
            System.out.println("-----------------------------------------");
        private String readMessageBody() throws IOException
            String q="";
            String msgBuffer="";
            BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
            System.out.println("--------------Message--Body--------------");
            System.out.println("enter -Enter-quit-Enter- to exit");
            System.out.print(">");       
            q=in.readLine();       
            while (!q.equals("quit"));
                msgBuffer+=q;
                System.out.print(">");
                q=in.readLine();           
            System.out.println("-----------------------------------------");
            return msgBuffer;
        private void readMailData() throws IOException
            BufferedReader in= new BufferedReader(new InputStreamReader(System.in));                       
            System.out.println("From: ");
            from=in.readLine().trim();
            System.out.println("To: ");
            to=in.readLine().trim();
            System.out.println("SMTP server: ");
            smtp=in.readLine();       
        public static void main(String[] args) throws UnknownHostException, IOException           
            MailTest mt=new MailTest();
    }

    I would say you have a DNS problem, or perhaps you aren't connected to the Internet. Can you ping smtp.mail.yahoo.com? or at least can ping resolve the name?

  • Sending mail function module problem in WAS.

    We have one custom function module Z_SEND_MAIL_ALL
    which is sending mails successfully with in the SAP 4.7 E system.
    Our function module Z_SEND_MAIL_ALL uses internally function modules like SO_OBJECT_SEND and SO_OBJECT_INSERT...
    Now we copied the same function module Z_SEND_MAIL_ALL into another system which is running in WAS server and
    when we run the function module it seems it is sending as attachment, however when I try to open the attachement...it gives dump. I clicked debugger.
    It shows  while CALL FUNCTION 'TABLE_DECOMPRESS' execution...
    it gives exception ( Error in compressed table ) as below  ...
    <b>raise COMPRESS_ERROR.</b>....
    I don't understand what is the problem ?
    Is it because of WAS is fully unicode compliance,  these function modules are not working . or is there any thing else I can do ....
    YOUR help is highly appreciated and respected.

    You have to declare the table using any specific type.
    The type table in the FM is generic so you can pass any type you need.
    For instance:
    TYPES: BEGIN OF ty_fields,
             fieldname LIKE dfies-fieldname,
           END OF ty_fields,
    TYPES: TY_T_GLU1              LIKE GLU1                     OCCURS 0,
           ty_t_fields            type ty_fields                occurs 0.
      DATA: lt_info_struct_fields TYPE ty_t_fields WITH HEADER LINE,
            lt_matching_fields    TYPE ty_t_fields WITH HEADER LINE.
        CALL FUNCTION 'AS_API_INFOSTRUC_FIND'
             EXPORTING
                  i_fieldcat         = ft_fieldcat-fieldcat
                  i_fields           = ft_fields_filled[]
             IMPORTING
                  e_infostruc        = lv_info_struct_name
                  e_all_fields       = lt_info_struct_fields[]
                  e_matching_fields  = lt_matching_fields[]
             EXCEPTIONS
                  no_infostruc_found = 1.

  • Can't send mail - outgoing server problem

    I am using Mail. OS X.4.6. Yesterday I used Mail with no problem. Today when I 'sent' an email, a pop up told me I couldn't use the outgoing server (the server in the email account selected), and suggested two others (one of which is no longer an account). The outgoing server for the email account selected has not changed.

    Mail keeps information about outgoing servers in a separate list, independently of any specific mail account. The account settings just associate one of the available outgoing servers with each account. Deleting an account doesn't remove the outgoing server from the list. Orphaned or dangling outgoing server entries (i.e. not associated with any account) sometimes cause sending problems, so you may want to fix that, even though it could very well have nothing to do with your problem -- actually, it could very well be that you don't have a problem, and this is just a transient error.
    Go to Preferences > Accounts > Account Information > Outgoing Mail Server (SMTP), choose Edit Server List from the popup menu, and delete any servers that shouldn't be there. The Edit Server List sheet shows the account each outgoing server is associated with.
    Alternatively, Mail comes with some scripts available under the Script menu when that menu is enabled. There is a Manage SMTP Servers there that finds any unused outgoing mail servers and gives you the option to delete them. Type "Script Menu" in Mail Help for more information on this feature.

  • TS3276 Hi, I can send mail without a problem, I cannot receive mail, I am using iCloud.

    Hello Mac' users
    I have a problem with receiving e-mail, no problem sending. I am using iCloud, any suggestions please?? I did receive a message telling me that "Unable to receive mail Port ???? timed out".
    Thanks to one and all
    Tony

    Check the "Cannot receive mail in OS X mail" section here:
    http://support.apple.com/kb/TS4002

  • SSID with Passive Client Enabled Problem - WLC2106

    Hello,
    In my environment i have this topology :
    WLC                                                                 ~~~~~~|Another Vendor Client Radio doing Bridge|----Camera
       |                         |----RAP-1552E~~~~~~~MAP-1552E~~~~~|Another Vendor Client Radio doing Bridge|------|Camera|
       |----------Switch-----|                                            
    |---| Ethernet
    |~~~| Wireless
    The WLC is one 2106 WLC with version 7.0.240.0.
    All clients are in the same broadcast domain, the camera/another vendor client and the RAP and MAPs, the another vendor is connecting in SSID LAB, when i connect some notebook in the SSID LAB i can't reach camera.
    I tried to segmenting this networking putting the SSID-LAB2 broadcasted from RAP and MAP to another network and connecting my notebook in the SSID LAB2 and i have problems to access camera too. The routing is OK.
    I put my notebook in the switch in the same broadcast domain or in another broadcast domain and i could access the camera without problem.
    I'm having these problems only when i have the clients connected in wireless.
    I enabled multicast in the controller and passive-client, because i wasn't reaching the camera without this configuration enabled, now i can access but i'm having these problems.
    Thank You.

    I don't know what else you can do here. There are some wireless Ethernet bridges I have tested that work okay and others that just doesn't. Seems like the one that I use, a Buffalo Ethernet converter needs to be rebooted every so often. Others just don't work. Have you tried opening a TAC case?
    Sent from Cisco Technical Support iPhone App

  • PLEASE HELP me with my Client/Server problem !!!

    I have a method that can currently only recieve one file at a time, but I need it to be able to recieve multiple incomming files. My problem is that it can recieve the first file, but when the send file is sent to this method, it freezes. Can somebody please help me debug it!! I need to get this working by tonight. Thanks!
    public class A implements Runnable {
            String hostname;
            private Thread runner;
            public A () {}
            public void receive() throws IOException {
                    try {
                            while (true) {
                                    Socket s = ss.accept();            
                                    s.close();
                    } catch (Exception e) {
                            System.out.println(e);
            public void run() {
                    try {
                            ServerSocket ss = new ServerSocket(1111);
                            while (true) {
                                    receive();
                    } catch (IOException ioe) {
                            System.out.println("IOException in run()\n" + ioe.getMessage());
            private void stop() {Runner = null;}
            public void request(String fileName) {
                    if(runner == null) {
                   runner = new Thread(this);
                   runner.start();
                            try {
                                    send(fileName);
                            } catch (Exception e) {
                                System.out.println("Exception in run()\n" + e.getMessage());
    }

    you have a while(true) in your receive, so you accept the socket, do the // ... stuff, close it, and then sit there waiting to accept another one again. Am I seeing that correctly?

  • Web Service: Sender Channel with JAVA client (Apache Axis)

    Hello to all,
    I am trying to connect an Axis-based Java client to XI via the SOAP adapter.
    When connecting, the client receives the error message "Unauthorised" - it seems as if it cannot handle the basic HTTP authentication.
    Can I easily disable this authentication mode in XI (or better: in this adapter)?
    Or does anybody know how to implement the authentication in the Axis framework?
    Many thanks and best regards,
    Carsten

    Carsten,
    AFAIK, you must provide the credntials to access the service on XI. Follow the section <b>Call configuration</b> on this link
    http://ws.apache.org/axis/java/client-side-axis.html.
    you basically need to properties with the Call method as explained in the link.

  • Sending a text file Client/Server problem

    Hi,
    I have two java classes (A.java and B.java). i would like to send the text file (something.txt) from A to B. Can somebody please show me how to do so? I know it is incomplete, but i really need help since im new to this. I dont know how to send and how to accept the file. Here is what i have so far:
    import java.net.*;
    import java.io.*;
    import java.lang.*;
    public class A {
            private static String hostname;                  //host name
            private static final int portA = 1111;           //source port number
            private static int portB;                        //destination port number
            private static ServerSocket s;
            private static Socket socket;
            private static BufferedReader br;    
            String fileName = "something.txt";
            public A () {
            public static void send() {
                    System.out.println("Send method");
                    try {
                        System.out.print("> Enter Hostname: ");
                     hostname = br.readLine();
                     System.out.print("> Enter Port Number: ");
                        portB = Integer.valueOf(br.readLine()).intValue();
                catch(IOException e){}
            public static void main(String args[]) throws IOException {
    import java.net.*;
    import java.io.*;
    import java.lang.*;
    public class B {
            private static String hostname;                  //host name
            private static final int portB = 2222;           //source port number
            private static ServerSocket s;
            private static Socket socket;
            private static BufferedReader br;    
            public B () {
            public static void recieve() {
                 //code to recieve the text file here?
            public static void main(String args[]) throws IOException {
    }I really appriciate any code to help me out. Thanks

    Check out the link shown below:
    http://forum.java.sun.com/thread.jsp?forum=33&thread=66616
    If that doesn't answer your question, search this site for Upload
    ;o)
    V.V.

  • Recovering Rescue and Recovery data from a T61p with the GPU failure problem

    My t61p has the GPU (1 long 2 short beeps) problem described in another thread. Apart from getting the laptop fixed, which will take several weeks, I have a more pressing problem getting my data back from this laptop.
    I have been using Lenovo Rescue and Recovery religiously for the last two years to create monthly incremental backups on a USB drive. While I am trying to get my laptop repaired, I would like to at least recover my files from the backup and start working on a different machine.
    I was told by Lenovo support that the only way to get to the data is to connect the drive to another T61p, running the exact same version of Rescue and Recovery I had on my original T61p. For one, I have to idea what version of R&R  I had on my laptop. Secondly, I am in no position to get another T61p just to recover the data.
    I would have thought that there would be a version of R&R that I could run on any Windows machine, and recover the data, but apparently that's not so.
    Does anyone have any suggestions about how I can recover my data?
    Thanks.

    Hi,
    the basic and most importatnt information, in this case is, that RnR can detect/read backups that have been captured using the very same version as you are using right now.
    So in case you captured your backup using version xx.xx.xxx1 you cannot restore, or recover your backup using the version xx.xx.xxx2. You need to us the very same version.
    As Win7 uses different version of RnR, this is the root cause.
    Hope this helps.
    Cheers

  • Yosemite Mail Client and safari OWA problem

    I was upgrade my mac system to Yosemite from Mavericks.
    I can login OWA but i can't browse e-mails and folders Also I have  Mail client syn problem with Exchange. Unable to get all e-mails with mail client.
    How to solve this problems.

    I have similar symptoms.
    The iCloud pane in System Preferences says "Starting..." and never finished.
    Adding an account in OS X Mail prompts me for the Incoming Mail Server, even though it recognizes it as an iCloud account. Leaving leaving the field empty results in Mail unable to connect to the server.
    Clicking on Mail in the iCloud web interface tells me I need to create an @me.com email address by enabling Mail in the iCloud System Preference.
    I am using an existing MobileMe account (previously a .Mac account) which is my AppleID.

  • Sending Mail on the Failure of Outbound IDOC Creation

    Hi Experts
                   I Have a requirement to send mail on failure of Outbout creation . Any standard report exists ?
    Any sample programmes
    Thanks and regards
    RMP

    I think what you are asking for is possible, but I'm not sure how. Try posting this question on the Process Integration forum (PI uses iDocs), I'm sure someone will know the answer.

  • Default mail client setting?

    Since my desktop software was upgraded, everytime I open it...I get the message that "Either there is no defaul mail client or the current mail client cannot fulfill the messaging request.  Please run Microsoft Outlook and set it as the default mail client."
    Problem is...I opened up MS Outlook and it **is** set as the default mail client.....so what gives?  
    Solved!
    Go to Solution.

    Uninstall Desktop Manager:
    http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB02206&slic...
    Obtain the latest DM software:
    http://na.blackberry.com/eng/services/desktop/
    Launch your default email client.
    Reinstall DM from the latest download.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Mail received date problem

    Hi,
    I am using JSMTP for sending mails. My problem is that the date/time which i see in email is behind the date when i sent the mail from application. Why there is such a date/time lag. Is the problem is of SMTP server or the mail server.
    Regards,
    R S

    If there's really a delay, then this can have many reasons, and it might not at all be a problem with your application. A friend's office occasionally has single outgoing emails delayed by several hours, up to two days. The admins there guess it's some firewall issue (yeah, right, it's always the firewall)...
    Try to find out if the problem at the sending or the receiving end, by sending mails to and from other servers. Try to log when a mail was sent - you can verify that the mail server was instructed by your program to send it and that the sending app is not to blame.

Maybe you are looking for

  • VL10C and E having problem in Background run

    Hi, When i Try using VL10C, VL10E in Background mode i am not able to create any delivery and where as Foreground I can able to create with specific customer and material. Please suggest if you come across same senario in ECC 6 version. Prog backgrou

  • How to handle Error Handling In Mediator.

    Hi guys, Accually my reqirement is need to handle Error exception in Mediator. I am new for Meditor. we read source file through Mediator and route the data to Database Table in betwen need to handle Error Handling...What type of Fault handling we ca

  • PDF files and permissions

    Whenever I print documents as PDF files, Adobe Reader 9 opens, the PDF file appears and the following warning invariably appears:  "C:\Program Files(x86)\Common Files\Adobe\ARM\1.0\AdobeARM.exe  Windows cannot access the specified device, path, or fi

  • Windows 8 and Photoshop Elements 9

    I purchased and downloaded Photoshop Elements 9 on my Windows XP computer.  I had to purchase a new computer with Windows 8.  I want to redownload Photoshop.  I go through all the steps (including contacting Customer Service FIVE times) and download

  • IPhoto 8 - importing TIFF files

    I have just tried to import 3 TIFF files and found that when I go File>Import to Library> and the selection window appears my tiff files were greyed out, only by manually adding ".tif" at the end of the file name will iPhoto enable me to select the f