Sendmail sends mail to yahoo but not local domain

Hi,
I havent worked much on sendmail at all, and as I know it its already configured in Solaris 10 and we just have to put in the relevant entries of DNS etc to make it work. Now the problem is when I use the command mailx to send mail, it is sending it to addresses like yahoo and hotmail, but no email is received on the local addresses on local domain. Example:
mailx -v [email protected] ----------------------> works, but
mailx -v [email protected] ------------------> doesn't work (no email is received)
Can someone please guide me as to what the issue could be? Thanks,
Raza

you will need to provide some additional info.
What is your DS entry configured to in sendmail.cf this should be your mail bridge. Based on the fact that you can send to yahoo.com it sound like this is working.
For local email need to check your domain entry /etc/resolv.conf. This needs to match your systems domain name. This file may also contain a SEARCH entry which would allow email to check multiple domains.
You can also look at the sendmail log to see what sendmail is doing with the email request. Posting the output from mailx -v would help.
Finally make sure that the sendmail daemon is running if you want your unix machine to receive in bound email.

Similar Messages

  • Sendmail sending mail to yahoo but not local domain

    Hi,
    I havent worked much on sendmail at all, and as I know it its already configured in Solaris 10 and we just have to put in the relevant entries of DNS etc to make it work. Now the problem is when I use the command mailx to send mail, it is sending it to addresses like yahoo and hotmail, but no email is received on the local addresses on local domain. Example:
    mailx -v [email protected] ----------------------> works, but
    mailx -v [email protected] ------------------> doesn't work (no email is received)
    Can someone please guide me as to what the issue could be? Thanks,
    Raza

    mailx -v [email protected] ------------------> doesn't work (no email is received)
    What does:
    /usr/lib/sendmail -v [email protected]
    reveal?
    alan

  • 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.

  • I updated to iOS 6 on my iphone 4 and updated my macbook pro with and now my mail is not working at all on my iPhone.  I can receive/send on my laptop, but not my iPhone!! Can someone help?

    i updated to iOS 6 on my iphone 4 and updated my macbook pro  and now my mail is not working at all on my iPhone, whether on wifi or 3G.  I can receive/send on my laptop, but not my iPhone!! Can someone help?

    Which email provider are you using?  If it's Gmail, try unlocking your account here: https://accounts.google.com/DisplayUnlockCaptcha.

  • Problem with out going mail. I can send from my iPad but not my MacBook Air yet settings are the same.

    Problem with out going mail. I can send from my iPad but not my MacBook Air, yet settings are the same. Can anyone advise?

    Hi sointoit,
    If you are having issues sending mail from your MacBook Air, you may find the following article helpful:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    Cheers,
    - Brenden

  • TS2621 I can access yahoo mail from safari but not from the iphone ipad mail icon after changing password

    I can access yahoo mail from safari but not from the iphone ipad mail app after changing my password

    Go into your settings and remove the account. Add the account again with your new password.
    Best of luck- K.

  • Urgent!!!! Problem in sending mail through yahoo mail server

    Hi
    I have a yahoo account and I want to send email through yahoo mail server
    using my java program. My program supports SMTP server authentication.
    But when I connect to the yahoo mail server(smtp.mail.yahoo.com) I got this error
    javax.mail.MessagingException: 521 yahoo.com closing transmission channel. You
    must be pop-authenticated before you can use this smtp server, and you must use
    your yahoo mail address for the Sender/From field.
    This is my program
    import javax.mail.*;
    import java.util.*;
    import javax.mail.internet.*;
    import javax.mail.event.*;
    import java.io.*;
    public class JavaMailUserAgent
         Properties properties;
         Session session;
         Message message;
         JavaMailUserAgent(String mailHost,String smtpUsername,String smtpPassword) throws Exception
              properties=new Properties();
              properties.put("mail.smtp.host",mailHost);
              ServerAuthenticate auth=new ServerAuthenticate(smtpUsername,smtpPassword);
              session=Session.getInstance(properties,auth);
              message=new MimeMessage(session);
         } //**********************************************************************end constructor
         void sendMail(String messageFrom,String messageTo,String subject,String messageBody) throws Exception
              properties.put("mail.from",messageFrom);
              InternetAddress[] address={ new InternetAddress(messageTo) };
              message.setFrom(new InternetAddress(messageFrom));
              message.setRecipients(Message.RecipientType.TO,address);
              message.setSubject(subject);
              message.setContent(messageBody,"text/plain");
              Transport transport=session.getTransport(address[0]);
              transport.addConnectionListener(new ConnectionHandler());
              transport.addTransportListener(new TransportHandler());
              transport.connect();
              transport.sendMessage(message,address);
         } //*************************************************************************end function
    } //*************************************************************************************end main
    class ConnectionHandler extends ConnectionAdapter
         public void opened(ConnectionEvent e)
              System.out.println("connection opened");
         public void disconnected(ConnectionEvent e)
              System.out.println("connection disconnected");
         public void closed(ConnectionEvent e)
              System.out.println("connection closed");
    } //*************************************************************************************end main
    class TransportHandler extends TransportAdapter
         public void messageDelivered(TransportAdapter e)
              System.out.println("message delivered");
         public void messageNotDelivered(TransportAdapter e)
              System.out.println("message NOT delivered");
         public void messagePartiallyDelivered(TransportAdapter e)
              System.out.println("message partially delivered");
    } //*************************************************************************************end main
    class ServerAuthenticate extends Authenticator
         String smtpUsername = null;
         String smtpPassword = null;
         public ServerAuthenticate(String username, String password)
              smtpUsername = username;
              smtpPassword = password;
         protected PasswordAuthentication getPasswordAuthentication()
              return new PasswordAuthentication(smtpUsername,smtpPassword);
    } //*************************************************************************************end main
    I use this code to call the program.
    JavaMailUserAgent jmail=new JavaMailUserAgent("smtp.mail.yahoo.com","my_yahoo_username","my_yahoo_password");
    jmail.sendMail("[email protected]","[email protected]","test subject","test message");
    Could you pls tell me why do I get this error eventhough My program has server authentication.
    Is this my program error.Please Helpl me what to do to correct this problem.
    Please include a sample code
    thanks for listening
    sabu

    I have used the code below to send mail from yahoo account,but I got the error message like below,what I should configure in pop3 of yahoo account????
    import javax.mail.*;
    import java.util.*;
    import javax.mail.internet.*;
    import javax.mail.event.*;
    import java.io.*;
    public class JavaMailUserAgent
    Properties properties;
    Session session;
    Message message;
    JavaMailUserAgent(String mailHost,String smtpUsername,String smtpPassword) throws Exception
    properties=new Properties();
    properties.put("mail.smtp.host",mailHost);
    ServerAuthenticate auth=new ServerAuthenticate(smtpUsername,smtpPassword);
    session=Session.getInstance(properties,auth);
    message=new MimeMessage(session);
    //**********************************************************************end constructor
    void sendMail(String messageFrom,String messageTo,String subject,String messageBody) throws Exception
    properties.put("mail.from",messageFrom);
    InternetAddress[] address={ new InternetAddress(messageTo) };
    message.setFrom(new InternetAddress(messageFrom));
    message.setRecipients(Message.RecipientType.TO,address);
    message.setSubject(subject);
    message.setContent(messageBody,"text/plain");
    Transport transport=session.getTransport(address[0]);
    transport.addConnectionListener(new ConnectionHandler());
    transport.addTransportListener(new TransportHandler());
    transport.connect();
    transport.sendMessage(message,address);
    } //*************************************************************************end function
    } //*************************************************************************************end main
    class ConnectionHandler extends ConnectionAdapter
    public void opened(ConnectionEvent e)
    System.out.println("connection opened");
    public void disconnected(ConnectionEvent e)
    System.out.println("connection disconnected");
    public void closed(ConnectionEvent e)
    System.out.println("connection closed");
    } //*************************************************************************************end main
    class TransportHandler extends TransportAdapter
    public void messageDelivered(TransportAdapter e)
    System.out.println("message delivered");
    public void messageNotDelivered(TransportAdapter e)
    System.out.println("message NOT delivered");
    public void messagePartiallyDelivered(TransportAdapter e)
    System.out.println("message partially delivered");
    } //*************************************************************************************end main
    class ServerAuthenticate extends Authenticator
    String smtpUsername = null;
    String smtpPassword = null;
    public ServerAuthenticate(String username, String password)
    smtpUsername = username;
    smtpPassword = password;
    protected PasswordAuthentication getPasswordAuthentication()
    return new PasswordAuthentication(smtpUsername,smtpPassword);
    public static void main(String str[])throws Exception
    JavaMailUserAgent jmail=new
    JavaMailUserAgent("smtp.mail.yahoo.com","[email protected]","passwordd");
    jmail.sendMail("[email protected]","[email protected]","test subject","test message");
    ERROR:
    E:\mail\javamail\servlet>java ServerAuthenticate
    connection opened
    Exception in thread "main" javax.mail.MessagingException: 530 authentication req
    uired - for help go to http://help.yahoo.com/help/us/mail/pop/pop-11.html
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:879)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:599)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(Compiled Code)
    at JavaMailUserAgent.sendMail(JavaMailUserAgent.java:58)
    at ServerAuthenticate.main(JavaMailUserAgent.java:131)
    How Could I rectyfy the above error ?????
    Regards,
    Mahesh.

  • PDF Software causing problems in sending some PDF files but not all?

    I have been having problems sending some emails with PDF attatchments, they are being returned more and more frequently.  I've spoken to our server host and his answer is as follows saying that the problem is we are using "cheap PDF software" which is why I can send PDF's via Gmail or Yahoo but not through our server.  He suggest we buy a more expensive software or using Gmail for our important bids and invoices that are sent daily.
    My question is:  Is this even close to what could be causing the problem.  We are using Adobe to create our PDF's using our HP CM1410 or the Neat Scanner.  The Neat is a new device but the problem was ongoing before the Neat Scanner was added.
    Our IT person who set our network, hardware and software says it's the server and he's never heard of this being an Adobe problem.  So we're stuck not knowing who to believe

    There are several potential problems. It could be that your e-mail client is not encoding the PDF properly, but looking at it as an ASCII file (7-bit characters). The encoding is not as much of a problem anymore, but still a potential issue. The structure of the PDF that you are getting from the scanner may be corrupt. You can use some of the preflight scripts to check the integrity of the PDF. You might even try saving as a new PDF to see if the 2 versions work differently.
    It might be better to print the proposals you mentioned to the Adobe PDF printer and get better quality proposals than you would get with a scan. That would also probably avoid the problem you are having.

  • Want to delete mails from Thunderbird but not from the server?

    Hi,
    Please tell me how to configure the settings of Thunderbird so that if i delete any mail from Thunderbird that mail would be delete only from Thunderbird not from server. I'm using IMAP configuration for all my mail accounts and I'm using Thunderbird in my laptop and tablet both.
    Currently i'm using Thunderbird 24.4.0 and i just want to delete my useless mails from Thunderbird but not from the server without using pop-3 settings.
    Actually the reason for this Question arises because whenever i use to uninstall and reinstatement Thunderbird, i use to take "profiles" as a back up and its size is increasing day by day that is making a big issue to me as i cant take a back up of such a big size file.

    Imap mail accounts keep the emails on the server and you see a remote view of those emails and folders.
    When you subscribe to see a folder, the headers are downloaded, when you select an email to read, the entire folder is downloaded to a temp cache facilitating quicker access. If you synchronize folders, then a copy of that folder is downloaded to an mbox file in your profile, so that you have a copy of the server folder. When you make any changes to a synchronized folder, read an email, delete or move etc, then Thunderbird will resynchronize with the server to update the server. A synchronized folder allows you to work in 'offline' mode and this is the best time to perform a backup as you know there is a temporary stop on synchronizing as you are offline. They will resynchronize when you go back into 'online' mode.
    So, with IMAP mail accounts, the folders you see in Thunderbird are the same folders on the webmail server. If you make any changes via Thunderbird or webmail then you are changing the same folder. You cannot delete an email without deleting it from the server, they are one and the same.
    What you can do is move/copy an email into Local Folders and delete the one on the server. The Local Folders emails are kept in your Profile on your computer, these folders/emails are not on the server, unless you chose to keep a copy of them on the server.
    Pop mail accounts cannot see the folders on the server. They only access the server Inbox folder and download emails not previously downloaded to the mail account Inbox in Thunderbird. These emails are kept on your computer in your profile folder. You can select to keep a copy on the server or not. You can choose to delete emails off your computer and off the server or not.
    If the mail account is gmail , have you subscribed or even synchronized to see the 'All Mail' folder ? Gmail's all Mail folder is their Archive folder, it keeps a copy of all of your non-deleted emails. So, you do not need to subscribe to see this folder as it only shows you what you can already see in other folders. It doubles the disc space.
    Please read section on 'All Mail' at this link.
    * http://kb.mozillazine.org/Using_Gmail_with_Thunderbird_and_Mozilla_Suite
    You do not have to download/synchronize the entire folder. You could select to only synchronize the most recent xx days of emails.
    see info here:
    * https://support.mozilla.org/en-US/kb/imap-synchronization#w_configuring-synchronization-and-disk-space-usage

  • I can't send mail using yahoo?

    i can't send mail using yahoo?

    Are you using BT-Yahoo or just Yahoo?
    If you have been using BT-Yahoo, note that they have, in 2014, changed some users to BT mail through My BT and no longer use Yahoo - see BT Help online

  • When using safari, media such as mp4, as a web mail attachment (yahoo) is not opening in QuickTime .  File association is broken. Does any1 have a solution?

    When using safari, media such as mp4, as a web mail attachment (yahoo) is not opening in QuickTime .  File association is broken.
    If I use the mail application the attachment opens and I see the QuickTime logo on the attachment.
    When using the web mail yahoo the attachment, an mp4 audio, opens a black page with a crossed triangle icon in the middle of the page.
    Any solution ?
    Thanks .

    There's two ways you can deploy your aspx (layout) files. One is deploy in _Layouts folder (which basically copy the file in (c:\program files\common files\microsoft shared\web server extensions\15\template\layouts). To copy file in that place, you don't
    need module, just use SharePoint mapped folder.
    Another way is to upload the layout folder in SharePoint library. But _catalogs is not the right place to upload your file (_catalogs doesn't have any subfolder named 'layouts'). You can upload your file in 'Pages' library or 'site pages' library in the
    current web.
    I'm not quite sure though (sorry I didn't get what the problem is but just guessed you are trying to get your aspx page in SharePoint designer, not sure why) why you need to upload the file in pages/site pages library instead of '_layouts' folder. 
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • Can send photos in message, but not recieve?

    Seem to be able to send photos in messaging, but not able to recieve messages with photos or videos. Any help?

    http://support.apple.com/kb/ts2755

  • Sms code for verification does not reach to my mobile. ? i can not access my e-mail because of code that does not sent right now. code that related to my alternated e-mail was sent , but not to mobile

    sms code for verification does not reach to my mobile. ? i can not access my e-mail because of code that does not sent right now. code that related to my alternated e-mail was sent , but not to mobile

    Bugzilla is not the place for this sort of problem. Forwarded this post to the relevant team.

  • I want to be able to access my photos that are stored on iCloud – I see mail and contacts but not my pictures?   I have been backing up for a long time -  Where are they?

    I want to be able to access my photos that are stored on iCloud
    – I see mail and contacts but not my pictures?
    I have been backing up for a long
    time -  Where are they?   

    You can't view them on iCloud.com.  And photos (and other data) stored in your device backup can't be viewed, other than by restoring the backup to your device.
    If you want to view your photos on the web, for the time being you will have to add them to a shared stream (album) with the Public Website option enabled.  This will give you a private url to view them from a browser.

  • HT4519 can't send mail with yahoo in wifi mode

    can't send mail with yahoo in wifi mode only
    I receive this message ' appl.smtp.mail.yahoo.com' expired
    I have deleted my account and recreated. Same problem

    Nevermind...used my isp's outgoing mail server and it worked...
    -Ed

