Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 5F5AD431FD0 for ; Fri, 20 May 2011 23:51:33 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7Rd14NkqaPKi for ; Fri, 20 May 2011 23:51:32 -0700 (PDT) X-Greylist: delayed 975 seconds by postgrey-1.32 at olra; Fri, 20 May 2011 23:51:32 PDT Received: from mail.uni-magdeburg.de (mail.uni-magdeburg.de [141.44.1.10]) by olra.theworths.org (Postfix) with ESMTP id 4D399431FB6 for ; Fri, 20 May 2011 23:51:32 -0700 (PDT) Received: from pc44es141.cs.uni-magdeburg.de ([141.44.32.169]:54743) by mail.uni-magdeburg.de with esmtp (EXIM Version 4.69) id 1QNfmN-00054C-4v; Sat, 21 May 2011 08:35:17 +0200 From: Matthias Guedemann To: notmuch@notmuchmail.org Subject: problems with multipart/mixed User-Agent: Notmuch/0.5-123-ge8659ee (http://notmuchmail.org) Emacs/23.2.1 (x86_64-pc-linux-gnu) Date: Sat, 21 May 2011 08:35:13 +0200 Message-ID: <878vu0ftni.fsf@pc44es141.cs.uni-magdeburg.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scan-Signature: d5704032debb7126ab8bfc5b97eef867 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 May 2011 06:51:34 -0000 Hi all, I am using notmuch / emacs as my main mail client now for several months and loosely follow master. After an update yesterday I now have problems with some multipart/mixed mails from mailing lists which are displayed for example as follows (I could also provide the raw mail if needed): ----8<---------- Subject: [Haskell-cafe] Can't access map value with key. To: "haskell-cafe@haskell.org" Date: Sat, 21 May 2011 04:04:31 +0200 [ multipart/mixed ] [ text/html ] _______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http:// www.haskell.org/mailman/listinfo/haskell-cafe [ ATT00001.c: text/plain ] [ 4-line signature. Click/Enter to toggle visibility. ] ----8<---------- i.e. the html part is not displayed. I'd like to have it displayed inline (using w3m), just as other html mails and just like it worked before (at least I think it worked). I probably just missed a simple configuration option. My notmuch config in .emacs (and my message mode config) is at the end of this mail. From the git logs I saw that there have been some changes to multipart handling and new variables, but I could not really find a solution. Perhaps someone can point out where my current config is broken. best regards Matthias ;; f_r notmuch (require 'notmuch) (setq message-send-mail-function 'smtpmail-send-it) (setq smtpmail-smtp-server MYSMTP) (setq smtpmail-smtp-service 25) (setq user-mail-address MYMAIL) (setq message-default-mail-headers "Cc: MYMAIL\nBcc: \n") (setq message-auto-save-directory "~/MailNoBackup/drafts") (add-hook 'message-mode-hook '(lambda () (flyspell-mode t))) (add-hook 'message-mode-hook '(lambda () (footnote-mode t))) ;; message-mode stuff (setq mm-text-html-renderer 'w3m) (setq mm-attachment-override-types '("image/.*")) (setq w3m-display-inline-image t) (setq mm-inline-text-html-with-images "") ;; gnus stuff ...