From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/87161 Path: news.gmane.org!not-for-mail From: Andreas Schwab Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus-cloud work Date: Mon, 25 Jul 2016 19:42:52 +0200 Message-ID: <87fuqx7gwz.fsf@linux-m68k.org> References: <87lh3439r6.fsf@dod.no> <87bn3vs1tb.fsf@lifelogs.com> <877fe0svto.fsf@lifelogs.com> <87r3by2sfd.fsf_-_@lifelogs.com> <87wplnzhvb.fsf@lifelogs.com> <8737nukab5.fsf@ericabrahamsen.net> <87a8i2n2i7.fsf@lifelogs.com> <878txm6rsy.fsf@ericabrahamsen.net> <87poqxjls5.fsf@lifelogs.com> <87shvsj1lg.fsf@lifelogs.com> <87lh1eg6s6.fsf@lifelogs.com> <87d1m8bh5z.fsf@lifelogs.com> <86wpkcaym2.fsf@dod.no> <86mvl7f9eh.fsf@dod.no> <86invvf96u.fsf@dod.no> <86d1m3f60a.fsf@dod.no> <87oa5l50uw.fsf@lifelogs.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1469468653 4477 80.91.229.3 (25 Jul 2016 17:44:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 25 Jul 2016 17:44:13 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M35381@lists.math.uh.edu Mon Jul 25 19:44:00 2016 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from lists1.math.uh.edu ([129.7.128.208]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1bRjv4-0007L6-IK for ding-account@gmane.org; Mon, 25 Jul 2016 19:43:58 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.86_2) (envelope-from ) id 1bRju9-0004nW-Mh; Mon, 25 Jul 2016 12:43:01 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.86_2) (envelope-from ) id 1bRju5-0004mo-SH for ding@lists.math.uh.edu; Mon, 25 Jul 2016 12:42:57 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.86_2) (envelope-from ) id 1bRju4-00062K-CS for ding@lists.math.uh.edu; Mon, 25 Jul 2016 12:42:57 -0500 Original-Received: from mail-out.m-online.net ([212.18.0.10]) by quimby.gnus.org with esmtps (TLS1.0:DHE_RSA_CAMELLIA_256_CBC_SHA1:256) (Exim 4.80) (envelope-from ) id 1bRju2-0004p7-T0 for ding@gnus.org; Mon, 25 Jul 2016 19:42:54 +0200 Original-Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3rypW21zF0z3hkFh for ; Mon, 25 Jul 2016 19:42:54 +0200 (CEST) Original-Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3rypW20ZsGzvkJF for ; Mon, 25 Jul 2016 19:42:54 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Original-Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id zhy5H8ULoATy for ; Mon, 25 Jul 2016 19:42:53 +0200 (CEST) X-Auth-Info: kTo0HuYLEE5EAuP6xlvy3/Ky8MVnMfCyGnaJoMsn9dHBTFs2uVj/unSaeaGC9Otj Original-Received: from igel.home (ppp-88-217-13-96.dynamic.mnet-online.de [88.217.13.96]) by mail.mnet-online.de (Postfix) with ESMTPA for ; Mon, 25 Jul 2016 19:42:53 +0200 (CEST) Original-Received: by igel.home (Postfix, from userid 1000) id D9B992C2D39; Mon, 25 Jul 2016 19:42:52 +0200 (CEST) X-Yow: Yow! Is this sexual intercourse yet?? Is it, huh, is it?? In-Reply-To: <87oa5l50uw.fsf@lifelogs.com> (Ted Zlatanov's message of "Mon, 25 Jul 2016 09:00:23 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) X-Spam-Score: -1.0 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:87161 Archived-At: Ted Zlatanov writes: > I don't know why that would happen. Look at the code: > > #+begin_src lisp > (defun gnus-cloud-encode-data () > (cond > ((eq gnus-cloud-storage-method 'base64-gzip) > (call-process-region (point-min) (point-max) "gzip" > t (current-buffer) nil > "-c")) > > ((memq gnus-cloud-storage-method '(base64 base64-gzip)) > (base64-encode-region (point-min) (point-max))) > ... > #+end_src > > It gzips, then does base64. Only one of the two branches is executed. Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."