Re: [ilugd] sendmail problem
On Wed, 2004-12-29 at 18:47, Kapil Sethi wrote: > redhat linux wrote: > > hi > > i have configured sendmail on my machine, hostname of > > the machine is testserver and i am getting these > > errors in maillog > > > Go down you sendmail.cf, until you find a line with > > Port=smtp,Addr=127.0.0.1,Name=MTA > > Just remove the Addr=127.0.0.1 part so that the line looks as > > Port=smtp,Name=MTA > > Save the file and restart the server. Will leave venerable to lot of relay and spam activity. -- Sudev Barar Learning Linux ___ ilugd mailinglist -- ilugd@lists.linux-delhi.org http://frodo.hserus.net/mailman/listinfo/ilugd Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
Re: [ilugd] sendmail problem
redhat linux wrote: hi i have configured sendmail on my machine, hostname of the machine is testserver and i am getting these errors in maillog Go down you sendmail.cf, until you find a line with Port=smtp,Addr=127.0.0.1,Name=MTA Just remove the Addr=127.0.0.1 part so that the line looks as Port=smtp,Name=MTA Save the file and restart the server. Additionaly you will require to put in the following line in your access file (typically in /etc/mail on RH systems) where xx.xx would be your network address. xx.xx.xx.0RELAY Then do a makemap hash access < access Restart your sendmail Kapil -- PS: 1. Google: Feel free to Google before posting. http://www.google.com 2. HOWTO'S : Latest Howto documents are available http://www.tldp.org . Newbies are requested to take a look. You will find solutions to most of your problems there ___ ilugd mailinglist -- ilugd@lists.linux-delhi.org http://frodo.hserus.net/mailman/listinfo/ilugd Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
Re: [ilugd] sendmail problem
On Wed, 2004-12-29 at 14:34, redhat linux wrote: > --- Sudev Barar <[EMAIL PROTECTED]> wrote: > > By default red-hat sendmail does not allow relaying > > for other machines. > > You need to rebuild sendmail.mc by adding : > > DAEMON_OPTIONS(`Port=smtp,Addr=xxx.xxx.xxx.xxx, > > Name=MTA')dnl > > where xxx.xxx.xxx.xxx is machine from where > > relaying is to occur. > > > > Then run m4 macro to build new sendmail.cf by giving > > command: > > #m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf > > > > restart service sendmail > > HTH > > -- > > Sudev Barar > > Learning Linux > Thanks sir > as u have said i "added" > DAEMON_OPTIONS(`Port=smtp,Addr=xxx.xxx.xxx.xxx, > Name=MTA')dnl > > I am still learning how to configure sendmail..so my > query now is that the sendmail.mc file says > > dnl # The following causes sendmail to only listen on > the IPv4 loopback address > dnl # 127.0.0.1 and not on any other network devices. > Remove the loopback > dnl # address restriction to accept email from the > internet or intranet. > dnl # > DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1,Name=MTA')dnl > > so i commented the entry and made a new one which > contains the ip of my machine..means the answer > that you have said. This is been done before the query > i made in the forum. > > so the mails to 127.0.0.1 is not getting relayed, now > question is "Is it necessary to have a smtp port 25 > open for localhost, irrespective of whether we have > different smtp server or not? > > i hope you got what my query is > thanks... Sudeep, You need to have both lines127.0.0.1 and xxx.xxx.xxx.xxx(your IP) Read Howto at sendmail.org for detailed help. -- Sudev Barar Learning Linux ___ ilugd mailinglist -- ilugd@lists.linux-delhi.org http://frodo.hserus.net/mailman/listinfo/ilugd Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
Re: [ilugd] sendmail problem
--- Sudev Barar <[EMAIL PROTECTED]> wrote: > By default red-hat sendmail does not allow relaying > for other machines. > You need to rebuild sendmail.mc by adding : > DAEMON_OPTIONS(`Port=smtp,Addr=xxx.xxx.xxx.xxx, > Name=MTA')dnl > where xxx.xxx.xxx.xxx is machine from where > relaying is to occur. > > Then run m4 macro to build new sendmail.cf by giving > command: > #m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf > > restart service sendmail > HTH > -- > Sudev Barar > Learning Linux Thanks sir as u have said i "added" DAEMON_OPTIONS(`Port=smtp,Addr=xxx.xxx.xxx.xxx, Name=MTA')dnl I am still learning how to configure sendmail..so my query now is that the sendmail.mc file says dnl # The following causes sendmail to only listen on the IPv4 loopback address dnl # 127.0.0.1 and not on any other network devices. Remove the loopback dnl # address restriction to accept email from the internet or intranet. dnl # DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1,Name=MTA')dnl so i commented the entry and made a new one which contains the ip of my machine..means the answer that you have said. This is been done before the query i made in the forum. so the mails to 127.0.0.1 is not getting relayed, now question is "Is it necessary to have a smtp port 25 open for localhost, irrespective of whether we have different smtp server or not? i hope you got what my query is thanks... sudeep __ Do you Yahoo!? Yahoo! Mail - now with 250MB free storage. Learn more. http://info.mail.yahoo.com/mail_250 ___ ilugd mailinglist -- ilugd@lists.linux-delhi.org http://frodo.hserus.net/mailman/listinfo/ilugd Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
Re: [ilugd] sendmail problem
On Wed, 2004-12-29 at 11:08, redhat linux wrote: > hi > i have configured sendmail on my machine, hostname of > the machine is testserver and i am getting these > errors in maillog > > Dec 29 11:10:42 testserver sendmail[3343]: > iBT5ed27003343: to=root, ctladdr=root (0/0), > delay=00:00:03, xdelay=00:00:00, mailer=relay, > pri=30199, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, > stat=Deferred: Connection refused by [127.0.0.1] > > what i'm missing here? what i need to check here? > i am running redhat 9.0 > kernel 2.4.20-8 > thanks in advance > sudeep By default red-hat sendmail does not allow relaying for other machines. You need to rebuild sendmail.mc by adding : DAEMON_OPTIONS(`Port=smtp,Addr=xxx.xxx.xxx.xxx, Name=MTA')dnl where xxx.xxx.xxx.xxx is machine from where relaying is to occur. Then run m4 macro to build new sendmail.cf by giving command: #m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf restart service sendmail HTH -- Sudev Barar Learning Linux ___ ilugd mailinglist -- ilugd@lists.linux-delhi.org http://frodo.hserus.net/mailman/listinfo/ilugd Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
[ilugd] sendmail problem
hi i have configured sendmail on my machine, hostname of the machine is testserver and i am getting these errors in maillog Dec 29 11:10:42 testserver sendmail[3343]: iBT5ed27003343: to=root, ctladdr=root (0/0), delay=00:00:03, xdelay=00:00:00, mailer=relay, pri=30199, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1] what i'm missing here? what i need to check here? i am running redhat 9.0 kernel 2.4.20-8 thanks in advance sudeep __ Do you Yahoo!? The all-new My Yahoo! - Get yours free! http://my.yahoo.com ___ ilugd mailinglist -- ilugd@lists.linux-delhi.org http://frodo.hserus.net/mailman/listinfo/ilugd Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
RE: RE: RE: RE: RE: [ilugd] sendmail problem :(
Hi Shekhar Sorry I can't provide you the details as u asked but I got a catch if I write nslookup hostname then it doesnot resolve hostname Any suggestions I think this is the root cause. Cheers Manoj -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of V Shekhar Sent: Thursday, February 19, 2004 2:30 PM To: The Linux-Delhi mailing list Subject: Re: RE: RE: RE: RE: [ilugd] sendmail problem :( Manoj. If u really need to solve the problem, you pl send me /etc/mail/sendmail.cf /etc/mail/access /etc/hosts The output of: # hostname # domainname # tail -1000 /var/log/maillog you may send me offlist ([EMAIL PROTECTED]) , i m here in office , and will try my best to solve the prob today itself. Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Thursday, February 19, 2004 1:51 pm Subject: RE: RE: RE: RE: [ilugd] sendmail problem :( > > Hi Shekhar > This is what is happening > If I am able to telnet mailserver relay ip at port 25 onlt from my > server not from any other m/c > And also if I send an helo message fromther to my server it recognizes > so I think no problem ther > > And also I told in my last mail in maillig the relay is happening to > [EMAIL PROTECTED] > Don't now why > Any suggestions will be appreciated > Thanks & Regards > Manoj Thakkar > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Wednesday, February 18, 2004 10:09 AM > To: The Linux-Delhi mailing list > Subject: Re: RE: RE: RE: [ilugd] sendmail problem :( > > Manoj, > if u r able to telnet to ISP's server on PORT25 , it does not mean > u r > > allowed or able to relay, > relay chk happend once u type in the TO: address > > > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message - > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 9:37 pm > Subject: RE: RE: RE: [ilugd] sendmail problem :( > > > > > > Hi shekhar > > > > > Still no luck > > > > > My ISP allow me to relay as m able to telnet at port 25 of their > relay> server from my m/c > > > > > What to do ??? anyone who has faced similar problem > before> . > > > > > > > > -----Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] > > delhi.org] On > > Behalf Of V Shekhar > > Sent: Tuesday, February 17, 2004 7:42 PM > > To: The Linux-Delhi mailing list > > Subject: Re: RE: RE: [ilugd] sendmail problem :( > > > > > Manoj. > > > > > I suggest u change > > > > > > > > DSmailrelayerverip.com > > > > > to > > > > > DSMail.Relay.IPV4.ADDRESS > > > > > eg > > > > > DS192.168.100.1 > > > > > and see if it works. > > > > > one point to note is, that ur ISP relay server shld allow u to relay > > > > > SMTP. (But it does not hv to do the problem u r facing now) > > > > > > > > > > > > > > Warm Regards. > > - V SHEKHAR - > > Tel : 040-23553343 ext 285 > > > > > > > > - Original Message - > > From: <[EMAIL PROTECTED]> > > Date: Tuesday, February 17, 2004 6:02 pm > > Subject: RE: RE: [ilugd] sendmail problem :( > > > > > > > > > > > > Hi Shekhar, > > > > > > > > > Thanks for your concern dear but still no luck > > > > > > > > > Here is wht is happening > > > > > > > > > > > > > > > if u do an nslookup... > > > 1.) does the query go to the primary Name server? {it shld go} yes > > > > > > > > > 2.) does it resolvce the domain?? {it shld resolve} yes > > > > > > > > > 3.) does it telnet (port 25)to the MX by IP address?? If by MX you > > > > > > meany relay server address then yes also to my own sever I am able > > > > > > to telnet > > > at port 25 > > > > > > > > > 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't > > > > > > get it > > > m sorry > > > > > > > > > as I told you I made the following changes in sendmail.cf > > > > > > > > > DSmailrelayerverip.com > > >
RE: RE: [ilugd] sendmail problem :(
Hello Manoj, Pls check the following in sendmail.cf file :- - At line # who I masquerade as (null for no masquerading) (see also $=M) DMyourdomain.com --> put here your domain - At line # "Smart" relay host (may be null) DSsub-domain ---> put here your next relaying host or subdomain name And other then the above, check your /etc/hosts file and an entry must be exist of your all relaying server including sub domain with IP. And also create a file /etc/service.switch (if not available) and put the entry as: search yourdomainname Check the /etc/mail/relay-domains for your necessary entries. I hope the above will resolve your problem. If still it is un-resolved, then pls give the exact error (copy n paste). And also let me know from where u are sending the mail using what command. Regards, DNBhatt HCL Insys--- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 1:04 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: RE: [ilugd] sendmail problem :( Hi Bhatt I am running Rh 7.1 with sendmail-8.11.2-14 I know I am doing some silly mistake somewhere May be any one may help me Cheers manoj -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Devki Nandan Bhatt Sent: Wednesday, February 18, 2004 6:23 PM To: 'The Linux-Delhi mailing list' Subject: RE: RE: [ilugd] sendmail problem :( Hi Manoj, Which version of Linux and sendmail you have ..?? Regards, DNBhatt HCL Insys -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 6:02 PM To: [EMAIL PROTECTED] Subject: RE: RE: [ilugd] sendmail problem :( Hi Shekhar, Thanks for your concern dear but still no luck Here is wht is happening if u do an nslookup... 1.) does the query go to the primary Name server? {it shld go} yes 2.) does it resolvce the domain?? {it shld resolve} yes 3.) does it telnet (port 25)to the MX by IP address?? If by MX you mean y relay server address then yes also to my own sever I am able to telnet at port 25 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't get it m sorry as I told you I made the following changes in sendmail.cf DSmailrelayerverip.com O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA That is it Is ther anything need to be changed in access domaintable . Also I have put an entry in /etc/hosts Saying my mailrelayserver name and ip thts it Hope I am clear with my setup now. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of V Shekhar Sent: Tuesday, February 17, 2004 5:30 PM To: The Linux-Delhi mailing list Subject: Re: RE: [ilugd] sendmail problem :( Manoj... Revery in case of problems.. and try yto be descriptive in answer.. or else i dont hv any pointers ... Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 4:58 pm Subject: RE: [ilugd] sendmail problem :( > > Hi I checked /etc/resolv.conf put my local domain there > Still no luck > Need Help !! :( > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Tuesday, February 17, 2004 2:40 PM > To: The Linux-Delhi mailing list > Subject: Re: [ilugd] sendmail problem :( > > sendmail is unable to get the MX record of the domain, kindly see if > > DNS is properly configured, and you can get the MX for the domain, by > > issuing NSLOOKUP command on the mailserver. > > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message - > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 1:38 pm > Subject: [ilugd] sendmail problem :( > > > > > > > > > Hi All, > > I am stuck with a strange problemin sendmail > > I m trying to send mail on internet using sendmail > > I have put my ISP mail relay server in DS tab of sendmail.cf > > Also m able to telnet the relay server from my m/c at port 25 > > Also the netstat shows like this > > tcp0 0 *:smtp *:* > > LISTEN > > > > > but when I try sending mail to anywhere outside say abc.com it says > > connecting to abc.com via esmtp > > > > > and then says no route to host > > even a mail to the mail relay server domain says the same > > > > > Is there anyone who has configured sendmail earlier and can help > > > me in > > this regard > > > > > Thanks > > manoj > > > > > Confidentiality Notice > > > > > > > > The information contained in thi
Re: RE: RE: RE: RE: [ilugd] sendmail problem :(
Manoj. If u really need to solve the problem, you pl send me /etc/mail/sendmail.cf /etc/mail/access /etc/hosts The output of: # hostname # domainname # tail -1000 /var/log/maillog you may send me offlist ([EMAIL PROTECTED]) , i m here in office , and will try my best to solve the prob today itself. Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Thursday, February 19, 2004 1:51 pm Subject: RE: RE: RE: RE: [ilugd] sendmail problem :( > > Hi Shekhar > This is what is happening > If I am able to telnet mailserver relay ip at port 25 onlt from my > server not from any other m/c > And also if I send an helo message fromther to my server it recognizes > so I think no problem ther > > And also I told in my last mail in maillig the relay is happening to > [EMAIL PROTECTED] > Don't now why > Any suggestions will be appreciated > Thanks & Regards > Manoj Thakkar > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Wednesday, February 18, 2004 10:09 AM > To: The Linux-Delhi mailing list > Subject: Re: RE: RE: RE: [ilugd] sendmail problem :( > > Manoj, > if u r able to telnet to ISP's server on PORT25 , it does not mean > u r > > allowed or able to relay, > relay chk happend once u type in the TO: address > > > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > ----- Original Message - > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 9:37 pm > Subject: RE: RE: RE: [ilugd] sendmail problem :( > > > > > > Hi shekhar > > > > > Still no luck > > > > > My ISP allow me to relay as m able to telnet at port 25 of their > relay> server from my m/c > > > > > What to do ??? anyone who has faced similar problem > before> . > > > > > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] > > delhi.org] On > > Behalf Of V Shekhar > > Sent: Tuesday, February 17, 2004 7:42 PM > > To: The Linux-Delhi mailing list > > Subject: Re: RE: RE: [ilugd] sendmail problem :( > > > > > Manoj. > > > > > I suggest u change > > > > > > > > DSmailrelayerverip.com > > > > > to > > > > > DSMail.Relay.IPV4.ADDRESS > > > > > eg > > > > > DS192.168.100.1 > > > > > and see if it works. > > > > > one point to note is, that ur ISP relay server shld allow u to relay > > > > > SMTP. (But it does not hv to do the problem u r facing now) > > > > > > > > > > > > > > Warm Regards. > > - V SHEKHAR - > > Tel : 040-23553343 ext 285 > > > > > > > > - Original Message - > > From: <[EMAIL PROTECTED]> > > Date: Tuesday, February 17, 2004 6:02 pm > > Subject: RE: RE: [ilugd] sendmail problem :( > > > > > > > > > > > > Hi Shekhar, > > > > > > > > > Thanks for your concern dear but still no luck > > > > > > > > > Here is wht is happening > > > > > > > > > > > > > > > if u do an nslookup... > > > 1.) does the query go to the primary Name server? {it shld go} yes > > > > > > > > > 2.) does it resolvce the domain?? {it shld resolve} yes > > > > > > > > > 3.) does it telnet (port 25)to the MX by IP address?? If by MX you > > > > > > meany relay server address then yes also to my own sever I am able > > > > > > to telnet > > > at port 25 > > > > > > > > > 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't > > > > > > get it > > > m sorry > > > > > > > > > as I told you I made the following changes in sendmail.cf > > > > > > > > > DSmailrelayerverip.com > > > O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA > > > That is it > > > Is ther anything need to be changed in access domaintable . > > > Also I have put an entry in /etc/hosts > > > > > > > > > Saying my mailrelayserver name and ip thts it > > > > > > > > > Hope I am clear with my setup now. > > > > &
RE: RE: RE: RE: [ilugd] sendmail problem :(
Hi Shekhar This is what is happening If I am able to telnet mailserver relay ip at port 25 onlt from my server not from any other m/c And also if I send an helo message fromther to my server it recognizes so I think no problem ther And also I told in my last mail in maillig the relay is happening to [EMAIL PROTECTED] Don't now why Any suggestions will be appreciated Thanks & Regards Manoj Thakkar -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of V Shekhar Sent: Wednesday, February 18, 2004 10:09 AM To: The Linux-Delhi mailing list Subject: Re: RE: RE: RE: [ilugd] sendmail problem :( Manoj, if u r able to telnet to ISP's server on PORT25 , it does not mean u r allowed or able to relay, relay chk happend once u type in the TO: address Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 9:37 pm Subject: RE: RE: RE: [ilugd] sendmail problem :( > > Hi shekhar > > Still no luck > > My ISP allow me to relay as m able to telnet at port 25 of their relay > server from my m/c > > What to do ??? anyone who has faced similar problem before > . > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Tuesday, February 17, 2004 7:42 PM > To: The Linux-Delhi mailing list > Subject: Re: RE: RE: [ilugd] sendmail problem :( > > Manoj. > > I suggest u change > > > DSmailrelayerverip.com > > to > > DSMail.Relay.IPV4.ADDRESS > > eg > > DS192.168.100.1 > > and see if it works. > > one point to note is, that ur ISP relay server shld allow u to relay > > SMTP. (But it does not hv to do the problem u r facing now) > > > > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message - > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 6:02 pm > Subject: RE: RE: [ilugd] sendmail problem :( > > > > > > Hi Shekhar, > > > > > Thanks for your concern dear but still no luck > > > > > Here is wht is happening > > > > > > > > if u do an nslookup... > > 1.) does the query go to the primary Name server? {it shld go} yes > > > > > 2.) does it resolvce the domain?? {it shld resolve} yes > > > > > 3.) does it telnet (port 25)to the MX by IP address?? If by MX you > > > meany relay server address then yes also to my own sever I am able > > > to telnet > > at port 25 > > > > > 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't > > > get it > > m sorry > > > > > as I told you I made the following changes in sendmail.cf > > > > > DSmailrelayerverip.com > > O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA > > That is it > > Is ther anything need to be changed in access domaintable . > > Also I have put an entry in /etc/hosts > > > > > Saying my mailrelayserver name and ip thts it > > > > > Hope I am clear with my setup now. > > > > > > > > > > > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] > > delhi.org] On > > Behalf Of V Shekhar > > Sent: Tuesday, February 17, 2004 5:30 PM > > To: The Linux-Delhi mailing list > > Subject: Re: RE: [ilugd] sendmail problem :( > > > > > Manoj... > > > > > > > > Revery in case of problems.. and try yto be descriptive in > > > answer.. or > > > > > else i dont hv any pointers ... > > > > > Warm Regards. > > - V SHEKHAR - > > Tel : 040-23553343 ext 285 > > > > > > > > - Original Message - > > From: <[EMAIL PROTECTED]> > > Date: Tuesday, February 17, 2004 4:58 pm > > Subject: RE: [ilugd] sendmail problem :( > > > > > > > > > > > > Hi I checked /etc/resolv.conf put my local domain there > > > Still no luck > > > Need Help !! :( > > > > > > > > > -Original Message- > > > From: [EMAIL PROTECTED] > > > [mailto:[EMAIL PROTECTED] > > > delhi.org] On > > > Behalf Of V Shekhar > > > Sent: Tuesday, February 17, 2004 2:40 PM > > > To: The Linux-Delhi mailing list > > > Subject: Re: [ilugd] sendmail problem :( > > > > > > > > > sendmail is unable to get the MX record of the
RE: [ilugd] sendmail problem :(
Hey I got a mail having virus in replies to my sendmail problem The subject of the mail was RE: [ilugd] sendmail problem :( Kindly check it and do send me the solution again please Cheers manoj -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of LinuxLingam Sent: Thursday, February 19, 2004 1:13 PM To: The Linux-Delhi mailing list Subject: Re: [ilugd] Options available for VB developers On Thu, 2004-02-19 at 12:41, Mani wrote: > Type using python. > - Original Message - [gigantic snip of redundant, previous email text] try not to top post. LL ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd Confidentiality Notice The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain confidential or privileged information. If you are not the intended recipient, please notify the sender at Wipro or [EMAIL PROTECTED] immediately and destroy all copies of this message and any attachments. ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd
RE: [ilugd] sendmail problem :(
Hi Gurpreet Thanks for the reply dear But I have 0.0.0.0 instead of 127.0.0.1 in sendmail.cf Also I put my local network ip in relay-domains Still no luck This is what I get when I see maillog Feb 19 13:14:29 npd3-bcn sendmail[17079]: i1J7iTY17079: from=root, size=23, clas s=0, nrcpts=1, msgid=<[EMAIL PROTECTED]>, relay=root@ localhost anyother thing suggestion or if u have ever faced the same problem this is very strange to me I am not getting what mistake I m doing May be anyone in group may work it out Cheers manoj -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gurpreet Singh Sachdeva Sent: Wednesday, February 18, 2004 2:02 AM To: The Linux-Delhi mailing list Subject: RE: [ilugd] sendmail problem :( >>>sendmail is unable to get the MX record of the domain This is the case when the mail server is unable to send mails on a single domain and its working perfect on other domains. ## but when I try sending mail to *anywhere* outside say abc.com it says ## connecting to abc.com via esmtp Then DNS may not be the prime issue rather relaying can be a problem. Contact your ISP, if they have properly given a relay to your IPs. Or you can make your own SMTP server without using the ISP one. Edit /etc/sendmail.cf and change 127.0.0.1 --> Public IP And vi /etc/mail/relay-domains and give the IP block of your network. You can use this as your SMTP server. HTH... BR, Gurpreet ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd Confidentiality Notice The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain confidential or privileged information. If you are not the intended recipient, please notify the sender at Wipro or [EMAIL PROTECTED] immediately and destroy all copies of this message and any attachments. ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd
RE: RE: [ilugd] sendmail problem :(
Hi Bhatt I am running Rh 7.1 with sendmail-8.11.2-14 I know I am doing some silly mistake somewhere May be any one may help me Cheers manoj -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Devki Nandan Bhatt Sent: Wednesday, February 18, 2004 6:23 PM To: 'The Linux-Delhi mailing list' Subject: RE: RE: [ilugd] sendmail problem :( Hi Manoj, Which version of Linux and sendmail you have ..?? Regards, DNBhatt HCL Insys -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 6:02 PM To: [EMAIL PROTECTED] Subject: RE: RE: [ilugd] sendmail problem :( Hi Shekhar, Thanks for your concern dear but still no luck Here is wht is happening if u do an nslookup... 1.) does the query go to the primary Name server? {it shld go} yes 2.) does it resolvce the domain?? {it shld resolve} yes 3.) does it telnet (port 25)to the MX by IP address?? If by MX you mean y relay server address then yes also to my own sever I am able to telnet at port 25 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't get it m sorry as I told you I made the following changes in sendmail.cf DSmailrelayerverip.com O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA That is it Is ther anything need to be changed in access domaintable . Also I have put an entry in /etc/hosts Saying my mailrelayserver name and ip thts it Hope I am clear with my setup now. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of V Shekhar Sent: Tuesday, February 17, 2004 5:30 PM To: The Linux-Delhi mailing list Subject: Re: RE: [ilugd] sendmail problem :( Manoj... Revery in case of problems.. and try yto be descriptive in answer.. or else i dont hv any pointers ... Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 4:58 pm Subject: RE: [ilugd] sendmail problem :( > > Hi I checked /etc/resolv.conf put my local domain there > Still no luck > Need Help !! :( > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Tuesday, February 17, 2004 2:40 PM > To: The Linux-Delhi mailing list > Subject: Re: [ilugd] sendmail problem :( > > sendmail is unable to get the MX record of the domain, kindly see if > > DNS is properly configured, and you can get the MX for the domain, by > > issuing NSLOOKUP command on the mailserver. > > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message ----- > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 1:38 pm > Subject: [ilugd] sendmail problem :( > > > > > > > > > Hi All, > > I am stuck with a strange problemin sendmail > > I m trying to send mail on internet using sendmail > > I have put my ISP mail relay server in DS tab of sendmail.cf > > Also m able to telnet the relay server from my m/c at port 25 > > Also the netstat shows like this > > tcp0 0 *:smtp *:* > > LISTEN > > > > > but when I try sending mail to anywhere outside say abc.com it says > > connecting to abc.com via esmtp > > > > > and then says no route to host > > even a mail to the mail relay server domain says the same > > > > > Is there anyone who has configured sendmail earlier and can help > > > me in > > this regard > > > > > Thanks > > manoj > > > > > Confidentiality Notice > > > > > > > > The information contained in this electronic message and any > > > attachments to this message are intended > > for the exclusive use of the addressee(s) and may contain > > > confidential or privileged information. If > > you are not the intended recipient, please notify the sender at > > > Wipro or [EMAIL PROTECTED] immediately > > and destroy all copies of this message and any attachments. > > > > > ___ > > ilugd mailing list > > [EMAIL PROTECTED] > > http://frodo.hserus.net/mailman/listinfo/ilugd > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ___ > ilugd mailing list > [EMAIL PROTECTED] > http://frodo.hserus.net/mailman/listinfo/ilugd > > Confidentiality Notice > > > The information contained in this electronic message and any > attachments to this message are intended > for the exc
RE: RE: [ilugd] sendmail problem :(
Hi Manoj, Which version of Linux and sendmail you have ..?? Regards, DNBhatt HCL Insys -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 6:02 PM To: [EMAIL PROTECTED] Subject: RE: RE: [ilugd] sendmail problem :( Hi Shekhar, Thanks for your concern dear but still no luck Here is wht is happening if u do an nslookup... 1.) does the query go to the primary Name server? {it shld go} yes 2.) does it resolvce the domain?? {it shld resolve} yes 3.) does it telnet (port 25)to the MX by IP address?? If by MX you mean y relay server address then yes also to my own sever I am able to telnet at port 25 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't get it m sorry as I told you I made the following changes in sendmail.cf DSmailrelayerverip.com O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA That is it Is ther anything need to be changed in access domaintable . Also I have put an entry in /etc/hosts Saying my mailrelayserver name and ip thts it Hope I am clear with my setup now. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of V Shekhar Sent: Tuesday, February 17, 2004 5:30 PM To: The Linux-Delhi mailing list Subject: Re: RE: [ilugd] sendmail problem :( Manoj... Revery in case of problems.. and try yto be descriptive in answer.. or else i dont hv any pointers ... Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 4:58 pm Subject: RE: [ilugd] sendmail problem :( > > Hi I checked /etc/resolv.conf put my local domain there > Still no luck > Need Help !! :( > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Tuesday, February 17, 2004 2:40 PM > To: The Linux-Delhi mailing list > Subject: Re: [ilugd] sendmail problem :( > > sendmail is unable to get the MX record of the domain, kindly see if > > DNS is properly configured, and you can get the MX for the domain, by > > issuing NSLOOKUP command on the mailserver. > > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message ----- > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 1:38 pm > Subject: [ilugd] sendmail problem :( > > > > > > > > > Hi All, > > I am stuck with a strange problemin sendmail > > I m trying to send mail on internet using sendmail > > I have put my ISP mail relay server in DS tab of sendmail.cf > > Also m able to telnet the relay server from my m/c at port 25 > > Also the netstat shows like this > > tcp0 0 *:smtp *:* > > LISTEN > > > > > but when I try sending mail to anywhere outside say abc.com it says > > connecting to abc.com via esmtp > > > > > and then says no route to host > > even a mail to the mail relay server domain says the same > > > > > Is there anyone who has configured sendmail earlier and can help > > > me in > > this regard > > > > > Thanks > > manoj > > > > > Confidentiality Notice > > > > > > > > The information contained in this electronic message and any > > > attachments to this message are intended > > for the exclusive use of the addressee(s) and may contain > > > confidential or privileged information. If > > you are not the intended recipient, please notify the sender at > > > Wipro or [EMAIL PROTECTED] immediately > > and destroy all copies of this message and any attachments. > > > > > ___ > > ilugd mailing list > > [EMAIL PROTECTED] > > http://frodo.hserus.net/mailman/listinfo/ilugd > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ___ > ilugd mailing list > [EMAIL PROTECTED] > http://frodo.hserus.net/mailman/listinfo/ilugd > > Confidentiality Notice > > > The information contained in this electronic message and any > attachments to this message are intended > for the exclusive use of the addressee(s) and may contain > confidential or privileged information. If > you are not the intended recipient, please notify the sender at > Wipro or [EMAIL PROTECTED] immediately > and destroy all copies of this message and any attachments. > > ___ > ilugd mailing list > [EMAIL PROTECTED] > http://frodo.hse
Re: RE: RE: RE: [ilugd] sendmail problem :(
Manoj, if u r able to telnet to ISP's server on PORT25 , it does not mean u r allowed or able to relay, relay chk happend once u type in the TO: address Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 9:37 pm Subject: RE: RE: RE: [ilugd] sendmail problem :( > > Hi shekhar > > Still no luck > > My ISP allow me to relay as m able to telnet at port 25 of their relay > server from my m/c > > What to do ??? anyone who has faced similar problem before > . > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Tuesday, February 17, 2004 7:42 PM > To: The Linux-Delhi mailing list > Subject: Re: RE: RE: [ilugd] sendmail problem :( > > Manoj. > > I suggest u change > > > DSmailrelayerverip.com > > to > > DSMail.Relay.IPV4.ADDRESS > > eg > > DS192.168.100.1 > > and see if it works. > > one point to note is, that ur ISP relay server shld allow u to relay > > SMTP. (But it does not hv to do the problem u r facing now) > > > > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message - > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 6:02 pm > Subject: RE: RE: [ilugd] sendmail problem :( > > > > > > Hi Shekhar, > > > > > Thanks for your concern dear but still no luck > > > > > Here is wht is happening > > > > > > > > if u do an nslookup... > > 1.) does the query go to the primary Name server? {it shld go} yes > > > > > 2.) does it resolvce the domain?? {it shld resolve} yes > > > > > 3.) does it telnet (port 25)to the MX by IP address?? If by MX you > > > meany relay server address then yes also to my own sever I am able > > > to telnet > > at port 25 > > > > > 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't > > > get it > > m sorry > > > > > as I told you I made the following changes in sendmail.cf > > > > > DSmailrelayerverip.com > > O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA > > That is it > > Is ther anything need to be changed in access domaintable . > > Also I have put an entry in /etc/hosts > > > > > Saying my mailrelayserver name and ip thts it > > > > > Hope I am clear with my setup now. > > > > > > > > > > > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] > > delhi.org] On > > Behalf Of V Shekhar > > Sent: Tuesday, February 17, 2004 5:30 PM > > To: The Linux-Delhi mailing list > > Subject: Re: RE: [ilugd] sendmail problem :( > > > > > Manoj... > > > > > > > > Revery in case of problems.. and try yto be descriptive in > > > answer.. or > > > > > else i dont hv any pointers ... > > > > > Warm Regards. > > - V SHEKHAR - > > Tel : 040-23553343 ext 285 > > > > > > > > - Original Message - > > From: <[EMAIL PROTECTED]> > > Date: Tuesday, February 17, 2004 4:58 pm > > Subject: RE: [ilugd] sendmail problem :( > > > > > > > > > > > > Hi I checked /etc/resolv.conf put my local domain there > > > Still no luck > > > Need Help !! :( > > > > > > > > > -Original Message- > > > From: [EMAIL PROTECTED] > > > [mailto:[EMAIL PROTECTED] > > > delhi.org] On > > > Behalf Of V Shekhar > > > Sent: Tuesday, February 17, 2004 2:40 PM > > > To: The Linux-Delhi mailing list > > > Subject: Re: [ilugd] sendmail problem :( > > > > > > > > > sendmail is unable to get the MX record of the domain, kindly > > > see if > > > > > > > > > DNS is properly configured, and you can get the MX for the > > > domain, by > > > > > > > > > issuing NSLOOKUP command on the mailserver. > > > > > > > > > > > > > > > Warm Regards. > > > - V SHEKHAR - > > > Tel : 040-23553343 ext 285 > > > > > > > > > > > > > > > - Original Message - > >
RE: [ilugd] sendmail problem :(
>>>sendmail is unable to get the MX record of the domain This is the case when the mail server is unable to send mails on a single domain and its working perfect on other domains. ## but when I try sending mail to *anywhere* outside say abc.com it says ## connecting to abc.com via esmtp Then DNS may not be the prime issue rather relaying can be a problem. Contact your ISP, if they have properly given a relay to your IPs. Or you can make your own SMTP server without using the ISP one. Edit /etc/sendmail.cf and change 127.0.0.1 --> Public IP And vi /etc/mail/relay-domains and give the IP block of your network. You can use this as your SMTP server. HTH... BR, Gurpreet ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd
RE: RE: RE: [ilugd] sendmail problem :(
Hi shekhar Still no luck My ISP allow me to relay as m able to telnet at port 25 of their relay server from my m/c What to do ??? anyone who has faced similar problem before . -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of V Shekhar Sent: Tuesday, February 17, 2004 7:42 PM To: The Linux-Delhi mailing list Subject: Re: RE: RE: [ilugd] sendmail problem :( Manoj. I suggest u change DSmailrelayerverip.com to DSMail.Relay.IPV4.ADDRESS eg DS192.168.100.1 and see if it works. one point to note is, that ur ISP relay server shld allow u to relay SMTP. (But it does not hv to do the problem u r facing now) Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 6:02 pm Subject: RE: RE: [ilugd] sendmail problem :( > > Hi Shekhar, > > Thanks for your concern dear but still no luck > > Here is wht is happening > > > if u do an nslookup... > 1.) does the query go to the primary Name server? {it shld go} yes > > 2.) does it resolvce the domain?? {it shld resolve} yes > > 3.) does it telnet (port 25)to the MX by IP address?? If by MX you > meany relay server address then yes also to my own sever I am able > to telnet > at port 25 > > 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't > get it > m sorry > > as I told you I made the following changes in sendmail.cf > > DSmailrelayerverip.com > O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA > That is it > Is ther anything need to be changed in access domaintable . > Also I have put an entry in /etc/hosts > > Saying my mailrelayserver name and ip thts it > > Hope I am clear with my setup now. > > > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Tuesday, February 17, 2004 5:30 PM > To: The Linux-Delhi mailing list > Subject: Re: RE: [ilugd] sendmail problem :( > > Manoj... > > > Revery in case of problems.. and try yto be descriptive in > answer.. or > > else i dont hv any pointers ... > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message - > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 4:58 pm > Subject: RE: [ilugd] sendmail problem :( > > > > > > Hi I checked /etc/resolv.conf put my local domain there > > Still no luck > > Need Help !! :( > > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] > > delhi.org] On > > Behalf Of V Shekhar > > Sent: Tuesday, February 17, 2004 2:40 PM > > To: The Linux-Delhi mailing list > > Subject: Re: [ilugd] sendmail problem :( > > > > > sendmail is unable to get the MX record of the domain, kindly > see if > > > > > DNS is properly configured, and you can get the MX for the > domain, by > > > > > issuing NSLOOKUP command on the mailserver. > > > > > > > > Warm Regards. > > - V SHEKHAR - > > Tel : 040-23553343 ext 285 > > > > > > > > - Original Message - > > From: <[EMAIL PROTECTED]> > > Date: Tuesday, February 17, 2004 1:38 pm > > Subject: [ilugd] sendmail problem :( > > > > > > > > > > > > > > > > > > Hi All, > > > I am stuck with a strange problemin sendmail > > > I m trying to send mail on internet using sendmail > > > I have put my ISP mail relay server in DS tab of sendmail.cf > > > Also m able to telnet the relay server from my m/c at port 25 > > > Also the netstat shows like this > > > tcp0 0 *:smtp *:* > > > LISTEN > > > > > > > > > but when I try sending mail to anywhere outside say abc.com it > says> > connecting to abc.com via esmtp > > > > > > > > > and then says no route to host > > > even a mail to the mail relay server domain says the same > > > > > > > > > Is there anyone who has configured sendmail earlier and can help > > > > > > me in > > > this regard > > > > > > > > > Thanks > > > manoj > > > > > > > > > Confidentiality Notice > > > > > > > > > > > > > > > The information contained in this electronic message and any > > > > > > attachments t
Re: RE: RE: [ilugd] sendmail problem :(
Manoj. I suggest u change DSmailrelayerverip.com to DSMail.Relay.IPV4.ADDRESS eg DS192.168.100.1 and see if it works. one point to note is, that ur ISP relay server shld allow u to relay SMTP. (But it does not hv to do the problem u r facing now) Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 6:02 pm Subject: RE: RE: [ilugd] sendmail problem :( > > Hi Shekhar, > > Thanks for your concern dear but still no luck > > Here is wht is happening > > > if u do an nslookup... > 1.) does the query go to the primary Name server? {it shld go} yes > > 2.) does it resolvce the domain?? {it shld resolve} yes > > 3.) does it telnet (port 25)to the MX by IP address?? If by MX you > meany relay server address then yes also to my own sever I am able > to telnet > at port 25 > > 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't > get it > m sorry > > as I told you I made the following changes in sendmail.cf > > DSmailrelayerverip.com > O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA > That is it > Is ther anything need to be changed in access domaintable . > Also I have put an entry in /etc/hosts > > Saying my mailrelayserver name and ip thts it > > Hope I am clear with my setup now. > > > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Tuesday, February 17, 2004 5:30 PM > To: The Linux-Delhi mailing list > Subject: Re: RE: [ilugd] sendmail problem :( > > Manoj... > > > Revery in case of problems.. and try yto be descriptive in > answer.. or > > else i dont hv any pointers ... > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message - > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 4:58 pm > Subject: RE: [ilugd] sendmail problem :( > > > > > > Hi I checked /etc/resolv.conf put my local domain there > > Still no luck > > Need Help !! :( > > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] > > delhi.org] On > > Behalf Of V Shekhar > > Sent: Tuesday, February 17, 2004 2:40 PM > > To: The Linux-Delhi mailing list > > Subject: Re: [ilugd] sendmail problem :( > > > > > sendmail is unable to get the MX record of the domain, kindly > see if > > > > > DNS is properly configured, and you can get the MX for the > domain, by > > > > > issuing NSLOOKUP command on the mailserver. > > > > > > > > Warm Regards. > > - V SHEKHAR - > > Tel : 040-23553343 ext 285 > > > > > > > > - Original Message - > > From: <[EMAIL PROTECTED]> > > Date: Tuesday, February 17, 2004 1:38 pm > > Subject: [ilugd] sendmail problem :( > > > > > > > > > > > > > > > > > > Hi All, > > > I am stuck with a strange problemin sendmail > > > I m trying to send mail on internet using sendmail > > > I have put my ISP mail relay server in DS tab of sendmail.cf > > > Also m able to telnet the relay server from my m/c at port 25 > > > Also the netstat shows like this > > > tcp0 0 *:smtp *:* > > > LISTEN > > > > > > > > > but when I try sending mail to anywhere outside say abc.com it > says> > connecting to abc.com via esmtp > > > > > > > > > and then says no route to host > > > even a mail to the mail relay server domain says the same > > > > > > > > > Is there anyone who has configured sendmail earlier and can help > > > > > > me in > > > this regard > > > > > > > > > Thanks > > > manoj > > > > > > > > > Confidentiality Notice > > > > > > > > > > > > > > > The information contained in this electronic message and any > > > > > > attachments to this message are intended > > > for the exclusive use of the addressee(s) and may contain > > > > > > confidential or privileged information. If > > > you are not the intended recipient, please notify the sender at > > > > > > Wipro or [EMAIL PROTECTED] immediately > > > and destroy all copies of this message and any a
RE: RE: [ilugd] sendmail problem :(
Hi Shekhar, Thanks for your concern dear but still no luck Here is wht is happening if u do an nslookup... 1.) does the query go to the primary Name server? {it shld go} yes 2.) does it resolvce the domain?? {it shld resolve} yes 3.) does it telnet (port 25)to the MX by IP address?? If by MX you mean y relay server address then yes also to my own sever I am able to telnet at port 25 4.) Does it telnet (port 25) to the MX by FQDN?? FQDN??? Couldn't get it m sorry as I told you I made the following changes in sendmail.cf DSmailrelayerverip.com O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA That is it Is ther anything need to be changed in access domaintable . Also I have put an entry in /etc/hosts Saying my mailrelayserver name and ip thts it Hope I am clear with my setup now. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of V Shekhar Sent: Tuesday, February 17, 2004 5:30 PM To: The Linux-Delhi mailing list Subject: Re: RE: [ilugd] sendmail problem :( Manoj... Revery in case of problems.. and try yto be descriptive in answer.. or else i dont hv any pointers ... Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 4:58 pm Subject: RE: [ilugd] sendmail problem :( > > Hi I checked /etc/resolv.conf put my local domain there > Still no luck > Need Help !! :( > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Tuesday, February 17, 2004 2:40 PM > To: The Linux-Delhi mailing list > Subject: Re: [ilugd] sendmail problem :( > > sendmail is unable to get the MX record of the domain, kindly see if > > DNS is properly configured, and you can get the MX for the domain, by > > issuing NSLOOKUP command on the mailserver. > > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message ----- > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 1:38 pm > Subject: [ilugd] sendmail problem :( > > > > > > > > > Hi All, > > I am stuck with a strange problemin sendmail > > I m trying to send mail on internet using sendmail > > I have put my ISP mail relay server in DS tab of sendmail.cf > > Also m able to telnet the relay server from my m/c at port 25 > > Also the netstat shows like this > > tcp0 0 *:smtp *:* > > LISTEN > > > > > but when I try sending mail to anywhere outside say abc.com it says > > connecting to abc.com via esmtp > > > > > and then says no route to host > > even a mail to the mail relay server domain says the same > > > > > Is there anyone who has configured sendmail earlier and can help > > > me in > > this regard > > > > > Thanks > > manoj > > > > > Confidentiality Notice > > > > > > > > The information contained in this electronic message and any > > > attachments to this message are intended > > for the exclusive use of the addressee(s) and may contain > > > confidential or privileged information. If > > you are not the intended recipient, please notify the sender at > > > Wipro or [EMAIL PROTECTED] immediately > > and destroy all copies of this message and any attachments. > > > > > ___ > > ilugd mailing list > > [EMAIL PROTECTED] > > http://frodo.hserus.net/mailman/listinfo/ilugd > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ___ > ilugd mailing list > [EMAIL PROTECTED] > http://frodo.hserus.net/mailman/listinfo/ilugd > > Confidentiality Notice > > > The information contained in this electronic message and any > attachments to this message are intended > for the exclusive use of the addressee(s) and may contain > confidential or privileged information. If > you are not the intended recipient, please notify the sender at > Wipro or [EMAIL PROTECTED] immediately > and destroy all copies of this message and any attachments. > > ___ > ilugd mailing list > [EMAIL PROTECTED] > http://frodo.hserus.net/mailman/listinfo/ilugd > > > > > > > > > ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd Confidentiality Notice The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain confidential or privileged information. If you are not the intended recipient, please notify the sender at Wipro or [EMAIL PROTECTED] immediately and destroy all copies of this message and any attachments. ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd
Re: RE: [ilugd] sendmail problem :(
Manoj... if u do an nslookup... 1.) does the query go to the primary Name server? {it shld go} 2.) does it resolvce the domain?? {it shld resolve} 3.) does it telnet (port 25)to the MX by IP address?? 4.) Does it telnet (port 25) to the MX by FQDN?? all answers shld be yes.. Revery in case of problems.. and try yto be descriptive in answer.. or else i dont hv any pointers ... Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 4:58 pm Subject: RE: [ilugd] sendmail problem :( > > Hi I checked /etc/resolv.conf put my local domain there > Still no luck > Need Help !! :( > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > delhi.org] On > Behalf Of V Shekhar > Sent: Tuesday, February 17, 2004 2:40 PM > To: The Linux-Delhi mailing list > Subject: Re: [ilugd] sendmail problem :( > > sendmail is unable to get the MX record of the domain, kindly see if > > DNS is properly configured, and you can get the MX for the domain, by > > issuing NSLOOKUP command on the mailserver. > > > Warm Regards. > - V SHEKHAR - > Tel : 040-23553343 ext 285 > > > - Original Message ----- > From: <[EMAIL PROTECTED]> > Date: Tuesday, February 17, 2004 1:38 pm > Subject: [ilugd] sendmail problem :( > > > > > > > > > Hi All, > > I am stuck with a strange problemin sendmail > > I m trying to send mail on internet using sendmail > > I have put my ISP mail relay server in DS tab of sendmail.cf > > Also m able to telnet the relay server from my m/c at port 25 > > Also the netstat shows like this > > tcp0 0 *:smtp *:* > > LISTEN > > > > > but when I try sending mail to anywhere outside say abc.com it says > > connecting to abc.com via esmtp > > > > > and then says no route to host > > even a mail to the mail relay server domain says the same > > > > > Is there anyone who has configured sendmail earlier and can help > > > me in > > this regard > > > > > Thanks > > manoj > > > > > Confidentiality Notice > > > > > > > > The information contained in this electronic message and any > > > attachments to this message are intended > > for the exclusive use of the addressee(s) and may contain > > > confidential or privileged information. If > > you are not the intended recipient, please notify the sender at > > > Wipro or [EMAIL PROTECTED] immediately > > and destroy all copies of this message and any attachments. > > > > > ___ > > ilugd mailing list > > [EMAIL PROTECTED] > > http://frodo.hserus.net/mailman/listinfo/ilugd > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ___ > ilugd mailing list > [EMAIL PROTECTED] > http://frodo.hserus.net/mailman/listinfo/ilugd > > Confidentiality Notice > > > The information contained in this electronic message and any > attachments to this message are intended > for the exclusive use of the addressee(s) and may contain > confidential or privileged information. If > you are not the intended recipient, please notify the sender at > Wipro or [EMAIL PROTECTED] immediately > and destroy all copies of this message and any attachments. > > ___ > ilugd mailing list > [EMAIL PROTECTED] > http://frodo.hserus.net/mailman/listinfo/ilugd > > > > > > > > > ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd
RE: [ilugd] sendmail problem :(
Hi I checked /etc/resolv.conf put my local domain there Still no luck Need Help !! :( -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of V Shekhar Sent: Tuesday, February 17, 2004 2:40 PM To: The Linux-Delhi mailing list Subject: Re: [ilugd] sendmail problem :( sendmail is unable to get the MX record of the domain, kindly see if DNS is properly configured, and you can get the MX for the domain, by issuing NSLOOKUP command on the mailserver. Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 1:38 pm Subject: [ilugd] sendmail problem :( > > > Hi All, > I am stuck with a strange problemin sendmail > I m trying to send mail on internet using sendmail > I have put my ISP mail relay server in DS tab of sendmail.cf > Also m able to telnet the relay server from my m/c at port 25 > Also the netstat shows like this > tcp0 0 *:smtp *:* > LISTEN > > but when I try sending mail to anywhere outside say abc.com it says > connecting to abc.com via esmtp > > and then says no route to host > even a mail to the mail relay server domain says the same > > Is there anyone who has configured sendmail earlier and can help > me in > this regard > > Thanks > manoj > > Confidentiality Notice > > > The information contained in this electronic message and any > attachments to this message are intended > for the exclusive use of the addressee(s) and may contain > confidential or privileged information. If > you are not the intended recipient, please notify the sender at > Wipro or [EMAIL PROTECTED] immediately > and destroy all copies of this message and any attachments. > > ___ > ilugd mailing list > [EMAIL PROTECTED] > http://frodo.hserus.net/mailman/listinfo/ilugd > > > > > > > > > ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd Confidentiality Notice The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain confidential or privileged information. If you are not the intended recipient, please notify the sender at Wipro or [EMAIL PROTECTED] immediately and destroy all copies of this message and any attachments. ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd
Re: [ilugd] sendmail problem :(
Hi Manoj Do you have any firewall installed at your network. And also check the DNS entries. Thanks & Regards Sukhdev Singh Seera Cogitans. M: +91 9811154380 [EMAIL PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 17, 2004 1:38 PM Subject: [ilugd] sendmail problem :( Hi All, I am stuck with a strange problemin sendmail I m trying to send mail on internet using sendmail I have put my ISP mail relay server in DS tab of sendmail.cf Also m able to telnet the relay server from my m/c at port 25 Also the netstat shows like this tcp0 0 *:smtp *:* LISTEN but when I try sending mail to anywhere outside say abc.com it says connecting to abc.com via esmtp and then says no route to host even a mail to the mail relay server domain says the same Is there anyone who has configured sendmail earlier and can help me in this regard Thanks manoj Confidentiality Notice The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain confidential or privileged information. If you are not the intended recipient, please notify the sender at Wipro or [EMAIL PROTECTED] immediately and destroy all copies of this message and any attachments. ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd
Re: [ilugd] sendmail problem :(
sendmail is unable to get the MX record of the domain, kindly see if DNS is properly configured, and you can get the MX for the domain, by issuing NSLOOKUP command on the mailserver. Warm Regards. - V SHEKHAR - Tel : 040-23553343 ext 285 - Original Message - From: <[EMAIL PROTECTED]> Date: Tuesday, February 17, 2004 1:38 pm Subject: [ilugd] sendmail problem :( > > > Hi All, > I am stuck with a strange problemin sendmail > I m trying to send mail on internet using sendmail > I have put my ISP mail relay server in DS tab of sendmail.cf > Also m able to telnet the relay server from my m/c at port 25 > Also the netstat shows like this > tcp0 0 *:smtp *:* > LISTEN > > but when I try sending mail to anywhere outside say abc.com it says > connecting to abc.com via esmtp > > and then says no route to host > even a mail to the mail relay server domain says the same > > Is there anyone who has configured sendmail earlier and can help > me in > this regard > > Thanks > manoj > > Confidentiality Notice > > > The information contained in this electronic message and any > attachments to this message are intended > for the exclusive use of the addressee(s) and may contain > confidential or privileged information. If > you are not the intended recipient, please notify the sender at > Wipro or [EMAIL PROTECTED] immediately > and destroy all copies of this message and any attachments. > > ___ > ilugd mailing list > [EMAIL PROTECTED] > http://frodo.hserus.net/mailman/listinfo/ilugd > > > > > > > > > ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd
[ilugd] sendmail problem :(
Hi All, I am stuck with a strange problemin sendmail I m trying to send mail on internet using sendmail I have put my ISP mail relay server in DS tab of sendmail.cf Also m able to telnet the relay server from my m/c at port 25 Also the netstat shows like this tcp0 0 *:smtp *:* LISTEN but when I try sending mail to anywhere outside say abc.com it says connecting to abc.com via esmtp and then says no route to host even a mail to the mail relay server domain says the same Is there anyone who has configured sendmail earlier and can help me in this regard Thanks manoj Confidentiality Notice The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain confidential or privileged information. If you are not the intended recipient, please notify the sender at Wipro or [EMAIL PROTECTED] immediately and destroy all copies of this message and any attachments. ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd