From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by 10.52.169.69 with SMTP id ac5csp24765vdc; Thu, 15 Aug 2013 11:58:02 -0700 (PDT) X-Received: by 10.60.51.41 with SMTP id h9mr15635158oeo.49.1376593082245; Thu, 15 Aug 2013 11:58:02 -0700 (PDT) Return-Path: Received: from rubyforge.org ([50.56.192.79]) by mx.google.com with ESMTP id i4si304082oew.101.2013.08.15.11.58.02 for ; Thu, 15 Aug 2013 11:58:02 -0700 (PDT) Received-SPF: pass (google.com: domain of sup-talk-bounces@rubyforge.org designates 50.56.192.79 as permitted sender) client-ip=50.56.192.79; Authentication-Results: mx.google.com; spf=pass (google.com: domain of sup-talk-bounces@rubyforge.org designates 50.56.192.79 as permitted sender) smtp.mail=sup-talk-bounces@rubyforge.org; dkim=neutral (bad format) header.i=@gmail.com; dmarc=fail (p=NONE dis=NONE) d=gmail.com Received: from localhost.localdomain (localhost [127.0.0.1]) by rubyforge.org (Postfix) with ESMTP id EF7272E24A; Thu, 15 Aug 2013 18:58:02 +0000 (UTC) X-Greylist: delayed 843 seconds by postgrey-1.31 at rubyforge; Thu, 15 Aug 2013 18:57:46 UTC Received: from mail-wg0-f48.google.com (mail-wg0-f48.google.com [74.125.82.48]) by rubyforge.org (Postfix) with ESMTP id ED5C92E22D for ; Thu, 15 Aug 2013 18:57:46 +0000 (UTC) Received: by mail-wg0-f48.google.com with SMTP id f12so849761wgh.15 for ; Thu, 15 Aug 2013 11:57:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:in-reply-to:references:date:message-id:user-agent :content-transfer-encoding:mime-version:content-type; bh=PWiXj35adoAsX0fnXh/QRVA8zZ+lVT4s46rmg0+BMuo=; b=pgTUHDGAxzdMYSUjPWSw+4obuoivds0kmJAY72A31vXIfTReST/+xSAc2LIpcg8KBY dfUvDuFyApy+aPy8ZcEhQARYYHzn4GMryUBcomiY/NfpnzFVjmQEV1y8wQc/k7MqkfZI NUaJlTATVmtBO0He3GrwbkWEkRRTq2vMDVW5VeelLEbbv/2LJpjddoudl6oS8utvSfaW 7VE1+yFoVdJc9iPRYZZolKWQ/m05nzhHT1ve3kzWMXIUTcAJOpOnDKrB1S6Syl/3FCdi 6ZmLlkv6O0Vea2LgvJspBAto4Ma0JYdKQx1F5YiyUDK5sUvCygBFMEWAoYHXp3RblzP9 EeZQ== X-Received: by 10.180.183.19 with SMTP id ei19mr2701788wic.10.1376591759938; Thu, 15 Aug 2013 11:35:59 -0700 (PDT) Received: from kpad (155-29-190-109.dsl.ovh.fr. [109.190.29.155]) by mx.google.com with ESMTPSA id a4sm4301156wik.11.1969.12.31.16.00.00 (version=TLSv1.2 cipher=AES128-SHA bits=128/128); Thu, 15 Aug 2013 11:35:59 -0700 (PDT) Received: from localhost (localhost [IPv6:::1]); by kpad (OpenSMTPD) with ESMTP id dbf897f2; for ; Thu, 15 Aug 2013 18:30:57 +0000 (UTC) From: Matthieu Rakotojaona To: sup-talk In-reply-to: <1376554850-sup-6592@qwerzila> References: <1376554850-sup-6592@qwerzila> X-pgp-key: http://otokar.looc2011.eu/static/matthieu.rakotojaona.asc Date: Thu, 15 Aug 2013 20:30:52 +0200 Message-Id: <1376588663-sup-4993@kpad> User-Agent: Sup/0.14.0 MIME-Version: 1.0 Subject: Re: [sup-talk] Sup Release 0.14.0 X-BeenThere: sup-talk@rubyforge.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: User & developer discussion of Sup List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============2432668974847547977==" Sender: sup-talk-bounces@rubyforge.org Errors-To: sup-talk-bounces@rubyforge.org --===============2432668974847547977== Content-Transfer-Encoding: 8bit Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=-1376591457-605067-793-2741-1-=" --=-1376591457-605067-793-2741-1-= Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Thank you ! I've tried the install sup via the gem on a naked machine and I've faced a few problems: * There is a bug in rubymail as pointed in [0]. I see it hasn't been merged yet and doubt it will ever be. I replaced the upstream one with the one from your repo (1) and it works as needed. Can we use a rmail-sup, specific to us, just for the time we use this lib, just like ncursesw-sup ? * There was a problem with the unicode gem. I had an old version of gem running (you need >=3D 2.0.2 as stated in [2] and followings). Here= are the steps that fixed the problem: Update gem: $ sudo gem update --system Reinstall the unicode gem: $ gem uninstall unicode $ gem install unicode * Those damn encoding problems struck me. We're trying to fix_encoding a bunch of Strings here and there and one of them at least is a frozen string so it doesn't work. See PR130 [3] for this. Apart from that, it works well. Thank you guys for the hard work ! You're making me ashamed of not being very participative in this, though :) [0] https://github.com/matta/rubymail/pull/2 [1] https://github.com/gauteh/rubymail [2] https://github.com/blackwinter/unicode/issues/4#issuecomment-14086773= [3] https://github.com/sup-heliotrope/sup/pull/130 -- = Matthieu Rakotojaona --=-1376591457-605067-793-2741-1-= Content-Disposition: attachment; filename="signature.asc" Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.20 (GNU/Linux) iQIcBAEBAgAGBQJSDR5hAAoJEDp04ZRcPZci4vUP/0IEGrsANBPCedzKCxzblShw 6nGZd045jbDhCAdTVZY55/SXARv5BVyo4xnEdqBLNZzySI8cQlkOdM6UDePBYMIm i+TDEap135337eTgOKpTYN4rdeXdFNcimyATBU17noF14epmg6zvzueoQYfYeNoZ UeD9/e8eiFAwWa/EQLudnd5Z85NMc/doAdIpiOTol4xF1EFY/fMwU8N16qv5MpDg R3UsC7SUm5UCdZU5ySqXFtyu7ViRfmwbp1tQa98FAfE7VkFG1qfXlIr+xp6DpxZV bIY8vutC6X9k1DNziJ6lpWfhYlb7Uc83KZW9gG1WaRdrKugeR3KTAJME3RgvBQ43 h83qVwjrJUp9BU8ej4C78g8Kel/vFXnDppRC4+eluX5FX1skfLVT60Z2PPo9Hjma xplY2Gm7k7FViasmEk90a29ha2ehX6cdw/7Rxg7iYO8gSJXQeVVpFGic/n+QSGeR 8BzAJgZ1X7nsLS5NzotKn1jwe9lUMUPnKe0SUCGRUDlgvJhE6/8AOFK5s0GLvhJS ZP/vhfn8zEgPe8do5DnxE0Hq4NyLvBsuGAtbKQDrLMX8zZYT09zHiduiTSvziV4p mD0m1/EDNq2gQPXKBm8gaaIDH/r6ADRAtcJwNmc3pOhnK1dQfpYaQ8vIZ4mfN/Kf B77Puz2uhQFpzCBtPRCu =OSSX -----END PGP SIGNATURE----- --=-1376591457-605067-793-2741-1-=-- --===============2432668974847547977== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ sup-talk mailing list sup-talk@rubyforge.org http://rubyforge.org/mailman/listinfo/sup-talk --===============2432668974847547977==--