<[email protected]> writes:

> I'd like to manage more than only one email account 
> with my Gnus-Emacs mail-client. 
>
> Have you an idea how I have to modify my .emacs file? 

> P.S.

> A part of my present configuration:

> ;;;;;;;;;;;;;;;;;;;;;;;;;;
> ;;; GNUS Mail POP
> ;;;;;;;;;;;;;;;;;;;;;;;;;;


> (setq nnmail-pop-password-required t)
> (setq mail-sources '((pop :server "XX.XXX.XXX"
> :user "[email protected]"
> :password "XXXXXX")))


Well looking over the docs it seems to me that this should work: ie just
slap your pop servers into the mail-sources list


 (setq mail-sources '(

 (pop :server "XX.XXX.XXX"
 :user "[email protected]"
 :password "XXXXXX")


(pop :server "YY.YYY.YYY"
 :user "[email protected]"
 :password "YYYYYYYY")  

(pop :server "ZZ.ZZZ.ZZZ"
 :user "[email protected]"
 :password "ZZZZZZZZ")  ))


I say "should work" because I've never had  a reason to try it :-)


As far as sending goes, you should be ok.



> ;;;;;;;;;;;;;;;;;;;;;;;;;;
> ;;; GNUS Mail SMTP
> ;;;;;;;;;;;;;;;;;;;;;;;;;;

> (require 'sendmail)
> (setq message-send-mail-function 'smtpmail-send-it)
> (setq smtpmail-smtp-service 25)
> (setq smtpmail-debug-info t)
> (setq smtpmail-default-smtp-server "XXXXXX")



atb

Glyn



_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to