From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.8 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: from mx1.math.uh.edu (mx1.math.uh.edu [129.7.128.32]) by inbox.vuxu.org (Postfix) with ESMTP id A7F092FA06 for ; Wed, 23 Oct 2024 20:35:56 +0200 (CEST) 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.98) (envelope-from ) id 1t3gCz-0000000Ap85-0XYR for ml@inbox.vuxu.org; Wed, 23 Oct 2024 13:35:53 -0500 Received: from lists1.math.uh.edu ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.97.1) (envelope-from ) id 1t3gCw-00000005rT8-3MTG for ml@inbox.vuxu.org; Wed, 23 Oct 2024 13:35:46 -0500 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtp (Exim 4.97.1) (envelope-from ) id 1t39OF-00000005o6y-0H51 for ding@lists.math.uh.edu; Tue, 22 Oct 2024 02:33:15 -0500 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.98) (envelope-from ) id 1t39OA-00000009YBA-0lSN for ding@lists.math.uh.edu; Tue, 22 Oct 2024 02:33:14 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:Mime-Version:References:Message-ID:Date:Subject: From:To:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=ffaLl9OIHEGRrtZDIs6N52hknj5ZwxiMSNPzZr2rH5w=; b=vE/kyVc0Sode7Buj+cjrfa/GJb jqEY4B90noRKlwChw7u+KepeNdlbqZOFSWP7rvuN7RGa4H0PBtldznGJEZX6ZM2qGhhEY9GUt5XME EqkqVu9jR+Y6I1bbRd5278Zmx3eIZuzcDESRTlBWetwkBei/SbTV+rOeheS8V8YNafRU=; Received: from ciao.gmane.io ([116.202.254.214]) by quimby.gnus.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1t39O2-0006fe-Sy for ding@gnus.org; Tue, 22 Oct 2024 09:33:05 +0200 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1t39O1-0003Pc-Gg for ding@gnus.org; Tue, 22 Oct 2024 09:33:01 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: ding@gnus.org From: NNTP Surfer Subject: Re: Sending messages to newsgroups/mailing lists through gmane Date: Tue, 22 Oct 2024 03:32:48 -0400 Message-ID: <87plnswq1r.fsf@its.a.fake> References: <87ed4mamgb.fsf@subvertising.org> Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:oYzQBvgMaUyEAqwJedyMShufxMk= List-ID: Precedence: bulk Divya Ranjan writes: > gmane/gwene, while news and mailing list are retrieved fine, I cannot > write to newsgroups like gnus.general or gnus.user. I get the message > compose buffer but on doing `C-c`, I get "Read-only server" error. It was long time ago when I last configured this but I think you need capability to send emails. make sure you have set up variables: #begin_src emacs-lisp (setq user-mail-address "email-address" user-full-name "username" message-user-fqdn "some id" smtpmail-smtp-server "server url" smtpmail-smtp-service 465 smtpmail-stream-type 'ssl) #end_src