From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/44946 Path: main.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: Who sets Sender:? Date: Sat, 25 May 2002 00:55:24 +0200 Organization: Denizens of Doom, Norway Chapter Sender: owner-ding@hpc.uh.edu Message-ID: <87wuttrw9v.fsf@doohan.bang.priv.no> References: <87bsbak1ws.fsf@nwalsh.com> <02May20.171937edt.119286@gateway.intersystems.com> <873cwld3aw.fsf@nwalsh.com> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1022280962 7247 127.0.0.1 (24 May 2002 22:56:02 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 24 May 2002 22:56:02 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17BNyc-0001sT-00 for ; Sat, 25 May 2002 00:56:02 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17BNyJ-0005Vb-00; Fri, 24 May 2002 17:55:43 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 24 May 2002 17:55:58 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id RAA01524 for ; Fri, 24 May 2002 17:55:46 -0500 (CDT) Original-Received: (qmail 8640 invoked by alias); 24 May 2002 22:55:26 -0000 Original-Received: (qmail 8635 invoked from network); 24 May 2002 22:55:26 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by gnus.org with SMTP; 24 May 2002 22:55:26 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 17BODT-0006kd-00 for ; Sat, 25 May 2002 01:11:23 +0200 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 32 Original-NNTP-Posting-Host: b48sfn.cm.chello.no Original-X-Trace: quimby.gnus.org 1022281883 24231 213.46.211.96 (24 May 2002 23:11:23 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 24 May 2002 23:11:23 GMT User-Agent: Gnus/5.090006 (Oort Gnus v0.06) XEmacs/21.4 (Common Lisp, i386-debian-linux) Cancel-Lock: sha1:2IlhWqnC/zCCSm5cw8Dsxoe4d/0= Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:44946 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:44946 >>>>> Norman Walsh : > Ok, fair enough. So this presents an interesting conundrum. In my > case, the "local machine" has no name. I'm on a laptop behind a > firewall attached to a cable provider that generates a "random" IP > address via DHCP. Been there. > So, on my local subnet (192.168.1.*), "mercury" is this laptop. But > there's no global name for it. Been there too, when my laptop was at home. > I can't claim that it's 'mercury.nwalsh.com' because no such machine > exists in DNS. What I do is to make sure Gnus doesn't create a Sender: header by having ;; Avoid setting the sender header, and by this use the From: address ;; as the envelope address (add-to-list 'message-syntax-checks '(sender . disabled)) in my ~/.gnus.el. Then I make sure exim sets the From line of the envelope to be the same as the From: field, by setting the return_path of outgoing SMTP messages in /etc/exim/exim.conf: remote_smtp: driver = smtp return_path = ${local_part:$reply_address}@${domain:$reply_address} (this is on debian testing).