From owner-freebsd-questions@FreeBSD.ORG Wed Dec 2 04:39:09 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2575B106566B for ; Wed, 2 Dec 2009 04:39:09 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from email1.allantgroup.com (email1.emsphone.com [199.67.51.115]) by mx1.freebsd.org (Postfix) with ESMTP id DBB008FC14 for ; Wed, 2 Dec 2009 04:39:08 +0000 (UTC) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by email1.allantgroup.com (8.14.0/8.14.0) with ESMTP id nB24d7Te089547 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 1 Dec 2009 22:39:07 -0600 (CST) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (smmsp@localhost [127.0.0.1]) by dan.emsphone.com (8.14.3/8.14.3) with ESMTP id nB24d7s8099361 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 1 Dec 2009 22:39:07 -0600 (CST) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.3/8.14.3/Submit) id nB24d6AI099353; Tue, 1 Dec 2009 22:39:06 -0600 (CST) (envelope-from dan) Date: Tue, 1 Dec 2009 22:39:03 -0600 From: Dan Nelson To: Gary Kline Message-ID: <20091202043903.GO89004@dan.emsphone.com> References: <20091201230157.GA99062@thought.org> <9176F7CB-372D-4881-AB8E-FE1803AA9A0A@mac.com> <20091202000313.GE99059@thought.org> <8441B02F-BA0B-4D64-A884-77E30DDB22F9@mac.com> <20091202005156.GF99059@thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20091202005156.GF99059@thought.org> X-OS: FreeBSD 7.2-STABLE User-Agent: Mutt/1.5.20 (2009-06-14) X-Virus-Scanned: ClamAV version 0.94.1, clamav-milter version 0.94.1 on email1.allantgroup.com X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (email1.allantgroup.com [199.67.51.78]); Tue, 01 Dec 2009 22:39:07 -0600 (CST) X-Scanned-By: MIMEDefang 2.45 Cc: FreeBSD Mailing List Subject: Re: How known? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2009 04:39:09 -0000 In the last episode (Dec 01), Gary Kline said: > On Tue, Dec 01, 2009 at 04:05:17PM -0800, Chuck Swiger wrote: > > On Dec 1, 2009, at 4:03 PM, Gary Kline wrote: > > >> Most mail user agents have an option to enable "read receipts"; they use (or abuse) the DSN or MDN capabilities of the recipient's MTA or MUA. They are not a reliable signal that a human has seen the mail, although they can be used to confirm it at least got to the recipient's mail server or were processed by their MUA. > > > > > > What are DSN and MDN, please? > > > > Delivery Status Notification, Message Disposition Notification > > > > Wow; amazing. i'Ve been checking thru /usr/local/etc/Muttrc > and found something interesting. This, circa lins #2900 ++: > > # Specifies how to sort messages in the index menu. Valid values > # are: > # > # date or date-sent > # date-received > # from > # mailbox-order (unsorted) > # score > # size > # subject > # threads > # to > > but nowhere to specify the date-received. Strange, yes? hm? 2nd line says "date-received". Or did you mean something else? > wait::: dsn > # set dsn_notify="" > # > # Name: dsn_notify > # Type: string > # Default: "" > # > > Be nice to suggest to the mutt folks to let this be turned on only for > certain email. I *have* tried to sub to the mutt mailinglist, but never > get any responce. AFAIK, there is no forum, so maybe it's time to roll my > own hack! Not even a bounce message back? That's odd. You can try posting to the list via the gmane interface, or join the #mutt irc channel on irc.freenode.net and see if anyone can help there. The mutt method for changing options based on specific criteria is called "hooks". In your case, you want to use a send hook like this: send-hook "." "set dsn_notify=none" send-hook "~t user@host.com" "set dsn_notify=failure,delay,success" Note that dsn is only delivery notification; it doesn't let you know that a message has been read. For that, you can try send-hook "." "unmy_hdr Disposition-Notification-To:" send-hook "~t user@host.com" "my_hdr Disposition-Notification-To: my@email.com" , but even if your recipient's mailer understands that header, most let the user turn it off if they want. -- Dan Nelson dnelson@allantgroup.com