From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/22704 Path: main.gmane.org!not-for-mail From: wmperry@aventail.com (William M. Perry) Newsgroups: gmane.emacs.gnus.general Subject: Re: Writing enriched text Date: 21 Apr 1999 09:22:03 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: <86676q6ol0.fsf@kramer.bp.aventail.com> References: <8690bm6sxc.fsf@kramer.bp.aventail.com> Reply-To: wmperry@aventail.com NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035160576 30752 80.91.224.250 (21 Oct 2002 00:36:16 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:36:16 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id KAA08910 for ; Wed, 21 Apr 1999 10:24:52 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.1/8.9.1) with ESMTP id JAB09482; Wed, 21 Apr 1999 09:20:41 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 21 Apr 1999 09:21:14 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id JAA14806 for ; Wed, 21 Apr 1999 09:21:04 -0500 (CDT) Original-Received: from slow.bp.aventail.com (usrpri2-16.kiva.net [206.97.75.81]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id KAA08775 for ; Wed, 21 Apr 1999 10:20:48 -0400 (EDT) Original-Received: from kramer.aventail.com (kramer.bp.aventail.com [192.168.2.2]) by slow.bp.aventail.com (8.8.5/8.8.5) with ESMTP id JAA25890; Wed, 21 Apr 1999 09:20:15 -0700 Original-Received: (from wmperry@localhost) by kramer.aventail.com (8.8.7/8.8.7) id JAA00936; Wed, 21 Apr 1999 09:22:03 -0500 Original-To: lconrad@world.std.com X-Face: O~Rn;(l][/-o1sALg4A@xpE:9-"'IR[%;,,!m7 writes: > wmperry@aventail.com (William M. Perry) writes: > > > You would of course want this configurable, similar to how netscape lets > > you do it: > > > > 1. Always send only HTML email > > 2. Never send HTML email > > 3. Always send HTML with text/plain alternative > > 4. Ask the user > > But, unlike netscape, we would NOT make 3 the default. > > I assume we would also set up some configuration variable so that > users could vary this by group or to-address or whatever. Could be done via a posting-style type variable, or a group property. You could have something like (defcustom message-html-posting-style 'ask "*Controls how and when to post HTML email." :group 'message :type '(choice (const :tag "Ask when necessary" ask) (const :tag "Always send only HTML" html) (const :tag "Always send HTML and plain text" both) (const :tag "Never send HTML" never) (sexp :tag "Custom function" nil))) -Bill P.