unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* reading mail from gmail account with gnus in Emacs22
@ 2007-11-04  4:57 Alexandru Cardaniuc
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandru Cardaniuc @ 2007-11-04  4:57 UTC (permalink / raw)
  To: help-gnu-emacs

Hi All!

Does anybody here use gnus from Emacs22 to read mail from gmail
account? I managed to make it work with Emacs21. Recently I tried
Emacs22 and my old config from Emacs21 doesn't work. I get some errors
when fetching from gmail with pop.

Did anybody here manage to make gnus in Emacs22 work with gmail? Any
hints on the configuration of .gnus ?

That's the setup that works fine for Emacs21 but doesn't work for
Emacs22:


-------------------------------------------

(setq user-full-name "Alexandru Cardaniuc")
(setq user-mail-address "whatever@gmail.com")

;; using GNUS to send mail
(setq message-send-mail-function 'smtpmail-send-it)

(setq send-mail-function 'smtpmail-send-it)

;; use 'one file per mail' back end
(setq gnus-select-method '(nnml ""))
(setq gnus-secondary-select-methods nil)

;; tell Gnus how to fetch mail
(setq mail-sources '((file :path "/var/spool/mail/alexandru")
		     (pop :server "pop.gmail.com"
			   :port 995
			   :user "whatever@gmail.com"
			   :connection ssl
			   :password "secret"
			   :leave t))) ; leave the mail on the server

(load-library "smtpmail")
(load-library "pop3")
(load-library "starttls")

;(setq pop3-debug t)

(setq smtpmail-local-domain nil)

;(setq smtpmail-debug-info t) ; only to debug problems

(setq smtpmail-auth-credentials '(("smtp.gmail.com" 25
"whatever@gmail.com" "secret")))
(setq smtpmail-starttls-credentials '(("smtp.gmail.com" 25 nil nil)))
(setq smtpmail-smtp-service "25")

------------------------------------------

-- 
Sincerely yours,
Alexandru Cardaniuc

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

* Re: reading mail from gmail account with gnus in Emacs22
       [not found] <mailman.2950.1194152244.18990.help-gnu-emacs@gnu.org>
@ 2007-11-04  6:14 ` Guillermo Antonio Amaral Bastidas
  2007-11-04 21:32   ` Guillermo Antonio Amaral Bastidas
  2007-11-04 23:45   ` Alexandru Cardaniuc
  0 siblings, 2 replies; 5+ messages in thread
From: Guillermo Antonio Amaral Bastidas @ 2007-11-04  6:14 UTC (permalink / raw)
  To: help-gnu-emacs


[-- Attachment #1.1: Type: text/plain, Size: 710 bytes --]

"Alexandru Cardaniuc" <cardaniuc@gmail.com> writes:
>
> Does anybody here use gnus from Emacs22 to read mail from gmail
> account? I managed to make it work with Emacs21. Recently I tried
> Emacs22 and my old config from Emacs21 doesn't work. I get some errors
> when fetching from gmail with pop.
>

  I got the new IMAP working, I am not sure if the POP3 + SSL works.

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


  IMAP Google works great by the way.

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

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

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

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

* Re: reading mail from gmail account with gnus in Emacs22
  2007-11-04  6:14 ` Guillermo Antonio Amaral Bastidas
@ 2007-11-04 21:32   ` Guillermo Antonio Amaral Bastidas
  2007-11-04 23:48     ` Alexandru Cardaniuc
  2007-11-04 23:45   ` Alexandru Cardaniuc
  1 sibling, 1 reply; 5+ messages in thread
From: Guillermo Antonio Amaral Bastidas @ 2007-11-04 21:32 UTC (permalink / raw)
  To: help-gnu-emacs


[-- Attachment #1.1: Type: text/plain, Size: 1130 bytes --]

me@guillermoamaral.com (Guillermo Antonio Amaral Bastidas) writes:
>
>   I got the new IMAP working, I am not sure if the POP3 + SSL works.
>
>   (nnimap ""
>           (nnimap-address "imap.gmail.com")
>           (nnimap-stream ssl)
>           (nnimap-authinfo-file "~/.authinfo")
>
>
>   IMAP Google works great by the way.

  POP3+SSL work fine ( running Gnus/5.110007 CVS (No Gnus v0.7)
under Emacs/23.0.60 CVS (gnu/linux) )

-------------------------------------------------
(eval-after-load "mail-source" '(require 'pop3))
(setq mail-sources                                   
      '((pop :server "pop.gmail.com"
             :port 995
             :user "YOUR_USERNAME_HERE"
             :connection ssl
             :leave t
             :password "YOUR_PASSWORD_HERE")))
-------------------------------------------------

  I did notice that the pop source had to be first in order for it to
work ( I'm sure you could adjust that somewhere )

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

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

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

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

* Re: reading mail from gmail account with gnus in Emacs22
  2007-11-04  6:14 ` Guillermo Antonio Amaral Bastidas
  2007-11-04 21:32   ` Guillermo Antonio Amaral Bastidas
@ 2007-11-04 23:45   ` Alexandru Cardaniuc
  1 sibling, 0 replies; 5+ messages in thread
From: Alexandru Cardaniuc @ 2007-11-04 23:45 UTC (permalink / raw)
  To: help-gnu-emacs

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

> "Alexandru Cardaniuc" <cardaniuc@gmail.com> writes:
>>
>> Does anybody here use gnus from Emacs22 to read mail from gmail
>> account? I managed to make it work with Emacs21. Recently I tried
>> Emacs22 and my old config from Emacs21 doesn't work. I get some errors
>> when fetching from gmail with pop.
>>
>
>   I got the new IMAP working, I am not sure if the POP3 + SSL works.
>
>   (nnimap ""
>           (nnimap-address "imap.gmail.com")
>           (nnimap-stream ssl)
>           (nnimap-authinfo-file "~/.authinfo")
>
>
>   IMAP Google works great by the way.

That didn't work for me either, but I made the imap in mail-sources
work! Now, my mail works again, imap behaves exactly like pop in this
regard. 

(setq mail-sources '((file :path "/var/spool/mail/alexandru")
		     (imap :server "imap.gmail.com"
		           :port 993
			   :user "whatever@gmail.com"
			   :password "secret"
			   :stream ssl)))




-- 
"Every problem that I solved became a rule which served afterwards to
solve other problems."  
- Descartes

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

* Re: reading mail from gmail account with gnus in Emacs22
  2007-11-04 21:32   ` Guillermo Antonio Amaral Bastidas
@ 2007-11-04 23:48     ` Alexandru Cardaniuc
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandru Cardaniuc @ 2007-11-04 23:48 UTC (permalink / raw)
  To: help-gnu-emacs

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

> me@guillermoamaral.com (Guillermo Antonio Amaral Bastidas) writes:
>>
>>   I got the new IMAP working, I am not sure if the POP3 + SSL works.
>>
>>   (nnimap ""
>>           (nnimap-address "imap.gmail.com")
>>           (nnimap-stream ssl)
>>           (nnimap-authinfo-file "~/.authinfo")
>>
>>
>>   IMAP Google works great by the way.
>
>   POP3+SSL work fine ( running Gnus/5.110007 CVS (No Gnus v0.7)
> under Emacs/23.0.60 CVS (gnu/linux) )
>
> -------------------------------------------------
> (eval-after-load "mail-source" '(require 'pop3))
> (setq mail-sources                                   
>       '((pop :server "pop.gmail.com"
>              :port 995
>              :user "YOUR_USERNAME_HERE"
>              :connection ssl
>              :leave t
>              :password "YOUR_PASSWORD_HERE")))
> -------------------------------------------------
>
>   I did notice that the pop source had to be first in order for it to
> work ( I'm sure you could adjust that somewhere )

That didn't work for me either! I get stringp error. I use the stable
version of Emacs 22 that is included in Debian Testing distribution. May
be it has some bugs in pop.el that were solved in cvs ?

But I am happy that it works at least somehow now.

-- 
"Every problem that I solved became a rule which served afterwards to
solve other problems."  
- Descartes

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

end of thread, other threads:[~2007-11-04 23:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-04  4:57 reading mail from gmail account with gnus in Emacs22 Alexandru Cardaniuc
     [not found] <mailman.2950.1194152244.18990.help-gnu-emacs@gnu.org>
2007-11-04  6:14 ` Guillermo Antonio Amaral Bastidas
2007-11-04 21:32   ` Guillermo Antonio Amaral Bastidas
2007-11-04 23:48     ` Alexandru Cardaniuc
2007-11-04 23:45   ` Alexandru Cardaniuc

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 read-only IMAP folder(s) and NNTP newsgroup(s).