>>>>> Francis Moreau wrote: > Today I got the following message when posting an article to any news > group:
> ,---- >| Really use this possibly unknown group: gnu.emacs.gnus? (y/n) > `---- > Answering yes get the article to be sent. > I don't how this happen. The last change I did in my gnus is to change > the news server I'm using for posting articles. I did the following > change: > (setq gnus-post-method '(nntp "news.aioe.org")) > Could anybody tell me why I'm getting this message and how to get rid > of it ? That warning is issued when the newsgroup has not been subscribed to using the `gnus-post-method' server. So, Gnus doesn't know the newsgroup exists in the server, and warns it to a user. You can make it silent by modifying the `message-syntax-checks' variable as follows: (add-to-list 'message-syntax-checks '(existing-newsgroups . disabled)) Cf. (info "(message)News Headers") I'm not sure it is a good way though since the newsgroup might really not exist in the post-method server. I think the best way is to leave `gnus-post-method' the default (i.e. `current'). Regards, _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
