Gnus development mailing list
 help / color / mirror / Atom feed
* Gnus+IMAP+Gmail
@ 2007-11-06 20:37 Shigeki UNO
  2007-11-06 21:28 ` Gnus+IMAP+Gmail Guillermo Antonio Amaral Bastidas
  0 siblings, 1 reply; 4+ messages in thread
From: Shigeki UNO @ 2007-11-06 20:37 UTC (permalink / raw)
  To: ding

 Does anyone use Gnus with Gmail using IMAP successfully?
If so, give me a good guidance or example of ".gnus.el"
that make it work.

 My .gnus.el I set up is the following.

(setq gnus-secondary-select-methods '((nnimap "gmail"
					      (nnimap-address "imap.gmail.com")
					      (nnimap-server-port 993)
					     ;(nnimap-authinfo-file "~/.imap-authinfo")
					      (nnimap-stream ssl))))
 

 After launching Gnus, it connects to imap server of Gmail and asks me
both my Gmail account and password. I enter them and it looks OK but 
no Gmail labels are shown. Whereas nnml mailboxes in my HDD are listed.

What am I wrong???

---
Shigeki UNO      



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Gnus+IMAP+Gmail
  2007-11-06 20:37 Gnus+IMAP+Gmail Shigeki UNO
@ 2007-11-06 21:28 ` Guillermo Antonio Amaral Bastidas
  2007-11-07  8:26   ` Gnus+IMAP+Gmail Shigeki UNO
  2007-11-07  8:56   ` Gnus+IMAP+Gmail Shigeki UNO
  0 siblings, 2 replies; 4+ messages in thread
From: Guillermo Antonio Amaral Bastidas @ 2007-11-06 21:28 UTC (permalink / raw)
  To: ding

[-- Attachment #1: Type: text/plain, Size: 1420 bytes --]

shigeki@mediawars.ne.jp (Shigeki UNO) writes:

>  Does anyone use Gnus with Gmail using IMAP successfully?
> If so, give me a good guidance or example of ".gnus.el"
> that make it work.
>
>  My .gnus.el I set up is the following.
>
> (setq gnus-secondary-select-methods '((nnimap "gmail"
> 					      (nnimap-address "imap.gmail.com")
> 					      (nnimap-server-port 993)
> 					     ;(nnimap-authinfo-file "~/.imap-authinfo")
> 					      (nnimap-stream ssl))))
>  
>
>  After launching Gnus, it connects to imap server of Gmail and asks me
> both my Gmail account and password. I enter them and it looks OK but 
> no Gmail labels are shown. Whereas nnml mailboxes in my HDD are listed.
>
> What am I wrong???
>
> ---
> Shigeki UNO      
>
>

  This worked for me as a secondary select method:

  (nnimap ""
          (nnimap-address "imap.gmail.com")
          (nnimap-stream ssl)
          (nnimap-authinfo-file "~/.authinfo")

  You have to do subscribe afterwords as you would any other newsgroup
( nnimap:INBOX ) and what ever tags you have defined ( nnimap:my-tag ).

  -- I had no mail-sources defined at the time.

  After testing it out I found it a bit to buggy for my taste, but it
does work.

  Hope this helps. :-)

