From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/22479 Path: main.gmane.org!not-for-mail From: Lars Magne Ingebrigtsen Newsgroups: gmane.emacs.gnus.general Subject: Re: comments on pgnus-v0.80 Date: 17 Apr 1999 09:19:32 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035160391 29501 80.91.224.250 (21 Oct 2002 00:33:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:33:11 +0000 (UTC) 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 DAA24860 for ; Sat, 17 Apr 1999 03:39:55 -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 CAB10805; Sat, 17 Apr 1999 02:38:52 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 17 Apr 1999 02:39:18 -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 CAA02838 for ; Sat, 17 Apr 1999 02:38:53 -0500 (CDT) Original-Received: from quimbies.gnus.org (larsi@ppp063.uio.no [129.240.240.68]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id DAA24823 for ; Sat, 17 Apr 1999 03:38:45 -0400 (EDT) Original-Received: (from larsi@localhost) by quimbies.gnus.org (8.8.7/8.8.7) id JAA13811; Sat, 17 Apr 1999 09:38:00 +0200 Mail-Copies-To: never X-Now-Reading: Lois McMaster Bujold's _The Vor Game_ X-Now-Playing: Stereolab's _Switched On_: "The Way Will Be Opened" Original-To: ding@gnus.org In-Reply-To: SL Baur's message of "08 Apr 1999 03:56:59 -0700" User-Agent: Gnus/5.070082 (Pterodactyl Gnus v0.82) XEmacs/21.2(beta3) (Aglaia) X-Face: &w!^oO~dS|}-P0~ge{$c!h\ writes: > I don't think so. I'm saying that attaching mail messages shouldn't > be so difficult. The way I used to this was to type C-c C-x C-t > message/rfc822 and then include the message with C-x i. Yes. There should be oodles of commands for inserting different parts. The template command looks like: (defun mml-attach-file (file &optional type description) "Attach a file to the outgoing MIME message. The file is not inserted or encoded until you send the message with `\\[message-send-and-exit]' or `\\[message-send]'. FILE is the name of the file to attach. TYPE is its content-type, a string of the form \"type/subtype\". DESCRIPTION is a one-line description of the attachment." (interactive (let* ((file (mml-minibuffer-read-file "Attach file: ")) (type (mml-minibuffer-read-type file)) (description (mml-minibuffer-read-description))) (list file type description))) (mml-insert-tag 'part 'type type 'filename file 'disposition "attachment" 'description description)) `mml-attach-message' and other commands should be written. Anyone wants to mail me a patch? -- (domestic pets only, the antidote for overdose, milk.) larsi@gnus.org * Lars Magne Ingebrigtsen