From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by 10.42.228.136 with SMTP id je8cs111989icb; Sun, 6 Mar 2011 15:52:13 -0800 (PST) Received: by 10.42.199.74 with SMTP id er10mr4050935icb.228.1299455533324; Sun, 06 Mar 2011 15:52:13 -0800 (PST) Return-Path: Received: from rubyforge.org (rubyforge.org [205.234.109.19]) by mx.google.com with ESMTP id uv9si5544384icb.122.2011.03.06.15.52.13; Sun, 06 Mar 2011 15:52:13 -0800 (PST) Received-SPF: pass (google.com: domain of sup-devel-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) client-ip=205.234.109.19; Authentication-Results: mx.google.com; spf=pass (google.com: domain of sup-devel-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) smtp.mail=sup-devel-bounces@rubyforge.org; dkim=neutral (body hash did not verify) header.i=@gmail.com Received: from rubyforge.org (rubyforge.org [127.0.0.1]) by rubyforge.org (Postfix) with ESMTP id C5C131858346 for ; Sun, 6 Mar 2011 18:52:12 -0500 (EST) Received: from mail-wy0-f178.google.com (mail-wy0-f178.google.com [74.125.82.178]) by rubyforge.org (Postfix) with ESMTP id 8470D1858112 for ; Sun, 6 Mar 2011 18:36:30 -0500 (EST) Received: by wyf28 with SMTP id 28so4360452wyf.23 for ; Sun, 06 Mar 2011 15:36:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:content-type:subject:from:to:in-reply-to :references:date:message-id:user-agent:content-transfer-encoding; bh=PD0vul4N3l5lnwz+agAU1waHMVD9LbkQARee30jtb2c=; b=b5CVADeRKuhU/qXSv/vigva/XHLp5jAij7zkMgjIOytwjHReGnAHONhIIg5ztL0JTk Dm0u60/qx07wmEXreSaUedvLT78QudDuKynfNa3nWUiPeevLke0bipqDDnaPsRFS0ri4 PUMlQQp8CGoD8I+a0ytg9U7oG9UsWHC9MKAdk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:subject:from:to:in-reply-to:references:date:message-id :user-agent:content-transfer-encoding; b=ID1Xm4BvqbEjWcHo1ZsajftRIDcI+Va7mY81UFXsK6A1u0g/DLUtQEW4ZkhBMQCaMQ gUlR1MWOOYMU2ggvGbwsCnM03/1CVUmIvlcOvI2Ir0AdQSUL5LfmgXSfRTUiPL+AmrOn 510S7IEiB+oi1DK3FaqzM9Ldnlr5kJN7YXBgw= Received: by 10.227.200.76 with SMTP id ev12mr2803013wbb.141.1299454589194; Sun, 06 Mar 2011 15:36:29 -0800 (PST) Received: from localhost (cpc12-cmbg15-2-0-cust81.5-4.cable.virginmedia.com [86.30.247.82]) by mx.google.com with ESMTPS id bd8sm1626536wbb.19.2011.03.06.15.36.26 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 06 Mar 2011 15:36:28 -0800 (PST) From: Hamish To: sup-devel In-reply-to: <1299436337-sup-4604@pruts.nl> References: <1299436337-sup-4604@pruts.nl> Date: Sun, 06 Mar 2011 23:36:24 +0000 Message-Id: <1299454258-sup-7115@whisper> User-Agent: Sup/git Subject: Re: [sup-devel] Mail-to-self does not end up in inbox X-BeenThere: sup-devel@rubyforge.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: Sup developer discussion List-Id: Sup developer discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: sup-devel-bounces@rubyforge.org Errors-To: sup-devel-bounces@rubyforge.org Excerpts from Ico Doornekamp's message of Sun Mar 06 18:34:56 +0000 2011: > Back in the old days when using mutt, I regularly used to send mails to > myself as reminders or short notes. Sup however shows intelligent > behaviour, recognizes the message is both sent and received, and > attaches a 'sent' label to it, and thus the mail does not show up in the > inbox. > > Is there a simple workaround for this ? Could this be considered a bug, > or is this just functioning as designed ? I generally prefer sent email to not show up in the inbox - I try to keep my inbox somewhere near zero (though I rarely achieve it ...) A work around could be to add the inbox label to sent mail that is just to you. In before-add-message.rb you could have something like: if message.from.email == "me@mine.com" && message.to.length == 1 && message.to[0].email == "me@mine.com" message.add_label :inbox end I haven't tested that, so you may want to check your logs if you try using it. Or you could have a keyword in the subject - [ACTION] maybe - and have a hook filter for that. Hamish _______________________________________________ Sup-devel mailing list Sup-devel@rubyforge.org http://rubyforge.org/mailman/listinfo/sup-devel