From unknown Sun Jul 27 06:02:09 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61837: 29.0.50; [PATCH] Document Gnus backend variable `nnimap-user' Resent-From: Arash Esbati Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 27 Feb 2023 09:24:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 61837 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 61837@debbugs.gnu.org X-Debbugs-Original-To: emacs-bugs Received: via spool by submit@debbugs.gnu.org id=B.167748982921737 (code B ref -1); Mon, 27 Feb 2023 09:24:02 +0000 Received: (at submit) by debbugs.gnu.org; 27 Feb 2023 09:23:49 +0000 Received: from localhost ([127.0.0.1]:45920 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWZjZ-0005eX-2K for submit@debbugs.gnu.org; Mon, 27 Feb 2023 04:23:49 -0500 Received: from lists.gnu.org ([209.51.188.17]:56666) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWZjW-0005eO-5W for submit@debbugs.gnu.org; Mon, 27 Feb 2023 04:23:48 -0500 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 1pWZjM-0008AG-TU for bug-gnu-emacs@gnu.org; Mon, 27 Feb 2023 04:23:38 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWZjM-0005au-0M for bug-gnu-emacs@gnu.org; Mon, 27 Feb 2023 04:23:36 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=TE5kbqXqdLw9daaG2VWtRRj2NOPlVK7dA/WnJuLX2DQ=; b=FxTelW3hgeuh42 GVC0WzbTrTHuIXeV4rMlkNkPgkwbp8dr7AKKKJQ81SQipyL1/iRUHZAud7r1NCwAXGcu5sUzpEyPk pT2T39KC5Yc4ZxHwn3tkat9Zi3pMO+/9FhM3yZJ87TcYLG6Km+i+iIkEqMuGGw8xzfjQBSJiB5rLn GU/ZPKajlMH76j8VmHJrHT67FkzNxUnacj4y/Y1ZBV85/QDROA/sce+xacwgTSVKxbP6XrPQ436TG TqhJbE4nG50az+YIqg8FXTY7t9J6HokFSM7hBxsF92yuQY1rcVQuaNQaptQDhC1UE3q79NYPxqiVa MTVhFQwqNUMm76ViWgMA==; Received: from p5b326467.dip0.t-ipconnect.de ([91.50.100.103] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWZjL-0002yV-IS for bug-gnu-emacs@gnu.org; Mon, 27 Feb 2023 04:23:35 -0500 From: Arash Esbati Date: Mon, 27 Feb 2023 10:23:08 +0100 Message-ID: <868rgj8nsz.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain Hi all, please find attached a small change to gnus.texi. This change is against the release branch. Best, Arash --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Add-nnimap-user-to-Gnus-manual.patch >From d309a7be26fa292d9918f0ada660821ba4181c75 Mon Sep 17 00:00:00 2001 From: Arash Esbati Date: Mon, 27 Feb 2023 10:10:13 +0100 Subject: [PATCH] ; Add `nnimap-user' to Gnus manual * doc/misc/gnus.texi (Customizing the IMAP Connection): Document backend variable `nnimap-user' which was introduced with commit 5e68f8614f in 2011. --- doc/misc/gnus.texi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index d513726979b..7d50fdfb4af 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi @@ -14512,6 +14512,12 @@ Customizing the IMAP Connection @item nnimap-address The address of the server, like @samp{imap.gmail.com}. +@item nnimap-user +Username to use for authentication to the @acronym{IMAP} server. This +corresponds to the value of the @samp{login} token in your +@file{~/.authinfo} file. Set this variable if you want to access +multiple accounts from the same @acronym{IMAP} server. + @item nnimap-server-port If the server uses a non-standard port, that can be specified here. A typical port would be @code{"imap"} or @code{"imaps"}. -- 2.39.2 --=-=-=-- From unknown Sun Jul 27 06:02:09 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61837: 29.0.50; [PATCH] Document Gnus backend variable `nnimap-user' Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 27 Feb 2023 11:55:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61837 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Arash Esbati Cc: 61837@debbugs.gnu.org Received: via spool by 61837-submit@debbugs.gnu.org id=B61837.167749884215343 (code B ref 61837); Mon, 27 Feb 2023 11:55:01 +0000 Received: (at 61837) by debbugs.gnu.org; 27 Feb 2023 11:54:02 +0000 Received: from localhost ([127.0.0.1]:46276 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWc4v-0003zF-LT for submit@debbugs.gnu.org; Mon, 27 Feb 2023 06:54:02 -0500 Received: from eggs.gnu.org ([209.51.188.92]:39874) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWc4u-0003yu-NT for 61837@debbugs.gnu.org; Mon, 27 Feb 2023 06:54:01 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWc4p-0000PZ-CH for 61837@debbugs.gnu.org; Mon, 27 Feb 2023 06:53:55 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=Wc3xewp/kJoMEauDTNJU5jBwes8AIzNeBQv7B1PO7z4=; b=LxqaqaN5Yliw gd8woqj26QBOK+fNZnSjXbxygQL0fbktzl13cEXWvTc2Fox03vgxpsU/4WIsjWsO7n6fTw3HJ6AFp 1TIe8kke4+cs1A5ZPBO6E7RVPauieKOA/z51b2FpKS0xi2igZPr6hKbQCKF7mDYNbIR4HxOIW6+kf cWsutHx5jygp5UlVBblxKYlpWPc8nBeoPKsfiEQjfKdbHMaQS1dZ6vcDlxoNK301VR9BPAQ9AYHrB In78xfxu00AfoyC/v1GHzNMKXZYc08Ie4tMGp5cbkHafMFzvjCrliID90hJ474zlwhwHKG8F/Y5vC y9vYZB7xI0BHXEhjREenSA==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWc4o-0006tl-NR; Mon, 27 Feb 2023 06:53:55 -0500 Date: Mon, 27 Feb 2023 13:54:02 +0200 Message-Id: <83356riasl.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <868rgj8nsz.fsf@gnu.org> (message from Arash Esbati on Mon, 27 Feb 2023 10:23:08 +0100) References: <868rgj8nsz.fsf@gnu.org> X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Arash Esbati > Date: Mon, 27 Feb 2023 10:23:08 +0100 > > please find attached a small change to gnus.texi. This change is > against the release branch. > > > +@item nnimap-user > +Username to use for authentication to the @acronym{IMAP} server. This > +corresponds to the value of the @samp{login} token in your > +@file{~/.authinfo} file. Set this variable if you want to access > +multiple accounts from the same @acronym{IMAP} server. > + > @item nnimap-server-port > If the server uses a non-standard port, that can be specified here. A > typical port would be @code{"imap"} or @code{"imaps"}. Thanks, but please add an index entry for this variable. (Yes, I know the other variables there aren't indexed, either, but Rome wasn't built in one day. Bonus points for adding index entries for the other variables as well.) From unknown Sun Jul 27 06:02:09 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61837: 29.0.50; [PATCH] Document Gnus backend variable `nnimap-user' Resent-From: Arash Esbati Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 27 Feb 2023 12:18:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61837 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 61837@debbugs.gnu.org Received: via spool by 61837-submit@debbugs.gnu.org id=B61837.167750025517903 (code B ref 61837); Mon, 27 Feb 2023 12:18:02 +0000 Received: (at 61837) by debbugs.gnu.org; 27 Feb 2023 12:17:35 +0000 Received: from localhost ([127.0.0.1]:46301 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWcRi-0004eh-M6 for submit@debbugs.gnu.org; Mon, 27 Feb 2023 07:17:35 -0500 Received: from eggs.gnu.org ([209.51.188.92]:40214) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWcRc-0004eN-OI for 61837@debbugs.gnu.org; Mon, 27 Feb 2023 07:17:32 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWcRX-0005TR-AZ for 61837@debbugs.gnu.org; Mon, 27 Feb 2023 07:17:23 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=bXxTbJBEuOXxRz863zgi1E6UOOmg8sgn6053cJKJDII=; b=qdCEo/JDHn0xfMeVBFl7 kdBv5uHDula8QJV0fKbLzkUCQ2h3ISDd0pZUHd/7w+nVe8jC3OiPrp+8LQCIjBUKfbCxHPmKYJhd5 YcY34fwwjNPfZWeirIzBRBB43tFLB8fvnF2VB3bG6GxURrn2mzRHn91k22XYCu7P9wfB6rrzEgx71 yxbOm6xpxDeetRIegjaDF7J2xo2FD2YH7yEh9FkKgSdPbS54R900lu56VxRu5kTGoJapF5sNCXVCd JEn1sz7CfTunK8wRG1DHmD4jcW4DNGez4a99o91kH3o1d3FBjfl87WAykIM6uR/lHMdiAE1LAEsl7 d/VGHrAideL8oQ==; Received: from p5b326467.dip0.t-ipconnect.de ([91.50.100.103] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWcRW-0004rp-Pb; Mon, 27 Feb 2023 07:17:23 -0500 From: Arash Esbati In-Reply-To: <83356riasl.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 27 Feb 2023 13:54:02 +0200") References: <868rgj8nsz.fsf@gnu.org> <83356riasl.fsf@gnu.org> Date: Mon, 27 Feb 2023 13:16:30 +0100 Message-ID: <864jr78fs1.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain Eli Zaretskii writes: > Thanks, but please add an index entry for this variable. (Yes, I know > the other variables there aren't indexed, either, but Rome wasn't > built in one day. Bonus points for adding index entries for the other > variables as well.) Next try attached seeking for bonus points as well. Best, Arash --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Add-nnimap-user-to-Gnus-manual.patch >From ca13dfa26bc6a7f23a1872790a3a9a61af0e4cb9 Mon Sep 17 00:00:00 2001 From: Arash Esbati Date: Mon, 27 Feb 2023 10:10:13 +0100 Subject: [PATCH] ; Add `nnimap-user' to Gnus manual * doc/misc/gnus.texi (Customizing the IMAP Connection): Document backend variable `nnimap-user' which was introduced with commit 5e68f8614f in 2011. Add index entries for all backend variables. (bug#61837) --- doc/misc/gnus.texi | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index d513726979b..cf6820948ad 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi @@ -14510,13 +14510,23 @@ Customizing the IMAP Connection @table @code @item nnimap-address +@vindex nnimap-address The address of the server, like @samp{imap.gmail.com}. +@item nnimap-user +@vindex nnimap-user +Username to use for authentication to the @acronym{IMAP} server. This +corresponds to the value of the @samp{login} token in your +@file{~/.authinfo} file. Set this variable if you want to access +multiple accounts from the same @acronym{IMAP} server. + @item nnimap-server-port +@vindex nnimap-server-port If the server uses a non-standard port, that can be specified here. A typical port would be @code{"imap"} or @code{"imaps"}. @item nnimap-stream +@vindex nnimap-stream How @code{nnimap} should connect to the server. Possible values are: @table @code @@ -14547,6 +14557,7 @@ Customizing the IMAP Connection @end table @item nnimap-authenticator +@vindex nnimap-authenticator Some @acronym{IMAP} servers allow anonymous logins. In that case, this should be set to @code{anonymous}. If this variable isn't set, the normal login methods will be used. If you wish to specify a @@ -14556,6 +14567,7 @@ Customizing the IMAP Connection requires using the @file{oauth2.el} library.) @item nnimap-expunge +@vindex nnimap-expunge When to expunge deleted messages. If @code{never}, deleted articles are marked with the IMAP @code{\\Delete} flag but not automatically expunged. If @code{immediately}, deleted articles are immediately expunged @@ -14571,27 +14583,32 @@ Customizing the IMAP Connection (i.e., potentially not only the article that was just deleted). @item nnimap-streaming +@vindex nnimap-streaming Virtually all @acronym{IMAP} server support fast streaming of data. If you have problems connecting to the server, try setting this to @code{nil}. @item nnimap-fetch-partial-articles +@vindex nnimap-fetch-partial-articles If non-@code{nil}, fetch partial articles from the server. If set to a string, then it's interpreted as a regexp, and parts that have matching types will be fetched. For instance, @samp{"text/"} will fetch all textual parts, while leaving the rest on the server. @item nnimap-record-commands +@vindex nnimap-record-commands If non-@code{nil}, record all @acronym{IMAP} commands in the @samp{"*imap log*"} buffer. @item nnimap-use-namespaces +@vindex nnimap-use-namespaces If non-@code{nil}, omit the IMAP namespace prefix in nnimap group names. If your IMAP mailboxes are called something like @samp{INBOX} and @samp{INBOX.Lists.emacs}, but you'd like the nnimap group names to be @samp{INBOX} and @samp{Lists.emacs}, you should enable this option. @item nnimap-keepalive-intervals +@vindex nnimap-keepalive-intervals By default, nnimap will send occasional @samp{NOOP} (keepalive) commands to the server, to keep the connection alive. This option governs how often that happens. It is a cons of two integers, -- 2.39.2 --=-=-=-- From unknown Sun Jul 27 06:02:09 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Arash Esbati Subject: bug#61837: closed (Re: bug#61837: 29.0.50; [PATCH] Document Gnus backend variable `nnimap-user') Message-ID: References: <831qmbi8wt.fsf@gnu.org> <868rgj8nsz.fsf@gnu.org> X-Gnu-PR-Message: they-closed 61837 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: patch Reply-To: 61837@debbugs.gnu.org Date: Mon, 27 Feb 2023 12:35:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1677501302-28795-1" This is a multi-part message in MIME format... ------------=_1677501302-28795-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #61837: 29.0.50; [PATCH] Document Gnus backend variable `nnimap-user' which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 61837@debbugs.gnu.org. --=20 61837: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D61837 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1677501302-28795-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 61837-done) by debbugs.gnu.org; 27 Feb 2023 12:34:44 +0000 Received: from localhost ([127.0.0.1]:46315 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWciK-0007Tp-49 for submit@debbugs.gnu.org; Mon, 27 Feb 2023 07:34:44 -0500 Received: from eggs.gnu.org ([209.51.188.92]:57626) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWciH-0007Tb-1X for 61837-done@debbugs.gnu.org; Mon, 27 Feb 2023 07:34:42 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWciB-00005G-Ko for 61837-done@debbugs.gnu.org; Mon, 27 Feb 2023 07:34:35 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=V9ZsaG1kSCFn0yVPl+ZsqJKpmEm/n+syy6ppr26O6NY=; b=iLybvAOI32VD af+V4+yVfn+tm3LCSXxXxM86kXfsmXLaR64Cw3JKqE68F8aqrDQlb2ozXN8Ni9dlfchMj6cLjnQLZ iz9++5qPV+6NJgggtfKc8y+nH8AVtXdlzelCSpks/6rcnfBvRSlz2qz2nOHUOpqnCkYr5dl9XNwkl 3wox/m18Xw/o5KrQrE68p5TZ5R8I1nGFXX+8WwmceMHubn/u+YdS90cFQeIh3Ip/cFFiAmG5mHG6j a8jqHn2Vn7kEpztrtZCAIshd4iq/JkQcsW+GhGgJS3sdtk1YRTDQEzhh4U30LFEJx/2MeOEdyiJpd TxS67kb2G8tz+1Cm17ThJQ==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWciA-0005oN-V0; Mon, 27 Feb 2023 07:34:35 -0500 Date: Mon, 27 Feb 2023 14:34:42 +0200 Message-Id: <831qmbi8wt.fsf@gnu.org> From: Eli Zaretskii To: Arash Esbati In-Reply-To: <864jr78fs1.fsf@gnu.org> (message from Arash Esbati on Mon, 27 Feb 2023 13:16:30 +0100) Subject: Re: bug#61837: 29.0.50; [PATCH] Document Gnus backend variable `nnimap-user' References: <868rgj8nsz.fsf@gnu.org> <83356riasl.fsf@gnu.org> <864jr78fs1.fsf@gnu.org> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61837-done Cc: 61837-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Arash Esbati > Cc: 61837@debbugs.gnu.org > Date: Mon, 27 Feb 2023 13:16:30 +0100 > > Eli Zaretskii writes: > > > Thanks, but please add an index entry for this variable. (Yes, I know > > the other variables there aren't indexed, either, but Rome wasn't > > built in one day. Bonus points for adding index entries for the other > > variables as well.) > > Next try attached seeking for bonus points as well. You've got them! Thanks. (In the future, please remember to put index entries _before_ any @item. not after it, so that index search brings you to the @item. I fixed that for you this time.) ------------=_1677501302-28795-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 27 Feb 2023 09:23:49 +0000 Received: from localhost ([127.0.0.1]:45920 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWZjZ-0005eX-2K for submit@debbugs.gnu.org; Mon, 27 Feb 2023 04:23:49 -0500 Received: from lists.gnu.org ([209.51.188.17]:56666) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWZjW-0005eO-5W for submit@debbugs.gnu.org; Mon, 27 Feb 2023 04:23:48 -0500 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 1pWZjM-0008AG-TU for bug-gnu-emacs@gnu.org; Mon, 27 Feb 2023 04:23:38 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWZjM-0005au-0M for bug-gnu-emacs@gnu.org; Mon, 27 Feb 2023 04:23:36 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=TE5kbqXqdLw9daaG2VWtRRj2NOPlVK7dA/WnJuLX2DQ=; b=FxTelW3hgeuh42 GVC0WzbTrTHuIXeV4rMlkNkPgkwbp8dr7AKKKJQ81SQipyL1/iRUHZAud7r1NCwAXGcu5sUzpEyPk pT2T39KC5Yc4ZxHwn3tkat9Zi3pMO+/9FhM3yZJ87TcYLG6Km+i+iIkEqMuGGw8xzfjQBSJiB5rLn GU/ZPKajlMH76j8VmHJrHT67FkzNxUnacj4y/Y1ZBV85/QDROA/sce+xacwgTSVKxbP6XrPQ436TG TqhJbE4nG50az+YIqg8FXTY7t9J6HokFSM7hBxsF92yuQY1rcVQuaNQaptQDhC1UE3q79NYPxqiVa MTVhFQwqNUMm76ViWgMA==; Received: from p5b326467.dip0.t-ipconnect.de ([91.50.100.103] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWZjL-0002yV-IS for bug-gnu-emacs@gnu.org; Mon, 27 Feb 2023 04:23:35 -0500 From: Arash Esbati To: emacs-bugs Subject: 29.0.50; [PATCH] Document Gnus backend variable `nnimap-user' Date: Mon, 27 Feb 2023 10:23:08 +0100 Message-ID: <868rgj8nsz.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain Hi all, please find attached a small change to gnus.texi. This change is against the release branch. Best, Arash --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Add-nnimap-user-to-Gnus-manual.patch >From d309a7be26fa292d9918f0ada660821ba4181c75 Mon Sep 17 00:00:00 2001 From: Arash Esbati Date: Mon, 27 Feb 2023 10:10:13 +0100 Subject: [PATCH] ; Add `nnimap-user' to Gnus manual * doc/misc/gnus.texi (Customizing the IMAP Connection): Document backend variable `nnimap-user' which was introduced with commit 5e68f8614f in 2011. --- doc/misc/gnus.texi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index d513726979b..7d50fdfb4af 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi @@ -14512,6 +14512,12 @@ Customizing the IMAP Connection @item nnimap-address The address of the server, like @samp{imap.gmail.com}. +@item nnimap-user +Username to use for authentication to the @acronym{IMAP} server. This +corresponds to the value of the @samp{login} token in your +@file{~/.authinfo} file. Set this variable if you want to access +multiple accounts from the same @acronym{IMAP} server. + @item nnimap-server-port If the server uses a non-standard port, that can be specified here. A typical port would be @code{"imap"} or @code{"imaps"}. -- 2.39.2 --=-=-=-- ------------=_1677501302-28795-1-- From unknown Sun Jul 27 06:02:09 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61837: 29.0.50; [PATCH] Document Gnus backend variable `nnimap-user' Resent-From: Arash Esbati Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 27 Feb 2023 13:46:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61837 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 61837-done@debbugs.gnu.org Received: via spool by 61837-done@debbugs.gnu.org id=D61837.16775055434031 (code D ref 61837); Mon, 27 Feb 2023 13:46:02 +0000 Received: (at 61837-done) by debbugs.gnu.org; 27 Feb 2023 13:45:43 +0000 Received: from localhost ([127.0.0.1]:46393 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWdp0-00012x-S4 for submit@debbugs.gnu.org; Mon, 27 Feb 2023 08:45:43 -0500 Received: from eggs.gnu.org ([209.51.188.92]:51172) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWdox-00012d-Ox for 61837-done@debbugs.gnu.org; Mon, 27 Feb 2023 08:45:42 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWdos-0003Tt-Gg for 61837-done@debbugs.gnu.org; Mon, 27 Feb 2023 08:45:34 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=4wp52/VAYCVDptJBdws1GhS2TirYCyYz+UZhSzWq+FM=; b=jVS9/RBD2ag2rFObrumR mX7KelcwXMSRNnKLoo8boXsm+w6FaSLHulA1BZNZO2Rq9g/bLeeltibmwfXwSfznl6dEWSImucWu4 j7Jfb23xFuxcdtFySjBzhgj68NA4aAq70w2wu57+Mv8nv0TDeOOBfaWt+DoC9j1NZB8TTxRwOZEXb xe/iz5RijoTylQrom5iJs9I2t7RnOGQ56NwQZs4qTYgZhEmxui42or4hhL0nzEk54U6O3PvS7fnn3 /z55CZ8WgQQxzTIClwFZlBWonsyV8gxOhe2Dho4h2Z35bLXoXFQcc8E55INvfh75YZ4yoM2LWesiv RYESjrYMkn+sZw==; Received: from p5b326467.dip0.t-ipconnect.de ([91.50.100.103] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWdoZ-0003fs-HH; Mon, 27 Feb 2023 08:45:28 -0500 From: Arash Esbati In-Reply-To: <831qmbi8wt.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 27 Feb 2023 14:34:42 +0200") References: <868rgj8nsz.fsf@gnu.org> <83356riasl.fsf@gnu.org> <864jr78fs1.fsf@gnu.org> <831qmbi8wt.fsf@gnu.org> Date: Mon, 27 Feb 2023 14:44:52 +0100 Message-ID: <86sfer5ijv.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Eli Zaretskii writes: > (In the future, please remember to put index entries _before_ any > @item. not after it, so that index search brings you to the @item. I > fixed that for you this time.) Thanks for installing/fixing the patch and the hint. I looked at the previous @node News Spool in gnus.texi and took over how it was there: index entries come after the @item. But fixing gnus.texi in that respect is currently out of my scope. Best, Arash From unknown Sun Jul 27 06:02:09 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61837: 29.0.50; [PATCH] Document Gnus backend variable `nnimap-user' Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 27 Feb 2023 14:00:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61837 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Arash Esbati Cc: 61837-done@debbugs.gnu.org Received: via spool by 61837-done@debbugs.gnu.org id=D61837.16775064015713 (code D ref 61837); Mon, 27 Feb 2023 14:00:02 +0000 Received: (at 61837-done) by debbugs.gnu.org; 27 Feb 2023 14:00:01 +0000 Received: from localhost ([127.0.0.1]:46402 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWe2q-0001U5-Kr for submit@debbugs.gnu.org; Mon, 27 Feb 2023 09:00:00 -0500 Received: from eggs.gnu.org ([209.51.188.92]:55924) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWe2o-0001Tr-PF for 61837-done@debbugs.gnu.org; Mon, 27 Feb 2023 08:59:59 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWe2j-0006tu-G2 for 61837-done@debbugs.gnu.org; Mon, 27 Feb 2023 08:59:53 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=H+bvO0y4GapXvJZEQXKRUS7uz+wX70iXp/gd9EUbQBY=; b=SxCoN5XsQ0xm 0fVn69ChDDBIoibxv073L/YFpKed2DgptNa12goVkcLNgJiUexVnZoFvJZljTCFHi9PSMyrqn+Kui WW47DfqAIP6cGxylZmZajGSvuExGO6lprhYsEyMzS/XY9lkMkMro8JuLKlkdNV/aEuCSku88rs6YR n23ndzKsJtApKhUvRQnD2iDG0O6IhOqbYY4PLuAc78cSJeU9NJUn+1SlPhodAB2TAZOJuCC5RsCbW 19OufTApaGrfhVNiwSa5FV3uOyx2j7kgBDF1M3NqsEhl2FKJtta4hUMIL0qrkK6mf9/sGomM1Ggz9 0QrwDIulN/bY0KRN4DnQZg==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWe2i-0001ru-Fl; Mon, 27 Feb 2023 08:59:52 -0500 Date: Mon, 27 Feb 2023 16:00:01 +0200 Message-Id: <83y1ojgqe6.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <86sfer5ijv.fsf@gnu.org> (message from Arash Esbati on Mon, 27 Feb 2023 14:44:52 +0100) References: <868rgj8nsz.fsf@gnu.org> <83356riasl.fsf@gnu.org> <864jr78fs1.fsf@gnu.org> <831qmbi8wt.fsf@gnu.org> <86sfer5ijv.fsf@gnu.org> X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Arash Esbati > Cc: 61837-done@debbugs.gnu.org > Date: Mon, 27 Feb 2023 14:44:52 +0100 > > Eli Zaretskii writes: > > > (In the future, please remember to put index entries _before_ any > > @item. not after it, so that index search brings you to the @item. I > > fixed that for you this time.) > > Thanks for installing/fixing the patch and the hint. I looked at the > previous @node News Spool in gnus.texi and took over how it was there: > index entries come after the @item. But fixing gnus.texi in that > respect is currently out of my scope. Right, that's a large and boring job.