Re: [PHP] PHP with NNTP?

2008-04-17 Thread Per Jessen
vester_s wrote: I need to get the list for all of the people that subscribing to this newsreader, this list will be used to modify the other mailing list programs. Basically by getting the list of the people that subscribing on this newsgroup, then i could migrate it to our new forum

Re: [PHP] PHP with NNTP?

2008-04-17 Thread Stut
On 16 Apr 2008, at 23:50, vester_s wrote: I need to get the list for all of the people that subscribing to this newsreader, this list will be used to modify the other mailing list programs. Basically by getting the list of the people that subscribing on this newsgroup, then i could migrate it

Re: [PHP] PHP with NNTP?

2008-04-16 Thread Per Jessen
vester_s wrote: Hi, Can anybody tell me how can php connect to NNTP to get the list of all users in the newsgroups? I'm not sure about getting all the users, but you could create a connection using plain socket programming. NNTP is a pretty simple protocol. /Per Jessen, Zürich --

Re: [PHP] PHP with NNTP?

2008-04-16 Thread Chris
vester_s wrote: Hi, Can anybody tell me how can php connect to NNTP to get the list of all users in the newsgroups? http://php.net/imap supports nntp. -- Postgresql php tutorials http://www.designmagick.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP with NNTP?

2008-04-16 Thread Crayon Shin Chan
On Wednesday 16 April 2008, vester_s wrote: Can anybody tell me how can php connect to NNTP to get the list of all users in the newsgroups? NNTP has no concept of users. -- Crayon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP with NNTP?

2008-04-16 Thread vester_s
Is it possible to do it without using imap? I am trying to get the list of all users that is on the newsgroup, is that possible? chris smith-9 wrote: vester_s wrote: Hi, Can anybody tell me how can php connect to NNTP to get the list of all users in the newsgroups?

Re: [PHP] PHP with NNTP?

2008-04-16 Thread Daniel Brown
On Wed, Apr 16, 2008 at 3:38 AM, Crayon Shin Chan [EMAIL PROTECTED] wrote: On Wednesday 16 April 2008, vester_s wrote: Can anybody tell me how can php connect to NNTP to get the list of all users in the newsgroups? NNTP has no concept of users. Crayon is right. Authentication

Re: [PHP] PHP with NNTP?

2008-04-16 Thread Per Jessen
Daniel Brown wrote: On Wed, Apr 16, 2008 at 3:38 AM, Crayon Shin Chan [EMAIL PROTECTED] wrote: On Wednesday 16 April 2008, vester_s wrote: Can anybody tell me how can php connect to NNTP to get the list of all users in the newsgroups? NNTP has no concept of users. Crayon is

Re: [PHP] PHP with NNTP?

2008-04-16 Thread Daniel Brown
On Wed, Apr 16, 2008 at 2:42 PM, Per Jessen [EMAIL PROTECTED] wrote: If required, authentication is done via NNTP. The nntp servers can be set up to require authentication for some or more groups, for instance for closed user communities. If you check your newsreader, you'll no doubt

Re: [PHP] PHP with NNTP?

2008-04-16 Thread Per Jessen
Daniel Brown wrote: On Wed, Apr 16, 2008 at 2:42 PM, Per Jessen [EMAIL PROTECTED] wrote: If required, authentication is done via NNTP. The nntp servers can be set up to require authentication for some or more groups, for instance for closed user communities. If you check your

Re: [PHP] PHP with NNTP?

2008-04-16 Thread Daniel Brown
On Wed, Apr 16, 2008 at 3:27 PM, Per Jessen [EMAIL PROTECTED] wrote: Well, NNTP (the protocol) certainly has a userid/password concept, and so does e.g. INN, the news-server I'm using. I'm sure INN _could_ use a PAM-module for interfacing Linux access control, but the straight forward

Re: [PHP] PHP with NNTP?

2008-04-16 Thread Stut
On 16 Apr 2008, at 18:01, vester_s wrote: Is it possible to do it without using imap? I am trying to get the list of all users that is on the newsgroup, is that possible? I'm wondering what possible legitimate reason you could have for wanting that list? There is a way to get it (it's

Re: [PHP] PHP with NNTP?

2008-04-16 Thread vester_s
I need to get the list for all of the people that subscribing to this newsreader, this list will be used to modify the other mailing list programs. Basically by getting the list of the people that subscribing on this newsgroup, then i could migrate it to our new forum based. So is it possible