2001-06-15 19:00:00 ShengHuo ZHU <zsh@cs.rochester.edu>
authorShengHuo ZHU <zsh@cs.rochester.edu>
Sat, 16 Jun 2001 02:25:46 +0000 (02:25 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Sat, 16 Jun 2001 02:25:46 +0000 (02:25 +0000)
* message.el (message-send-mail-with-qmail): wrong exit status is
100 not 1. Reported by Paul Jarc <prj@po.cwru.edu>.

lisp/ChangeLog
lisp/message.el

index 76dd831..b1d242d 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-15 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * message.el (message-send-mail-with-qmail): wrong exit status is
+       100 not 1. Reported by Paul Jarc <prj@po.cwru.edu>.
+
 2001-06-15 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * gnus-art.el (article-strip-multiple-blank-lines): Use
index c7c1a80..b07fc63 100644 (file)
@@ -2640,7 +2640,7 @@ to find out how to use this."
     ;; qmail-inject doesn't say anything on it's stdout/stderr,
     ;; we have to look at the retval instead
     (0 nil)
-    (1   (error "qmail-inject reported permanent failure"))
+    (100 (error "qmail-inject reported permanent failure"))
     (111 (error "qmail-inject reported transient failure"))
     ;; should never happen
     (t   (error "qmail-inject reported unknown failure"))))