From mboxrd@z Thu Jan 1 00:00:00 1970 From: wmorgan-sup@masanjin.net (William Morgan) Date: Sun, 22 Mar 2009 10:46:17 -0700 Subject: [sup-talk] [PATCH] sup-mail crash In-Reply-To: <1234477287.6877.10.camel@onnadayr.ca> References: <20090201222618.GA6346@acahkos.kisikew.org> <1234220954-sup-3688@entry> <1234268739-sup-5896@tomsk> <1234475856-sup-8907@entry> <1234477287.6877.10.camel@onnadayr.ca> Message-ID: <1237743974-sup-3407@entry> Whoops, I lied. This was the other bugfix I wanted to get in to 0.7. Reformatted excerpts from Rick Tessner's message of 2009-02-12: > I've had this problem occassionally about a "hash modified during > iteration" and I use maildir rather than mbox. > > Attached is a patch to fix that problem. Thanks! I've applied an equivalent patch to master: - header.each { |k, v| header[k.downcase] = v } + header.keys.each { |k| header[k.downcase] = v } # canonicalize Please let me know if the current master works for you. -- William