From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/5897 Path: main.gmane.org!not-for-mail From: labrown@dg-rtp.dg.com (Lance A. Brown) Newsgroups: gmane.emacs.gnus.general Subject: Message.el questions Date: Thu, 11 Apr 1996 15:29:13 -0400 Message-ID: <15693.829250953@dg-rtp.dg.com> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035146434 1722 80.91.224.250 (20 Oct 2002 20:40:34 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:40:34 +0000 (UTC) Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.5/8.6.9) with SMTP id NAA23260 for ; Thu, 11 Apr 1996 13:09:53 -0700 Original-Received: from dg-rtp.dg.com (dg-rtp.rtp.dg.com [128.222.1.2]) by ifi.uio.no with SMTP (8.6.11/ifi2.4) id for ; Thu, 11 Apr 1996 21:29:52 +0200 Original-Received: from remus-alt.rtp.dg.com by dg-rtp.dg.com (5.4R3.10/dg-rtp-v02) id AA06688; Thu, 11 Apr 1996 15:29:15 -0400 Original-Received: from localhost by remus.rtp.dg.com (8.6.10/200.12.1.1) id PAA15695; Thu, 11 Apr 1996 15:29:14 -0400 Original-To: Ding List Xref: main.gmane.org gmane.emacs.gnus.general:5897 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:5897 Hi, I'm in the process of upgrading to sgnus 0.69 and re-writing my gnus rc file to go with it. I've come across a couple irritations in message.el. 1. I want to specify my real name instead of having message.el pull it out of the system. 2. message-make-fqdm looks like: ... ;; We try `user-mail-address' as a backup. ((string-match "@\\([^\\s-]+\\)\\(\\'\\|\\W\\)" user-mail-address) (match-string 1 user-mail-address)) ... My canonical email address is labrown@dg-rtp.dg.com, resulting in message-make-fqdm returning 'dg' as my fqdm. :-( do we really need to not include dashes in the matched portion of the domain name? I've removed it. --[Lance]