--- message.el Sun Apr 21 10:00:46 2002 +++ /home/jbarilla/dl/gnus-cvs/gnus/lisp/message.el Thu Apr 18 15:01:10 2002 @@ -265,26 +265,6 @@ :group 'message-mail :type 'boolean) -(defcustom message-use-dsn-failure nil - "If this variable is non-nil, ask the MTA for notification by mail - of failed delivery. Note that only some MTAs (namely recent versions - of Sendmail) support Delivery Status Notification." - :group 'message-sending - :type 'boolean) - -(defcustom message-use-dsn-delay nil - "If this variable is non-nil, ask the sendmail for notification by mail of - delayed delivery." - :group 'message-sending - :type 'boolean) - -(defcustom message-use-dsn-success nil - "If this variable is non-nil, ask sendmail for notification by mail - of successful delivery." - :group 'message-sending - :type 'boolean) - - (defcustom message-generate-new-buffers 'unique "*Non-nil means create a new message buffer whenever `message-setup' is called. If this is a function, call that function with three parameters: The type, @@ -3023,19 +3003,6 @@ ;; we'll let users override this. (if (null message-sendmail-f-is-evil) (list "-f" (message-make-address))) - ;; Insert DSN-related command line arguments - (if (or message-use-dsn-failure - message-use-dsn-delay - message-use-dsn-success) - (list - (concat "-N" (if message-use-dsn-failure "failure") - (if (and message-use-dsn-failure - message-use-dsn-delay ) ",") - (if message-use-dsn-delay "delay") - (if (and message-use-dsn-success - message-use-dsn-delay ) ",") - (if message-use-dsn-success "success") - ))) ;; These mean "report errors by mail" ;; and "deliver in background". (if (null message-interactive) '("-oem" "-odb"))