From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/24759 Path: main.gmane.org!not-for-mail From: Jan Vroonhof Newsgroups: gmane.emacs.gnus.general Subject: The "true" format of .mailrc Date: 23 Aug 1999 19:12:04 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035162271 10508 80.91.224.250 (21 Oct 2002 01:04:31 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:04:31 +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 NAA03190 for ; Mon, 23 Aug 1999 13:13:30 -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.3/8.9.3) with ESMTP id MAB26495; Mon, 23 Aug 1999 12:12:50 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 23 Aug 1999 12:13:27 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id MAA15603 for ; Mon, 23 Aug 1999 12:13:13 -0500 (CDT) Original-Received: from frege.math.ethz.ch (daemon@frege-d-math-north-g-west.math.ethz.ch [129.132.145.3]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA03139 for ; Mon, 23 Aug 1999 13:12:10 -0400 (EDT) Original-Received: (from daemon@localhost) by frege.math.ethz.ch (8.9.1/8.9.1) id TAA11721 for ; Mon, 23 Aug 1999 19:12:09 +0200 (MET DST) Original-Received: from bolzano(129.132.146.140) via SMTP by frege, id smtpdAAAa002r7; Mon Aug 23 19:12:07 1999 Original-Received: (vroonhof@localhost) by bolzano (SMI-8.6/D-MATH-client) id TAA05880; Mon, 23 Aug 1999 19:12:06 +0200 Original-To: ding@gnus.org Original-Lines: 30 User-Agent: Gnus/5.070083 (Pterodactyl Gnus v0.83) XEmacs/21.1 (Acadia) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:24759 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:24759 mail-abbrevs.el has this end) (while start ;; If we're reading from the mailrc file, then addresses are delimited ;; by spaces, and addresses with embedded spaces must be surrounded by ;; single or double-quotes. Otherwise, addresses are separated by ;; commas. (if from-mailrc-file (cond ((eq ?\" (aref definition start)) (setq start (1+ start) end (string-match "\"[ \t,]*" definition start))) ((eq ?\' (aref definition start)) However my other MUA (mutt) disagrees. It always wants comments in its alias file and generates entries like alias joe Joe User mail-abbrevs.el turns this into three aliases: Joe, User, . Unfortunately mutt also doesn't remove the quotes from alias joe "Joe User " A quick glance at other MUA's show that they _all_ want commas Jan