Hi, Initially couldn't send out mail through my website (php), because sendmail smtp settings default to 127.0.0.1. Thought I fixed that and was confident that sendmail works fine. Now I can send emails out using Evolution, but still can't send out emails through my website. In sendmail.mc I changed DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl to DAEMON_OPTIONS(`Port=smtp,Name=MTA')dnl and did m4 /etc/mail/sendmail.mc > /etc/sendmail.cf after that. Do I need to recompile PHP to make it work? If yes, are there any special things I need to add to --with options to make this work. Thanks, Roman
Was sendmail installed when you compiled PHP? If not, PHP's mail() function doesn't work, and you have to re-compile PHP.
FAlko, Thanks for the answer. As you remember a week or so ago I was struggling with PayFlow Pro and you've been a great help to fix it. Since I reconfigured and recompiled php so many times, I am not really sure if Sendmail was installed or not. Is it possible to see this in phpinfo.php? Can you please take a look at www.rcbazaar.com/phpinfo.php. Hope I don't have some really weird stuff in there. Thanks, Roman
Looks ok. And it also shows the path to sendmail so I guess it had been installed when you compiled PHP. Your problem must be somewhere else...
Falko, Sendmail was initially installed as a part of FC4 installation where you only have to check "Mail server". Then I recompiled PHP, removed sendmail using yum(because wasn't working) and installed it back using yum. Is it possible that something was kept from initial install and is now kicking my ass? Thanks, Roman
Thats unlikely, but you can try to recompile php now with your working sendmail setup. Have you tried to set error reporting in PHP to E_ALL, did you get any PHP errors when you try to send mail? Are there any errors or messages in the mail log, when you try to send an email with PHP?
Now I am really confused. I went to /var/spool/mail/root and found ALL the emails. But all of them had this text:: "The original message was received at Sun, 21 Aug 2005 18:54:11 -0500 from localhost.localdomain [127.0.0.1] ----- The following addresses had permanent fatal errors ----- <[email protected]> ----- Transcript of session follows ----- <[email protected]>... Deferred: Connection timed out with mx4.mail.yahoo.com. Message could not be delivered for 5 days Message will be deleted from queue --j7R0rwns001943.1125105963/rcbazaar.com Content-Type: message/delivery-status Reporting-MTA: dns; rcbazaar.com Arrival-Date: Sun, 21 Aug 2005 18:54:11 -0500 Final-Recipient: RFC822; [email protected] Action: failed Status: 4.4.7 Remote-MTA: DNS; mx4.mail.yahoo.com Last-Attempt-Date: Fri, 26 Aug 2005 20:26:03 -0500 --j7R0rwns001943.1125105963/rcbazaar.com Content-Type: message/rfc822 Return-Path: <[email protected]> Received: from rcbazaar.com (localhost.localdomain [127.0.0.1]) by rcbazaar.com (8.13.4/8.13.4) with ESMTP id j7LNsB88024885 for <[email protected]>; Sun, 21 Aug 2005 18:54:11 -0500 Received: (from nobody@localhost) by rcbazaar.com (8.13.4/8.13.4/Submit) id j7LNsBF0024884; Sun, 21 Aug 2005 18:54:11 -0500 Date: Sun, 21 Aug 2005 18:54:11 -0500 Message-Id: <[email protected]> To: [email protected] Subject: roman recommends this site MIME-Version: 1.0 From: "[email protected]" <[email protected]> Content-type: text/plain; charset=iso-8859-1 Your friend roman ([email protected]) has recommended this site to you. http://www.rcbazaar.com/proddetail.php?prod=HELI004 " Hope I understand this correctly. On my website I collect Name, fromEmail, toEmail and the message. When I click send email, which should be sent from "fromEmail" to "toEmail", all I get is a new entry in /var/spool/mail/root. I would appreciate your help. Thanks, Roman
Yes, this is the spool directory of your MTA (sendmail) where PHP puts your email messages for delivery. This shows us that PHP is working correctly. The errors above show you that yahoo is not accepting the messages from your MTA. Maybe your server is on a DSL line with a dynamic IP? Many large email providers did not accept emails from dynamic IP's anymore.
I have a router sitting on a static IP (216.188.249.98) and server connected to the router and assigned the 192.168.1.2. In order to see my website inside the firewall (router) I have to type 192.168.1.2 and not www.rcbazaar.com. Linksys told me that this is OK, but I really think there must be a way to work around this. Our mail accounts are hosted outside our intranet with a web hosting company, which is also holding our DNS record. Is it possible that all the problems with sendmail are actually DNS problems and how can I test this? Appreciate you help ! Roman
You can test if this are DNS or routing problems: Please try to connect to the yahoo mailserver via telnet on the shell of your server. Enter the command: Code: telnet mx4.mail.yahoo.com 25 When you got an answer from the serve, you can close the connection by typing "quit". The testsession should look similar like this: Code: # telnet mx4.mail.yahoo.com 25 Trying 68.142.202.12... Connected to mta-v4.mail.vip.mud.yahoo.com. Escape character is '^]'. 220 mta230.mail.mud.yahoo.com ESMTP YSmtp service ready quit 221 mta230.mail.mud.yahoo.com Connection closed by foreign host. If not, please post the output in the forum.
It only comes to: [root@www ~]# telnet mx4.mail.yahoo.com 25 Trying 68.142.202.11... and then stays there. On my router I have both ports 25 and 110 TCP enabled. I guess we are getting closer to the real problem. ?? Thanks, Roman
Name resolution works on your server, beacuse it resolves mx4.mail.yahoo.com to the correct IP 68.142.202.11 Yes were getting closer It seems you have firewall or something like that in your router enabled, that blocks outbound connections (YourServer => Internet) on Port 25.
Since I don't have a DNS running on my machine, does it mean that yahoo gets resolved externally? If so, than it does go out through 25, right? Is it possible that some of the settings I made in Evolution have messed up the sendmail? Thanks, Roman
Yes. But in many cases you set the nmeserver simply to the IP of your router and the router (gateway) resolves the names for you. No, nameservice is port 53. No, your problems have nothing to do with sendmail. We tried to connect via telnet on port 25, telnet is independant from sendmail, and the connection was not possible. It is a problem with your router or another firewall or maybe your internet provider blocks connections on port 25 to other servers that the mailrelay of your provider.
Very impressive. I would have never expected my ISP provider to block traffic on port 25. As soon as I called them and they changed the setting, everything worked like a champ. Thank you very much Roman
I have the same problem here in my Internetcafé that I have to use during my holidays. I hope some day an internet connection will be as common as a shower in an accommodation...