From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.help Subject: Re: user-agent is missing in sent email headers Date: Thu, 15 Dec 2022 09:07:40 -0800 Message-ID: <87a63oh9yb.fsf@ericabrahamsen.net> References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="21190"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: help-gnu-emacs@gnu.org To: jindam.vani@disroot.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Thu Dec 15 18:08:29 2022 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1p5rie-0005FF-NY for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 15 Dec 2022 18:08:28 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1p5ri8-0000Hn-Rt; Thu, 15 Dec 2022 12:07:56 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p5ri7-0000HN-Ir for help-gnu-emacs@gnu.org; Thu, 15 Dec 2022 12:07:55 -0500 Original-Received: from mail.ericabrahamsen.net ([52.70.2.18]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p5ri5-0006ju-Qk for help-gnu-emacs@gnu.org; Thu, 15 Dec 2022 12:07:55 -0500 Original-Received: from localhost (c-71-197-232-41.hsd1.wa.comcast.net [71.197.232.41]) (Authenticated sender: eric@ericabrahamsen.net) by mail.ericabrahamsen.net (Postfix) with ESMTPSA id 0541EFA011; Thu, 15 Dec 2022 17:07:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ericabrahamsen.net; s=mail; t=1671124062; bh=HY8djUpL+vM6vnHFl6axjmEoO+pcBALeruQGBBwD2qM=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=ECfaxia907aU3dMJMtWhxPXyFn2mNh9Ah4GtGKdX95D2gxWT3KASHQxcD0Rfwj5zI sDHJ8G9EiZaDE5NMsCH7naauXlxOELMJYcuQSngidQcNaUIk0Na1t7eaf0xaUr5fC8 NcRJecrbdkcNNwxZKl7ElDb1EIHQUZQwdSEnEy6M= In-Reply-To: (jindam vani's message of "Thu, 15 Dec 2022 14:42:13 +0000") Received-SPF: pass client-ip=52.70.2.18; envelope-from=eric@ericabrahamsen.net; helo=mail.ericabrahamsen.net X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:141774 Archived-At: jindam.vani@disroot.org writes: > please excuse, i am posting here suggested by akib > on mastadon.[1] i am running emacs on debian > bullseye on userland.[2] when i send mail using > gnus and the "User-Agent: Gnus/5.13 (Gnus v5.13) > Emacs/27.1 (gnu/linux)" is not added in sent > email headers. > > when i click t in nnfolder+archive:sent.2022-12, > it shows "User-Agent: Gnus/5.13 (Gnus v5.13) > Emacs/27.1 (gnu/linux)", before it was showing > only from, subject, to, date. > > conversation between akib and me on mastodon.[2] > what am i doing wrong? You're not doing anything wrong, Gnus doesn't display all headers by default; what is shown is determined by the value of `gnus-visible-headers'. The "t" key displays all headers, which is why you see it there. If you want to always see it, you can do something like: (setq gnus-visible-headers (concat "^User-Agent:\\|" gnus-visible-headers))