From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: poti@potis.org Newsgroups: gmane.emacs.help Subject: Re: NTEmacs + plink Date: Sun, 10 Jun 2007 17:44:02 -0400 Message-ID: <20070610214402.GB21395@mail.potis.org> References: <1179363834.155446.234830@q75g2000hsh.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1181511868 26378 80.91.229.12 (10 Jun 2007 21:44:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 10 Jun 2007 21:44:28 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jun 10 23:44:27 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HxVCx-0007Ce-Mr for geh-help-gnu-emacs@m.gmane.org; Sun, 10 Jun 2007 23:44:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HxVCx-0001nl-6n for geh-help-gnu-emacs@m.gmane.org; Sun, 10 Jun 2007 17:44:23 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HxVCg-0001lK-Rd for help-gnu-emacs@gnu.org; Sun, 10 Jun 2007 17:44:06 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HxVCg-0001kl-9z for help-gnu-emacs@gnu.org; Sun, 10 Jun 2007 17:44:06 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HxVCg-0001kd-7a for help-gnu-emacs@gnu.org; Sun, 10 Jun 2007 17:44:06 -0400 Original-Received: from sitemail2.everyone.net ([216.200.145.36] helo=omta14.mta.everyone.net) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HxVCf-0001R6-Qf for help-gnu-emacs@gnu.org; Sun, 10 Jun 2007 17:44:05 -0400 Original-Received: from pop15.mta.everyone.net (bigiplb-dsnat [172.16.0.19]) by omta14.mta.everyone.net (Postfix) with ESMTP id 202FE4188A for ; Sun, 10 Jun 2007 14:44:05 -0700 (PDT) X-Eon-Dm: pop15 Original-Received: by pop15.mta.everyone.net (EON-AUTHRELAY2 - 48f102f2) id pop15.465dfe40.1fca64 for ; Sun, 10 Jun 2007 14:44:04 -0700 X-Eon-Sig: AQLTeK1GbHCkYn/JyAIAAAAB,1f68d8d6f837967927aaf6fb665cf7c7 Original-Received: by potis.org (nbSMTP-1.00) for uid 1000 poti@potis.org; Sun, 10 Jun 2007 17:44:02 -0400 (EDT) Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.13 (2006-08-11) X-detected-kernel: Linux 2.4-2.6 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:44852 Archived-At: On 06:21 Thu 17 May , Eli Zaretskii wrote: > > From: gamename > > Date: 16 May 2007 18:03:54 -0700 > > > > I'm trying to use plink for my ssh connections under NTEmacs. > > Unfortunately, it simply asks for my password over and over again. > > Eventually, the number of attempts are exceeded and access is > > denied. > > It works for me, but I'm using a pretest of Emacs 22.1 (you didn't say > what version you have). Eli, have you done any additional configuration to your shell modes? I am now using GNU Emacs 22.1.1 (i386-mingw-nt5.1.2600) of 2007-06-02 on RELEASE and the problem persists, with shell not working at all and eshell requiring C-q . Following up a comment in this thread regarding comint-watch-for-password-prompt I tried adding this to Aplication Data/_emacs, but the problem was not affected. (defun shell-mode-settings () (add-hook 'comint-output-filter-functions 'comint-watch-for-password-prompt nil t) (add-hook 'comint-output-filter-functions 'comint-strip-ctrl-m nil t) (setq tab-width 8)) (add-hook 'shell-mode-hook 'shell-mode-settings) As a side note, when I do get through with eshell, all lines are encased in ^[[00m and similar characters. TERM is xterm. Is there a better setting for emacs?