From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Bruno Barbier Newsgroups: gmane.emacs.help Subject: Re: Mu4e suddenly stopped sending emails Date: Sat, 16 Jul 2022 08:52:59 +0200 Message-ID: References: <20220716063720.B07E975005DC@dd15330.kasserver.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="9732"; mail-complaints-to="usenet@ciao.gmane.io" To: emails@jonas-damm.de, help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Sat Jul 16 08:52:09 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 1oCber-0002Kj-I2 for geh-help-gnu-emacs@m.gmane-mx.org; Sat, 16 Jul 2022 08:52:09 +0200 Original-Received: from localhost ([::1]:38844 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oCbeq-00047k-DZ for geh-help-gnu-emacs@m.gmane-mx.org; Sat, 16 Jul 2022 02:52:08 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:42456) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oCbdh-00047c-LD for help-gnu-emacs@gnu.org; Sat, 16 Jul 2022 02:50:57 -0400 Original-Received: from smtp6-g21.free.fr ([212.27.42.6]:12000) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oCbdg-0004Gz-39 for help-gnu-emacs@gnu.org; Sat, 16 Jul 2022 02:50:57 -0400 Original-Received: from tosh-laptop (unknown [IPv6:2a01:e0a:505:3460:1a16:a0c4:3f89:c0d9]) by smtp6-g21.free.fr (Postfix) with ESMTPS id C596178050E; Sat, 16 Jul 2022 08:50:51 +0200 (CEST) Original-Received: by tosh-laptop (sSMTP sendmail emulation); Sat, 16 Jul 2022 08:52:59 +0200 In-Reply-To: <20220716063720.B07E975005DC@dd15330.kasserver.com> Received-SPF: softfail client-ip=212.27.42.6; envelope-from=brubar.cs@gmail.com; helo=smtp6-g21.free.fr X-Spam_score_int: 12 X-Spam_score: 1.2 X-Spam_bar: + X-Spam_report: (1.2 / 5.0 requ) BAYES_00=-1.9, DKIM_ADSP_CUSTOM_MED=0.001, FORGED_GMAIL_RCVD=1, FREEMAIL_FROM=0.001, MISSING_MID=0.497, NML_ADSP_CUSTOM_MED=0.9, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_SOFTFAIL=0.665, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no 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" Xref: news.gmane.io gmane.emacs.help:138502 Archived-At: emails@jonas-damm.de writes: > Hi, > > I use mu4e on as my primary email client. last night, without changing > anything on my system (that I know of), it stopped sending mail with > the following in *messages*: > ... > make client process failed: Keine Route zum Zielrechner The error is: Keine Route zum Zielrechner So, it seems your computer cannot reach your email smtp server. Are you able to ping the server from outside of Emacs ? Bruno > > This is the relevant part of my config: > > (setq message-send-mail-function 'smtpmail-send-it) > > (setq mu4e-contexts > (list > ;; work account > [My other account...] > > (make-mu4e-context > :name "emails_jd" > :match-func > (lambda (msg) > (when msg > (string-prefix-p "/emails" (mu4e-message-field msg :maildir)))) > :vars '((user-mail-address . "emails@jonas-damm.de") > (user-full-name . "Jonas Damm") > (smtpmail-smtp-server . "[MY-SMTP]") > (smtpmail-smtp-service . 465) > (smtpmail-stream-type . ssl) > (mu4e-sent-folder . "/emails/Gesendet") > (mu4e-trash-folder . "/emails/Papierkorb") > (mu4e-drafts-folder . "/emails/Entw&APw-rfe") > (mu4e-spam-folder . "/emails/Spam") > (mu4e-refile-folder . "/emails/Archiv"))))) > > Thanks for any help! > > Jonas