From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.help Subject: Re: wrong argument in gnus.el Date: Sun, 05 Jan 2025 16:20:32 +0100 Message-ID: References: <516f78b1-3ba6-465c-8562-ba420b01d2aa@posteo.at> <87seq19bk6.fsf@gmail.com> <7865f625-edbf-49fe-a397-d472d8758068@posteo.at> <87h66ea5u4.fsf@gmail.com> <33b8c00b-a824-455c-8d2d-92ecd0186796@posteo.de> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="23872"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: help-gnu-emacs@gnu.org, gfp To: Gottfried Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Sun Jan 05 16:21:14 2025 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 1tUSRF-00062h-Vv for geh-help-gnu-emacs@m.gmane-mx.org; Sun, 05 Jan 2025 16:21:14 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1tUSQj-00027J-W0; Sun, 05 Jan 2025 10:20:42 -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 1tUSQi-000275-RV for help-gnu-emacs@gnu.org; Sun, 05 Jan 2025 10:20:40 -0500 Original-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 1tUSQi-0002XY-Hb; Sun, 05 Jan 2025 10:20:40 -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=O4MNYJCfU4Zi2VPVebs+Y/kngYPk3qVzpnY1qGqbu2A=; b=egRqw1kR8ysgcMsy9vHR ZpMZYEI+5OKgIK1atHbLYcCA0k42/5VozfPZVWIgc3rhUTS9VnpIwt1nsCuRy4CzP2lIbyit0wi3Y LaE21Pv5XXEV62VJGLFqANquaiKlCqJ4nXPUck+SDBlFGqGmd7DXtU6/ZUHawQK9p1KpcRLx1WDiD GEyPelbzhDdxLfJkG0YxUz4IBR7qU+jh73nnQTTKLjhz6LxlPFeVXeILQX5Yg/NNJCkZ9yAvZ7ZaK 5FqadI6/5Z+sfwZOGnvc4uaz7T2GOPj+vmArbSZ5lHfKVYH4ijEMKC5xuVqQxe5w3PJ/OzSdIqZBa UeEyFsFK3GZ39w==; In-Reply-To: <33b8c00b-a824-455c-8d2d-92ecd0186796@posteo.de> (gottfried@posteo.de's message of "Sun, 5 Jan 2025 10:58:51 +0000") 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:149147 Archived-At: Gottfried writes: > So may be I have to give up gnus at the moment, because to learn Lisp > from scratch and to use it properly would take a long time, I don't think you need to learn Lisp from scratch in order to use Gnus. A minimal setup like this should get you going: --8<---------------cut here---------------start------------->8--- ;; ~/.gnus file: (setq gnus-select-method '(nnnil "")) (setq gnus-secondary-select-methods '((nnimap "posteo" (nnimap-address "posteo.de") (nnnimap-user "gottfried") (nnimap-authenticator login) (nnimap-stream ssl) (nnimap-server-port 993)))) ;; ~/.authinfo file: machine posteo.de login gottfried password YOURPASS --8<---------------cut here---------------end--------------->8--- I don't use posteo, I just had a brief look at this page: https://posteo.de/en/help/how-do-i-set-up-posteo-in-an-email-client-pop3-imap-and-smtp Best, Arash