-- 
Guillermo Antonio Amaral Bastidas (gamaral)
  Free/Libre/Open-Source Software Advocate & KDE Developer
  http://blog.guillermoamaral.com/

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Gnus+IMAP+Gmail
  2007-11-06 21:28 ` Gnus+IMAP+Gmail Guillermo Antonio Amaral Bastidas
@ 2007-11-07  8:26   ` Shigeki UNO
  2007-11-07  8:56   ` Gnus+IMAP+Gmail Shigeki UNO
  1 sibling, 0 replies; 4+ messages in thread
From: Shigeki UNO @ 2007-11-07  8:26 UTC (permalink / raw)
  To: Guillermo Antonio Amaral Bastidas; +Cc: ding

Thanks*100!!! 

 At the end of last year I switched to Gmail and have not been using Gnus
for a year. I hardly remember about Gnus...(SAD!)

 The lisp codes that I write looks OK and Gnus works like a charm.

Instructions

1. M-x gnus
2. Connect to the Gmail server with "^"
3. {nnimap:gmail}(closed) -> (opened) with "C O"
4. Move cursor to {nnimap:gmail} and RETURN
5. Go to Group buffer and choose groups you want with "u"
6. Go to Server buffer, put cursor on {nnimap:gmail} and enter "J a"
7. Return to Group buffer and press "g" to fetch mails from Gmail.

That's all.  
---
Shigeki UNO
 

me@guillermoamaral.com (Guillermo Antonio Amaral Bastidas) writes:

> shigeki@mediawars.ne.jp (Shigeki UNO) writes:
>
>>  Does anyone use Gnus with Gmail using IMAP successfully?
>> If so, give me a good guidance or example of ".gnus.el"
>> that make it work.
>>
>>  My .gnus.el I set up is the following.
>>
>> (setq gnus-secondary-select-methods '((nnimap "gmail"
>> 					      (nnimap-address "imap.gmail.com")
>> 					      (nnimap-server-port 993)
>> 					     ;(nnimap-authinfo-file "~/.imap-authinfo")
>> 					      (nnimap-stream ssl))))
>>  
>>
>>  After launching Gnus, it connects to imap server of Gmail and asks me
>> both my Gmail account and password. I enter them and it looks OK but 
>> no Gmail labels are shown. Whereas nnml mailboxes in my HDD are listed.
>>
>> What am I wrong???
>>
>> ---
>> Shigeki UNO      
>>
>>
>
>   This worked for me as a secondary select method:
>
>   (nnimap ""
>           (nnimap-address "imap.gmail.com")
>           (nnimap-stream ssl)
>           (nnimap-authinfo-file "~/.authinfo")
>
>   You have to do subscribe afterwords as you would any other newsgroup
> ( nnimap:INBOX ) and what ever tags you have defined ( nnimap:my-tag ).
>
>   -- I had no mail-sources defined at the time.
>
>   After testing it out I found it a bit to buggy for my taste, but it
> does work.
>
>   Hope this helps. :-)
>
> -- 
> Guillermo Antonio Amaral Bastidas (gamaral)
>   Free/Libre/Open-Source Software Advocate & KDE Developer
>   http://blog.guillermoamaral.com/



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Gnus+IMAP+Gmail
  2007-11-06 21:28 ` Gnus+IMAP+Gmail Guillermo Antonio Amaral Bastidas
  2007-11-07  8:26   ` Gnus+IMAP+Gmail Shigeki UNO
@ 2007-11-07  8:56   ` Shigeki UNO
  1 sibling, 0 replies; 4+ messages in thread
From: Shigeki UNO @ 2007-11-07  8:56 UTC (permalink / raw)
  To: Guillermo Antonio Amaral Bastidas; +Cc: ding

 Are these labels(Tags?) listed correctly in Group buffer?

Starred/Sent Mail/Spam/Trash

 And the biggest problem I have now is that labels in Japanese
are not listed in Group buffer due to be unable to decode utf7. 

Any hints?

Thanks.
---
Shigeki UNO


me@guillermoamaral.com (Guillermo Antonio Amaral Bastidas) writes:

> shigeki@mediawars.ne.jp (Shigeki UNO) writes:
>
>>  Does anyone use Gnus with Gmail using IMAP successfully?
>> If so, give me a good guidance or example of ".gnus.el"
>> that make it work.
>>
>>  My .gnus.el I set up is the following.
>>
>> (setq gnus-secondary-select-methods '((nnimap "gmail"
>> 					      (nnimap-address "imap.gmail.com")
>> 					      (nnimap-server-port 993)
>> 					     ;(nnimap-authinfo-file "~/.imap-authinfo")
>> 					      (nnimap-stream ssl))))
>>  
>>
>>  After launching Gnus, it connects to imap server of Gmail and asks me
>> both my Gmail account and password. I enter them and it looks OK but 
>> no Gmail labels are shown. Whereas nnml mailboxes in my HDD are listed.
>>
>> What am I wrong???
>>
>> ---
>> Shigeki UNO      
>>
>>
>
>   This worked for me as a secondary select method:
>
>   (nnimap ""
>           (nnimap-address "imap.gmail.com")
>           (nnimap-stream ssl)
>           (nnimap-authinfo-file "~/.authinfo")
>
>   You have to do subscribe afterwords as you would any other newsgroup
> ( nnimap:INBOX ) and what ever tags you have defined ( nnimap:my-tag ).
>
>   -- I had no mail-sources defined at the time.
>
>   After testing it out I found it a bit to buggy for my taste, but it
> does work.
>
>   Hope this helps. :-)
>
> -- 
> Guillermo Antonio Amaral Bastidas (gamaral)
>   Free/Libre/Open-Source Software Advocate & KDE Developer
>   http://blog.guillermoamaral.com/



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-11-07  8:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-11-06 20:37 Gnus+IMAP+Gmail Shigeki UNO
2007-11-06 21:28 ` Gnus+IMAP+Gmail Guillermo Antonio Amaral Bastidas
2007-11-07  8:26   ` Gnus+IMAP+Gmail Shigeki UNO
2007-11-07  8:56   ` Gnus+IMAP+Gmail Shigeki UNO

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).