From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Madhusudan Singh Newsgroups: gmane.emacs.help Subject: VM 7.19 locks up repeatedly with GNU Emacs 21.3 Date: Tue, 03 May 2005 23:31:29 -0400 Organization: Some Message-ID: <42784157$0$79455$14726298@news.sunsite.dk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Trace: sea.gmane.org 1115239676 22906 80.91.229.2 (4 May 2005 20:47:56 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 4 May 2005 20:47:56 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed May 04 22:47:50 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DTQlE-00025g-Am for geh-help-gnu-emacs@m.gmane.org; Wed, 04 May 2005 22:46:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DTQsb-0007Cz-Ix for geh-help-gnu-emacs@m.gmane.org; Wed, 04 May 2005 16:54:01 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!news.glorb.com!dotsrc.org!news.dotsrc.org!not-for-mail Original-Newsgroups: comp.emacs,gnu.emacs.help,gnu.emacs.vm.bug,gnu.emacs.vm.info Original-Followup-To: gnu.emacs.help User-Agent: KNode/0.8.2 Original-Lines: 37 Original-NNTP-Posting-Host: 24.60.144.26 Original-X-Trace: news.sunsite.dk DXC=@Q7Thm]AdO92]0d4PBaYSB=nbEKnk; i7U@HDP?Z37]JlM^LamVS9<1KjZ4]GlX:8o^595Z9ok3Gmo7ghPf::4V7P=IOnL\[> 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:26294 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:26294 I have the following in my .emacs : (setq vm-toolbar-pixmap-directory "/usr/local/emacs/share/emacs/site- lisp/vm") (setq vm-image-directory "/usr/local/emacs/share/emacs/site-lisp/vm") (autoload 'vm "vm" "Start VM on your primary inbox." t) (autoload 'vm-other-frame "vm" "Like `vm' but starts in another frame ." t) (autoload 'vm-visit-folder "vm" "Start VM on an arbitrary folder." t) (autoload 'vm-visit-virtual-folder "vm" "Visit a VM virtual folder." t) (autoload 'vm-mode "vm" "Run VM major mode on a buffer" t) (autoload 'vm-mail "vm" "Send a mail message using VM." t) (autoload 'vm-submit-bug-report "vm" "Send a bug report about VM." t) (setq vm-spool-files (list (concat "imap:myserver.mydomain.edu:993:inbox:login:" (getenv "USER") ":*"))) (setq vm-imap-expunge-after-retrieving nil) (setq mail-default-reply-to "msingh@mydomain.edu") (setq user-full-name "Madhusudan Singh") (setq user-mail-address "msingh@mydomain.edu") (define-key menu-bar-tools-menu [rmail] '("Read Mail" . vm)) (define-key-after menu-bar-tools-menu [smail] '("Send Mail" . vm-mail) 'rmail) (setq mail-user-agent 'vm-user-agent) (setq toolbar-mail-reader 'vm) (setq vm-mutable-windows nil) (setq vm-mail-check-intervil nil) (setq vm-auto-get-new-mail nil) However, on entering the right password, emacs just locks up. This is not "occasional" as the FAQ (http://www.wonderworks.com/vm/vm-faq-4.html#ss4.3) warns, but reproducible. How do I fix this ? Thanks.