Maybe you are looking for

  • CAT4900M and NetApp - Performance issue

    Hi, I'm struggling with a performance issue between our two NetApp Fas3170-devices. The setup is quite simple: Each NetApp is connected via two TenGig interfaces to a CAT4900M. The 4900M's are also connected via two TenGig interfaces. Each pair of co

  • Selection color not working with table that has DefaultTableModel

    hi folks, I noticed if a table has a AbstractTableModel, when you select a row, by default the highlight color is light blue. However, if a table has a DefaultTableModel, even if you invoke table.setSelectionBackgroun(color) and table.setSelectionFor

  • IChat camera issues

    i just got a macally IceCam2 which i want to use with iChat. my problem is that i keep get the message "camera is in use by another application" however, no other applications are open. i've installed the most current updates and ugrades but still no

  • Can't download adobe product

    After I login to my adobe creative cloud and click on download button from desktop apps page. I got "This page can't be displayed", it happened for two hours already. I tried on IE, chorme and firefox, all the cache and cookie are enable and clear up

  • Automatic Forwarding of workitem from one userid to another userid

    HI Experts, I have requirement that the workitems has to be forwarded automatically from one userid to another userid. Since the userid is getting changed. Eg my earlier userid was xyz and now it is changed to 123, so all the workitems which are ther