From xemacs-m  Mon Mar 24 14:38:44 1997
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id OAA17012
	for <xemacs-beta@xemacs.org>; Mon, 24 Mar 1997 14:38:42 -0600 (CST)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.5/8.8.5) id MAA03188;
	Mon, 24 Mar 1997 12:50:15 -0800
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: Re: 20.1b9 success on Solaris 2.5.1 -- one major bug
References: <199703241826.KAA08733@sandman>
X-Url: http://www.miranova.com/%7Esteve/
X-Face: #!T9!#9s-3o8)*uHlX{Ug[xW7E7Wr!*L46-OxqMu\xz23v|R9q}lH?cRS{rCNe^'[`^sr5"
 f8*@r4ipO6Jl!:Ccq<xoV[Qz2u8<8-+Vwf2gzJ44lf_/y9OaQ`@#Q65{U4/TC)i2`~/M&QI$X>p:9I
 OSS'2{-)-4wBnVeg0S\O4Al@)uC[pD|+
X-Attribution: sb
From: Steven L Baur <steve@miranova.com>
In-Reply-To: Dan Rich's message of Mon, 24 Mar 1997 10:26:42 -0800
Mime-Version: 1.0 (generated by tm-edit 7.106)
Content-Type: text/plain; charset=US-ASCII
Date: 24 Mar 1997 12:50:08 -0800
Message-ID: <m2ybbdj9q7.fsf@altair.xemacs.org>
Lines: 42
X-Mailer: Gnus v5.4.37/XEmacs 20.1(beta10)

Dan Rich writes:

> I have built 20.1b9 with no problems on Solaris 2.5.1 with X11R6.3,
> but have run into one major problem (already mentioned on the list,
> but I didn't see any solution suggestions).

> Sendmail.el appears to be completely broken, and it looks like the
> culprit is the following code in sendmail-send-it:

Yup.  Somebody already sent in a fix for this.  Here it is reposted.

Index: lisp/modes/sendmail.el
===================================================================
RCS file: /usr/local/xemacs/xemacs-20.0/lisp/modes/sendmail.el,v
retrieving revision 1.3
diff -u -r1.3 sendmail.el
--- sendmail.el	1997/03/22 06:02:26	1.3
+++ sendmail.el	1997/03/23 02:01:35
@@ -312,12 +312,13 @@
 	(put 'user-mail-address 'saved-value
 	     (list user-mail-address))
 	(put 'query-user-mail-address 'saved-value '(nil))
-	(custom-save-all)))
-    (if user-mail-address
-	user-mail-address
-      (setq user-mail-address (concat (user-login-name) "@"
-				      (or mail-host-address
-					  (system-name)))))))
+        (require 'cus-edit)
+	(custom-save-all))))
+  (if user-mail-address
+      user-mail-address
+    (setq user-mail-address (concat (user-login-name) "@"
+                                    (or mail-host-address
+                                        (system-name))))))
 
 (defun mail-setup (to subject in-reply-to cc replybuffer actions)
   (or mail-default-reply-to

-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be billed at $250/message.

