From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/5742 Path: main.gmane.org!not-for-mail From: Jack Vinson Newsgroups: gmane.emacs.gnus.general Subject: Message.el and bbdb Date: 27 Mar 1996 15:07:10 -0500 Sender: jvinson@cheux.ecs.umass.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035146303 1259 80.91.224.250 (20 Oct 2002 20:38:23 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:38:23 +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.3/8.6.9) with SMTP id NAA00979 for ; Wed, 27 Mar 1996 13:11:53 -0800 Original-Received: from cheux.ecs.umass.edu (cheux.ecs.umass.edu [128.119.82.11]) by ifi.uio.no with SMTP (8.6.11/ifi2.4) id for ; Wed, 27 Mar 1996 21:08:22 +0100 Original-Received: by cheux.ecs.umass.edu (5.65/DEC-Ultrix/4.3) id AA21422; Wed, 27 Mar 1996 15:07:11 -0500 Original-To: "(ding) Gnus mailing list" Original-Lines: 40 Xref: main.gmane.org gmane.emacs.gnus.general:5742 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:5742 Things are not perfect with the new Message mode and bbdb. I think I've gotten most problems worked out, but not all. #1. gnus-bbdb.el needs to be modified to use the new message-make-domain function instead of the old gnus-inews-domain-name. The patch is below and is a change in only one line. #2. People who use the mail-abbrevs packaged included with bbdb need to make more changes. Basically, follow the directions in mail-abbrevs for installing the code and just make the modifications to message.el instead of sendmail.el. -- Jack Vinson Off www.cern.ch... jvinson@cheux.ecs.umass.edu Through gopher.umn.edu Around ftp.indiana.edu Sunderland, MA Nothin' but 'Net - Pete Bretz diff -c gnus-bbdb.el~ gnus-bbdb.el *** gnus-bbdb.el~ Thu Aug 31 15:49:16 1995 --- gnus-bbdb.el Wed Mar 27 13:48:54 1996 *************** *** 245,251 **** (concat "^" (user-login-name) "$\\|^" (user-login-name) "@\\([-a-z0-9]+\\.\\)*" (or gnus-local-domain ! (gnus-inews-domain-name gnus-use-generic-from) (system-name) "smeghead\\.baka\\.org") "$") "This regular expression should match your address as found in the From header of your mail. You should make sure gnus-local-domain or --- 245,251 ---- (concat "^" (user-login-name) "$\\|^" (user-login-name) "@\\([-a-z0-9]+\\.\\)*" (or gnus-local-domain ! (message-make-domain) (system-name) "smeghead\\.baka\\.org") "$") "This regular expression should match your address as found in the From header of your mail. You should make sure gnus-local-domain or