From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/64070 Path: news.gmane.org!not-for-mail From: reader@newsguy.com Newsgroups: gmane.emacs.gnus.general Subject: Re: How does gnus talk to sendmail Date: Mon, 04 Dec 2006 12:51:33 -0600 Organization: Still searching... Message-ID: <877ix7sde2.fsf@newsguy.com> References: <87wt58yb9z.fsf@newsguy.com> NNTP-Posting-Host: dough.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1165258411 12587 80.91.229.10 (4 Dec 2006 18:53:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 4 Dec 2006 18:53:31 +0000 (UTC) Original-X-From: ding-owner+M12593@lists.math.uh.edu Mon Dec 04 19:53:30 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by dough.gmane.org with esmtp (Exim 4.50) id 1GrIwQ-0000MK-Pp for ding-account@gmane.org; Mon, 04 Dec 2006 19:53:27 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1GrIv4-0007aa-CL; Mon, 04 Dec 2006 12:52:02 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1GrIv2-0007aC-D2 for ding@lists.math.uh.edu; Mon, 04 Dec 2006 12:52:00 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.63) (envelope-from ) id 1GrIuw-0003Zc-SI for ding@lists.math.uh.edu; Mon, 04 Dec 2006 12:52:00 -0600 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1GrIus-0005Xk-00 for ; Mon, 04 Dec 2006 19:51:50 +0100 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1GrIuj-0004nY-MX for ding@gnus.org; Mon, 04 Dec 2006 19:51:41 +0100 Original-Received: from c-67-163-25-192.hsd1.in.comcast.net ([67.163.25.192]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 Dec 2006 19:51:41 +0100 Original-Received: from reader by c-67-163-25-192.hsd1.in.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 Dec 2006 19:51:41 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 24 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: c-67-163-25-192.hsd1.in.comcast.net User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.90 (gnu/linux) Cancel-Lock: sha1:XsoWiVXxxJ8KWCmX+u1IOmdnRGs= X-Spam-Score: -1.6 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:64070 Archived-At: gdt@work.lexort.com writes: > Reading the sources (21.4, in lisp/mail/sendmail.el), I see some > amusing workarounds for SunOS 4. Bit, I also see /usr/lib/sendmail as > a default if sendmail-program is not defined. > paths.el sets sendmail program by looking for sendmail in various > places: > > (defconst sendmail-program > (cond > ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") > ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") > ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") > (t "fakemail")) ;In ../etc, to interface to /bin/mail. > "Program used to send messages.") > That source file should have found my sendmail at /usr/sbin/sendmail so I should not be having this problem, but I am. Checking lisp/mail I see both sendmail.el.gz and sendmail.elc so this stuff should be loading. I've forgotten how to check if the source file is loading.