From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/85140 Path: news.gmane.org!not-for-mail From: TSUCHIYA Masatoshi Newsgroups: gmane.emacs.gnus.general Subject: Re: I can haz cloud idea Date: Thu, 16 Oct 2014 08:31:54 +0900 Message-ID: <87h9z43o5x.fsf@tsuchiya.vaj.namazu.org> References: <87fwebnzd8.fsf@gnus.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1413415935 8884 80.91.229.3 (15 Oct 2014 23:32:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 15 Oct 2014 23:32:15 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M33384=ding+2Daccount=gmane.org@lists.math.uh.edu Thu Oct 16 01:32:08 2014 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XeY35-0001h3-SH for ding-account@gmane.org; Thu, 16 Oct 2014 01:32:08 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1XeY34-0007tR-PN for ding-account@gmane.org; Wed, 15 Oct 2014 18:32:06 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1XeY33-0007tK-D4 for ding@lists.math.uh.edu; Wed, 15 Oct 2014 18:32:05 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1XeY2y-0007yU-3u for ding@lists.math.uh.edu; Wed, 15 Oct 2014 18:32:04 -0500 Original-Received: from vaj.namazu.org ([202.221.179.42]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1XeY2v-0002NA-V1 for ding@gnus.org; Thu, 16 Oct 2014 01:31:58 +0200 Original-Received: from vaj.namazu.org (vaj.namazu.org [202.221.179.42]) by vaj.namazu.org (Postfix) with ESMTP id 8623F2600B2 for ; Thu, 16 Oct 2014 08:31:55 +0900 (JST) X-cite: xcite 1.56 Mail-Followup-To: ding@gnus.org In-Reply-To: <87fwebnzd8.fsf@gnus.org> (Lars Ingebrigtsen's message of "Thu, 16 Feb 2012 06:03:47 +0100") User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/23.4 (gnu/linux) X-Spam-Score: -0.0 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:85140 Archived-At: >> On Thu, 16 Feb 2012 06:03:47 +0100 >> larsi@gnus.org (Lars Ingebrigtsen) said as follows: >The main problems with going all cloudy is that you have to have yet >another server out there somewhere. Whether you use Dropbox/sshfs/a >yet to be determined Gnus-specific server, that's not very sexy. >But how about if we just cheat and put all the information on the IMAP >server? I use the following code to put my sent box on IMAP server. (let ((imap-method (catch 'found-imap-method (let ((methods (cons gnus-select-method gnus-secondary-select-methods))) (while methods (when (eq (caar methods) 'nnimap) (throw 'found-imap-method (car methods))) (setq methods (cdr methods))))))) (when imap-method (setq gnus-message-archive-method imap-method gnus-message-archive-group "Sent"))) I can share the same sent box between Gnus and other MUAs using this I also tried a similar trick to put my draft box on IMAP server, but failed. -- TSUCHIYA Masatoshi