From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 22159 invoked from network); 12 Mar 2021 19:08:40 -0000 Received: from mx1.math.uh.edu (129.7.128.32) by inbox.vuxu.org with ESMTPUTF8; 12 Mar 2021 19:08:40 -0000 Received: from lists1.math.uh.edu ([129.7.128.208]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1lKn9K-00G20O-6g for ml@inbox.vuxu.org; Fri, 12 Mar 2021 13:08:38 -0600 Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.94) (envelope-from ) id 1lKn9J-000enP-K1 for ml@inbox.vuxu.org; Fri, 12 Mar 2021 13:08:37 -0600 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1lKn9I-000enJ-HK for ding@lists.math.uh.edu; Fri, 12 Mar 2021 13:08:36 -0600 Received: from quimby.gnus.org ([95.216.78.240]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1lKn9G-00G209-Tw for ding@lists.math.uh.edu; Fri, 12 Mar 2021 13:08:36 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:To:From:Sender:Reply-To:Cc:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=tWQXTpNf2rArrLqlFPbSDHo0eofm6HJQ9yJZub3vMn0=; b=q2p7mct9GIsnS01lfR+fk9Ze+J +8FT/fdS3Y7yZWaZl4D3PpVaecDW3qrb4mLWaDECQ40XVQGHwFaZS2Efr3W7Ri9vFaXXtaFfjGNq9 g3NwJsVgAD4jw21tsuSPILNWaaYIOKEeVA0Ds6hoaRVC1KtqnEFvsVFzWyyBA9+Xg0Y8=; Received: from ericabrahamsen.net ([52.70.2.18] helo=mail.ericabrahamsen.net) by quimby.gnus.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lKn97-0000Fm-7V for ding@gnus.org; Fri, 12 Mar 2021 20:08:30 +0100 Received: from localhost (c-73-254-86-141.hsd1.wa.comcast.net [73.254.86.141]) (Authenticated sender: eric@ericabrahamsen.net) by mail.ericabrahamsen.net (Postfix) with ESMTPSA id E008AFA160 for ; Fri, 12 Mar 2021 19:08:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ericabrahamsen.net; s=mail; t=1615576102; bh=tWQXTpNf2rArrLqlFPbSDHo0eofm6HJQ9yJZub3vMn0=; h=From:To:Subject:References:Date:In-Reply-To:From; b=ZXfnW3vmh8+OEoev7Kne4n3U8rq16v7Swd565a9awc99ekHqQ+yfkKDzj7HcPqQdi WVwpIJVDG4gT3COqlGRVGkQ8JMraLbggIfiEe3a0y4lwpP/+0Pd/EGCeh5CycT8EPb VIF2bqVoPeEECEi+2zSrrFKfZr/ZgkbBJ5k8IQh4= From: Eric Abrahamsen To: ding@gnus.org Subject: Re: how to extract the content of a cc field References: <87v99wfbmq.fsf@mat.ucm.es> Date: Fri, 12 Mar 2021 11:08:20 -0800 In-Reply-To: <87v99wfbmq.fsf@mat.ucm.es> (Uwe Brauer's message of "Fri, 12 Mar 2021 19:52:13 +0100") Message-ID: <87zgz8tckb.fsf@ericabrahamsen.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain List-ID: Precedence: bulk Uwe Brauer writes: > Hi > > I know that 'mail-header-from extract information from the from field, > but is there something similar for the CC field. I cannot not find > anything similar. In general you can use `gnus-fetch-original-field' to get any header you want, specified as a string. So; (gnus-fetch-original-field "cc") Looks like it's case-insensitive...