From: Ed Carp Date: March 17 1999 5:38pm Subject: Re: MySQL + sendmail List-Archive: http://lists.mysql.com/mysql/436 Message-Id: <009f01be709d$318308c0$74c9a8c0@traveler.airmail.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit > I'm going to develop a web-based email system. The user >information will be in MySQL database. The question: how to make sendmail >to check if user exists in MySQL table? Have already somebody solved this >problem? Is there a patch for sendmail to authentificate against external >SQL database? May be other MTA, but sendmail if preferable. It would probably be easier to roll your own server that supported SMTP (no kidding!) or get one of the sendmail clones than hacking sendmail - the code's a mess. If you use 'sendmail -bt' on the back end, you can parse the output and figure out if the message is deliverable. Is that what you're trying to do?