From mboxrd@z Thu Jan 1 00:00:00 1970 From: tpo2@sourcepole.ch (Tomas Pospisek ML) Date: Mon, 03 Nov 2008 20:45:27 +0000 Subject: [sup-talk] CPU at 99% In-Reply-To: <1225651661-sup-1958@entry> Message-ID: On 11/2/2008, "William Morgan" wrote: >Reformatted excerpts from Tomas Pospisek ML's message of 2008-10-31: >> The "[poll-mode]" buffer shows an "infinite amount" of the following >> message: >> [...] >> Found message at 44352220 with labels {Sent, unread} >> Found message at 44352220 with labels {Sent, unread} >> Found message at 44352220 with labels {Sent, unread} >> Found message at 44352220 with labels {Sent, unread} >> Found message at 44352220 with labels {Sent, unread} > >What kind of source is this? I'm guessing mbox. Correct, that's mbox. > Can you try to figure out what is around byte offset 44352220 in that file? Sup isn't >advancing beyond that for some reason. $ hexdump -C -s 44352219 -n 80 /home/tpo/mail/sent-mail/sent-mail-jan-2008 02a4c2db 0a 46 72 6f 6d 20 74 70 6f 32 2e 6c 6f 63 61 6c |.From tpo2.local| 02a4c2eb 20 28 31 30 2e 32 2e 31 35 39 2e 35 30 29 20 69 | (10.2.159.50) i| 02a4c2fb 63 6d 70 5f 73 65 71 3d 35 37 35 35 20 44 65 73 |cmp_seq=5755 Des| 02a4c30b 74 69 6e 61 74 69 6f 6e 20 48 6f 73 74 20 55 6e |tination Host Un| 02a4c31b 72 65 61 63 68 61 62 6c 65 0a 46 72 6f 6d 20 74 |reachable.From t| Thus the byte just before offset 44352220 is a 'a0' thus a newline with a "^From" on the next line and thus I guess it's the same problem as: http://rubyforge.org/pipermail/sup-talk/2008-October/001719.html Regarding the "Sent" label mentioned in the log above I need to add that I did something like this: $ for i in $HOME/mail/sent-mail/*; do sup-add mbox:$i -a -l Sent ; done That went OK, however, when I list labels in Sup I get this: [...] Sent 13 messages, 2 unread Sent 6415 messages, 3271 unread [...] Thus apparently Sup get's a bit mixed up about the 'Sent' label. *t