Emacs + Gnus: problème nntp

Bonjour à tous !

Vu qu’aucune réponse ne m’a été adressée, j’ai donc modifié le post en essayant de donner un max d’infos…

La question est plus bas

Bon, j’ai donc installé Gnus avec fetchmail et procmail.

Mais ça n’a pas l’air de fonctionner.

Voici mon .emacs:

[code];; Definit Gnus comme lecteur courriel
(custom-set-variables
’(read-mail-command (quote gnus))
’(message-directory “~/.Mail/”))

;; Definit Iceweasel comme navigateur web, pour suivre les liens
(setq browse-url-browser-function 'browse-url-generic
browse-url-generic-program “iceweasel”)[/code]

Le .procmailrc:

[code]PATH=/usr/bin:/bin:/usr/local/bin:.
MAILDIR=$HOME/.mail-gnus # You’d better make sure it exists
DEFAULT=$MAILDIR/inbox
LOGFILE=$HOME/.from_procmail
LOCKFILE=$HOME/.lockmail

Tous les courriers iront dans $DEFAULT, c’est-à-dire inbox.[/code]

Puis le .fetchmailrc:

[code]# Général
set syslog
set bouncemail
set no spambounce
set properties “”

Chaque compte sur chaque serveur

poll mail.voo.be with proto POP3
user ‘vonstorm@xxx.yy’ there with password ‘pppppppppp’ is ‘vonstorm@LENNY’ here[/code]

Le .gnus:

[code]
;; GENERAL
;;

(setq
gnus-secondary-select-methods '((nnml “”))
mail-sources '((directory :path “/home/vonstorm/Mail/”
:suffix “.spool”))
gnus-permanently-visible-groups “^nnml:”
)

;; PAS DE CACHE, DECLARE LEAFNODE EN TANT QUE SERVEUR NNTP
;; http://sebastien.kirche.free.fr/emacs_stuff/gnus.html
;;(setq gnus-agent nil
;; gnus-agent-cache nil
;; mail-source-delete-incoming t ;; delete temporary incoming mail
;; gnus-nntp-server “localhost”)

;; ARCHIVES: UN RÉPERTOIRE PAR MOIS
;; toggle Gcc header (bind this to a key in message-mode)
;; http://gnus.org/manual/gnus_138.html
(setq gnus-message-archive-group
’((if (message-news-p)
(concat “nnml:gposted.” (format-time-string “%Y”) “.news-”
(format-time-string “%m-%B-%Y”))
(concat “nnml:gposted.” (format-time-string “%Y”) “.mails-”
(format-time-string “%m-%B-%Y”))
))
)
;; doesn’t keep the attachments.
(setq gnus-gcc-externalize-attachments t)

;; IDENTITE
;; user identity
(setq user-full-name "vonstorm"
user-mail-address "vonstorm@xxx.yy"
user-mail-organization "something"
mail-user-agent (quote message-user-agent))

;; Gérer l’affichage des groupes
;; use a hierarchy and topics
(add-hook 'gnus-group-mode-hook 'gnus-topic-mode)

;; font format
;; http://www.delorie.com/gnu/docs/emacs/gnus_243.html
(setq gnus-face-1 'bold) ;subject
(setq gnus-face-2 'italic) ;from

;; group layout
(setq
gnus-topic-line-format “%i[ %(%n%): %g – %A ]%v\n"
gnus-group-line-format
”%M%m %4N/%4t non-lus: %(%-30,30g%) le %2,2~(cut 6)
d/%2,2~(cut 4)d à %2,2~(cut 9)dh%2,2~(cut 11)d\n"
gnus-summary-same-subject "-"
gnus-group-mode-line-format "Gnus: {%M%:%S}"
gnus-summary-mode-line-format "%V: %%b"
gnus-summary-same-subject " suite"
gnus-group-mode-line-format "Gnus: {%M%:%S}"
gnus-auto-select-first t ; select nothing on entering summary buffer
gnus-auto-select-subject 'first ; point on subject of first unread
gnus-article-time-format “%a, %d %b %Y %T %Z”
)

;; Gérer le html
(setq mm-discouraged-alternatives '(“text/html” “text/richtext”))
(setq mm-text-html-renderer `lynx)
(setq mm-discouraged-alternatives '(“text/html” “text/richtext”)
mm-text-html-renderer 'lynx)

;;(setcdr (assoc 'lynx mm-text-html-renderer-alist)
;; '(mm-inline-render-with-stdin nil “lynx” “-dump” “-force-html” “-stdin”))[/code]

Et le .forward:

Vu le nombre fichiers de config, je sais pas trop où ça foire…

Le résultat est que, quand je lance emacs-nox et que je fais un M-x gnus, j’obtiens le message Unable to open nntp:news, go offline ?

Mais je ne veux l’utiliser que comme client mail moi… :frowning:

Une idée ?