On Wednesday 14 March 2007, Claudio Mundin wrote: > I try to search information of mailfomd but I cant't find anything. > You can tell me where I can found this information?
http://puszcza.gnu.org.ua/projects/mailfromd/ You need of flex-2.5.4a (not never !), texinfo-4.8 and mailutils-1.0 (http://www.gnu.org/software/mailutils/mailutils.html) for building. mailutils needs the patch (this is impotant for sending mail from mailfromd): Index: mailbox/sendmail.c =================================================================== RCS file: /cvsroot/mailutils/mailutils/mailbox/sendmail.c,v retrieving revision 1.33 diff -p -u -r1.33 sendmail.c --- mailbox/sendmail.c 26 Apr 2006 11:56:31 -0000 1.33 +++ mailbox/sendmail.c 13 Dec 2006 08:50:43 -0000 @@ -441,10 +441,15 @@ sendmail_send_message (mu_mailer_t maile if (rc < 0) { - status = errno; - MAILER_DEBUG2 (mailer, MU_DEBUG_TRACE, - "waitpid(%d) failed: %s\n", - sendmail->pid, strerror (status)); + if (errno == ECHILD) + status = 0; + else + { + status = errno; + MAILER_DEBUG2 (mailer, MU_DEBUG_TRACE, + "waitpid(%d) failed: %s\n", + sendmail->pid, strerror (status)); + } } else if (WIFEXITED (exit_status)) { -- Regards, Sergey _______________________________________________ Help us build a comprehensive ClamAV guide: visit http://wiki.clamav.net http://lurker.clamav.net/list/clamav-users.html