From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/28810 Path: main.gmane.org!not-for-mail From: Florian Weimer Newsgroups: gmane.emacs.gnus.general Subject: Re: MML, message-send-hook and automatically GnuPG-signing messages. Date: 18 Jan 2000 06:26:22 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: <87aem49cht.fsf@deneb.cygnus.argh.org> References: <87d7r25t6t.fsf@deneb.cygnus.argh.org> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165590 31733 80.91.224.250 (21 Oct 2002 01:59:50 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:59:50 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by mailhost.sclp.com (Postfix) with ESMTP id 3A95FD051E for ; Tue, 18 Jan 2000 00:41:09 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id XAB10053; Mon, 17 Jan 2000 23:40:52 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 17 Jan 2000 23:40:22 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id XAA10435 for ; Mon, 17 Jan 2000 23:40:11 -0600 (CST) Original-Received: from mail.cid.net (cephyr.cid.net [212.172.21.2]) by mailhost.sclp.com (Postfix) with ESMTP id 1EBC2D051E for ; Tue, 18 Jan 2000 00:40:02 -0500 (EST) Original-Received: from uucp by mail.cid.net (Exim 3.11) with local-bsmtp id 12ARMv-00080f-01; Tue, 18 Jan 2000 06:39:53 +0100 Original-Received: from deneb.cygnus.argh.org ([192.168.1.2] ident=exim) by cygnus.argh.org with esmtp (Exim 3.12 #1) id 12ARKR-00005U-00 for ding@gnus.org; Tue, 18 Jan 2000 06:37:19 +0100 Original-Received: from fw by deneb.cygnus.argh.org with local (Exim 3.12 #1) id 12AR9q-00028G-00 for ding@gnus.org; Tue, 18 Jan 2000 06:26:22 +0100 Original-To: ding@gnus.org In-Reply-To: Jonas Steverud's message of "17 Jan 2000 17:41:23 +0100" Original-Lines: 30 User-Agent: Gnus/5.0804 (Gnus v5.8.4) Emacs/20.4 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:28810 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:28810 Jonas Steverud writes: > Since I do not use MML myself (I trust Gnus on this) I really don't > see how I am supposed to use them. My manuals contained nothing about > mml-generate-multipart-alist. Gnus 5.8.3. > > An example would be nice. Do you need an example for `mml-generate-multipart-alist'? This was contained in my previous message. The following MML code illustrates how to create such parts when composing a message: <#multipart type=signed> This is a signed multipart. <#part type="text/plain" filename="~/file2" disposition=attachment description="signed attachment"> <#/part> <#multipart type=encrypted> This is an encrypted multipart. <#part type="text/plain" filename="~/file3" disposition=attachment description="encrypted attachment"> <#/part> <#multipart type=signed> This is a signed part in an encrypted part. <#/multipart> <#/multipart> <#/multipart>