This file is indexed.

/usr/share/popfile/Proxy/NNTP.pm is in popfile 1.1.3+dfsg-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
# POPFILE LOADABLE MODULE
package Proxy::NNTP;

use Proxy::Proxy;
@ISA = ("Proxy::Proxy");

# ----------------------------------------------------------------------------
#
# This module handles proxying the NNTP protocol for POPFile.
#
# Copyright (c) 2001-2011 John Graham-Cumming
#
#   This file is part of POPFile
#
#   POPFile is free software; you can redistribute it and/or modify it
#   under the terms of version 2 of the GNU General Public License as
#   published by the Free Software Foundation.
#
#   POPFile is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with POPFile; if not, write to the Free Software
#   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#   Modified by     Sam Schinke (sschinke@users.sourceforge.net)
#
# ----------------------------------------------------------------------------

use strict;
use warnings;
use locale;

# A handy variable containing the value of an EOL for networks

my $eol = "\015\012";

#----------------------------------------------------------------------------
# new
#
#   Class new() function
#----------------------------------------------------------------------------
sub new
{
    my $type = shift;
    my $self = Proxy::Proxy->new();

    # Must call bless before attempting to call any methods

    bless $self, $type;

    $self->name( 'nntp' );

    $self->{child_} = \&child__;
    $self->{connection_timeout_error_} = '500 no response from mail server';
    $self->{connection_failed_error_}  = '500 can\'t connect to';
    $self->{good_response_}            = '^(1|2|3)\d\d';

    return $self;
}

# ----------------------------------------------------------------------------
#
# initialize
#
# Called to initialize the NNTP proxy module
#
# ----------------------------------------------------------------------------
sub initialize
{
    my ( $self ) = @_;

    # Disabled by default

    $self->config_( 'enabled', 0 );

    # By default we don't fork on Windows

    $self->config_( 'force_fork', ($^O eq 'MSWin32')?0:1 );

    # Default ports for NNTP service and the user interface

    $self->config_( 'port', 119 );

    # Only accept connections from the local machine for NNTP

    $self->config_( 'local', 1 );

    # Whether to do classification on HEAD as well

    $self->config_( 'headtoo', 0 );

    # The separator within the NNTP user name is :

    $self->config_( 'separator', ':');

    # The welcome string from the proxy is configurable

    $self->config_( 'welcome_string',                      # PROFILE BLOCK START
        "NNTP POPFile ($self->{version_}) server ready" ); # PROFILE BLOCK STOP

    if ( !$self->SUPER::initialize() ) {
        return 0;
    }

    $self->config_( 'enabled', 0 );

    return 1;
}

# ----------------------------------------------------------------------------
#
# start
#
# Called to start the NNTP proxy module
#
# ----------------------------------------------------------------------------
sub start
{
    my ( $self ) = @_;

    # If we are not enabled then no further work happens in this module

    if ( $self->config_( 'enabled' ) == 0 ) {
        return 2;
    }

    # Tell the user interface module that we having a configuration
    # item that needs a UI component

    $self->register_configuration_item_( 'configuration',  # PROFILE BLOCK START
                                         'nntp_port',
                                         'nntp-port.thtml',
                                         $self );          # PROFILE BLOCK STOP

    $self->register_configuration_item_( 'configuration',  # PROFILE BLOCK START
                                         'nntp_force_fork',
                                         'nntp-force-fork.thtml',
                                         $self );          # PROFILE BLOCK STOP

    $self->register_configuration_item_( 'configuration',  # PROFILE BLOCK START
                                         'nntp_separator',
                                         'nntp-separator.thtml',
                                         $self );          # PROFILE BLOCK STOP

    $self->register_configuration_item_( 'security',       # PROFILE BLOCK START
                                         'nntp_local',
                                         'nntp-security-local.thtml',
                                         $self );          # PROFILE BLOCK STOP

    if ( $self->config_( 'welcome_string' ) =~                # PROFILE BLOCK START
         /^NNTP POPFile \(v\d+\.\d+\.\d+\) server ready$/ ) { # PROFILE BLOCK STOP
        $self->config_( 'welcome_string',                                  # PROFILE BLOCK START
                        "NNTP POPFile ($self->{version_}) server ready" ); # PROFILE BLOCK STOP
    }

    return $self->SUPER::start();;
}

# ----------------------------------------------------------------------------
#
# child__
#
# The worker method that is called when we get a good connection from a client
#
# $client   - an open stream to a NNTP client
# $session        - API session key
#
# ----------------------------------------------------------------------------
sub child__
{
    my ( $self, $client, $session ) = @_;

    # Hash of indexes of downloaded messages mapped to their
    # slot IDs

    my %downloaded;

    # The handle to the real news server gets stored here

    my $news;

    # The state of the connection (username needed, password needed,
    # authenticated/connected)

    my $connection_state = 'username needed';

    # Tell the client that we are ready for commands and identify our
    # version number

    $self->tee_( $client, "201 " . $self->config_( 'welcome_string' ) .  # PROFILE BLOCK START
                          "$eol" );                                      # PROFILE BLOCK STOP

    # Retrieve commands from the client and process them until the
    # client disconnects or we get a specific QUIT command

    while  ( <$client> ) {
        my $command;
        my ( $response, $ok );

        $command = $_;

        # Clean up the command so that it has a nice clean $eol at the end

        $command =~ s/(\015|\012)//g;

        $self->log_( 2, "Command: --$command--" );

        # The news client wants to stop using the server, so send that
        # message through to the real news server, echo the response
        # back up to the client and exit the while.  We will close the
        # connection immediately

        if ( $command =~ /^ *QUIT/i ) {
            if ( $news )  {
                last if ( $self->echo_response_( $news, $client, $command ) ==  # PROFILE BLOCK START
                          2 );                                                  # PROFILE BLOCK STOP
                close $news;
            } else {
                $self->tee_( $client, "205 goodbye$eol" );
            }
            last;
        }

        if ( $connection_state eq 'username needed' ) {

            # NOTE: This syntax is ambiguous if the NNTP username is a
            # short (under 5 digit) string (eg, 32123).  If this is
            # the case, run "perl popfile.pl -nntp_separator /" and
            # change your kludged username appropriately (syntax would
            # then be server[:port][/username])

            my $separator = $self->config_( 'separator' );
            my $user_command = "^ *AUTHINFO USER ([^:]+)(:([\\d]{1,5}))?(\Q$separator\E(.+))?";

            if ( $command =~ /$user_command/i ) {
                my $server = $1;

                # hey, the port has to be in range at least

                my $port = $3 if ( defined($3) && ($3 > 0) && ($3 < 65536) );
                my $username = $5;

                if ( $server ne '' )  {
                    if ( $news = $self->verify_connected_( $news, $client,    # PROFILE BLOCK START
                                                           $server,
                                                           $port || 119 ) ) { # PROFILE BLOCK STOP
                        if ( defined $username ) {

                            # Pass through the AUTHINFO command with
                            # the actual user name for this server, if
                            # one is defined, and send the reply
                            # straight to the client

                            $self->get_response_( $news, $client,  # PROFILE BLOCK START
                                                  'AUTHINFO USER ' .
                                                  $username );     # PROFILE BLOCK STOP
                            $connection_state = "password needed";
                        } else {

                            # Signal to the client to send the password

                            $self->tee_($client, "381 password$eol");
                            $connection_state = "ignore password";
                        }
                    } else {
                        last;
                    }
                } else {
                    $self->tee_( $client,                                                                       # PROFILE BLOCK START
                        "482 Authentication rejected server name not specified in AUTHINFO USER command$eol" ); # PROFILE BLOCK STOP
                    last;
                }

                $self->flush_extra_( $news, $client, 0 );
            } else {

                # Issue a 480 authentication required response

                $self->tee_( $client, "480 Authorization required for this command$eol" );
            }
            next;
        }

        if ( $connection_state eq "password needed" ) {
            if ( $command =~ /^ *AUTHINFO PASS (.*)/i ) {
                ( $response, $ok ) =                                 # PROFILE BLOCK START
                    $self->get_response_( $news, $client, $command ); # PROFILE BLOCK STOP

                if ( $response =~ /^281 .*/ ) {
                    $connection_state = "connected";
                }
            } else {

                # Issue a 381 more authentication required response

                $self->tee_( $client, "381 more authentication required for this command$eol" );
            }
            next;
        }

        if ( $connection_state eq "ignore password" ) {
            if ( $command =~ /^ *AUTHINFO PASS (.*)/i ) {
                $self->tee_( $client, "281 authentication accepted$eol" );
                $connection_state = "connected";
            } else {

                # Issue a 480 authentication required response

                $self->tee_( $client, "381 more authentication required for this command$eol" );
            }
            next;
        }

        if ( $connection_state eq "connected" ) {
            my $message_id;

            # COMMANDS USED DIRECTLY WITH THE REMOTE NNTP SERVER GO HERE

            # The client wants to retrieve an article. We oblige, and
            # insert classification headers.

            if ( $command =~ /^ *ARTICLE ?(.*)?/i ) {
                my $file;

                if ( $1 =~ /^\d*$/ ) {
                    ( $message_id, $response ) =                            # PROFILE BLOCK START
                        $self->get_message_id_( $news, $client, $command ); # PROFILE BLOCK STOP
                    if ( !defined( $message_id ) ) {
                        $self->tee_( $client, $response );
                        next;
                    }
                } else {
                    $message_id = $1;
                }

                if ( defined($downloaded{$message_id}) &&  # PROFILE BLOCK START
                     ( $file = $self->{history__}->get_slot_file(
                            $downloaded{$message_id}{slot} ) ) &&
                     ( open RETRFILE, "<$file" ) ) {       # PROFILE BLOCK STOP

                    # Act like a network stream

                    binmode RETRFILE;

                    # File has been fetched and classified already

                    $self->log_( 1, "Printing message from cache" );

                    # Give the client 220 (ok)

                    $self->tee_( $client, "220 0 $message_id$eol" );

                    # Echo file, inserting known classification,
                    # without saving

                    ( my $class, undef ) =                          # PROFILE BLOCK START
                        $self->{classifier__}->classify_and_modify(
                            $session, \*RETRFILE, $client, 1,
                            $downloaded{$message_id}{class},
                            $downloaded{$message_id}{slot} );       # PROFILE BLOCK STOP
                    print $client ".$eol";

                    close RETRFILE;
                } else {

                    ( $response, $ok ) =                                  # PROFILE BLOCK START
                        $self->get_response_( $news, $client, $command ); # PROFILE BLOCK STOP
                    if ( $response =~ /^220 +(\d+) +([^ \015]+)/i ) {
                        $message_id = $2;

                        my ( $class, $history_file ) =                  # PROFILE BLOCK START
                            $self->{classifier__}->classify_and_modify(
                                $session, $news, $client, 0, '', 0 );   # PROFILE BLOCK STOP

                        $downloaded{$message_id}{slot}  = $history_file;
                        $downloaded{$message_id}{class} = $class;
                    }
                }

                next;
            }

            if ( $command =~ /^ *HEAD ?(.*)?/i ) {
                if ( $1 =~ /^\d*$/ ) {
                    ( $message_id, $response ) =                            # PROFILE BLOCK START
                        $self->get_message_id_( $news, $client, $command ); # PROFILE BLOCK STOP
                    if ( !defined( $message_id ) ) {
                        $self->tee_( $client, $response );
                        next;
                    }
                } else {
                    $message_id = $1;
                }

                if ( $self->config_( 'headtoo' ) ) {
                    my ( $class, $history_file );
                    my $cached = 0;

                    if ( defined($downloaded{$message_id}) ) {
                        # Already cached

                        $cached = 1;
                        $class = $downloaded{$message_id}{class};
                        $history_file = $downloaded{$message_id}{slot};
                    } else {

                        # Send ARTICLE command to server

                        my $article_command = $command;
                        $article_command =~ s/^ *HEAD/ARTICLE/i;
                        ( $response, $ok ) =                             # PROFILE BLOCK START
                            $self->get_response_( $news, $client,
                                                  $article_command, 0, 1 ); # PROFILE BLOCK STOP
                        if ( $response =~ /^220 +(\d+) +([^ \015]+)/i ) {
                            $message_id = $2;
                            $response =~ s/^220/221/;
                            $self->tee_( $client, "$response" );

                            # Classify without sending to client

                            ( $class, $history_file ) =                     # PROFILE BLOCK START
                                $self->{classifier__}->classify_and_modify(
                                    $session, $news, undef, 0, '', 0, 0 );  # PROFILE BLOCK STOP

                            $downloaded{$message_id}{slot}  = $history_file;
                            $downloaded{$message_id}{class} = $class;
                        } else {
                            $self->tee_( $client, "$response" );
                            next;
                        }
                    }

                    # Send header to client from server

                    ( $response, $ok ) =                                # PROFILE BLOCK START
                        $self->get_response_( $news, $client, $command,
                                              0, ( $cached ? 0 : 1 ) ); # PROFILE BLOCK STOP
                    if ( $response =~ /^221 +(\d+) +([^ ]+)/i ) {
                        $self->{classifier__}->classify_and_modify(  # PROFILE BLOCK START
                            $session, $news, $client, 1, $class,
                            $history_file, 1 );                      # PROFILE BLOCK STOP
                    }
                    next;
                }
            }

            if ( $command =~ /^ *BODY ?(.*)?/i ) {
                my $file;

                if ( $1 =~ /^\d*$/ ) {
                    ( $message_id, $response ) =                            # PROFILE BLOCK START
                        $self->get_message_id_( $news, $client, $command ); # PROFILE BLOCK STOP
                    if ( !defined( $message_id ) ) {
                        $self->tee_( $client, $response );
                        next;
                    }
                } else {
                    $message_id = $1;
                }

                if ( defined($downloaded{$message_id}) &&  # PROFILE BLOCK START
                     ( $file = $self->{history__}->get_slot_file(
                            $downloaded{$message_id}{slot} ) ) &&
                     ( open RETRFILE, "<$file" ) ) {       # PROFILE BLOCK STOP
                    
                    # Act like a network stream

                    binmode RETRFILE;

                    # File has been fetched and classified already

                    $self->log_( 1, "Printing message from cache" );

                    # Give the client 222 (ok)

                    $self->tee_( $client, "222 0 $message_id$eol" );

                    # Skip header

                    while ( my $line = $self->slurp_( \*RETRFILE ) ) {
                        last if ( $line =~ /^[\015\012]+$/ );
                    }

                    # Echo file to client

                    $self->echo_to_dot_( \*RETRFILE, $client );
                    print $client ".$eol";

                    close RETRFILE;
                } else {
                    # Send ARTICLE command to server

                    my $article_command = $command;
                    $article_command =~ s/^ *BODY/ARTICLE/i;
                    ( $response, $ok ) =                                        # PROFILE BLOCK START
                        $self->get_response_( $news, $client, $article_command,
                                              0, 1 );                           # PROFILE BLOCK STOP
                    if ( $response =~ /^220 +(\d+) +([^ \015]+)/i ) {
                        $message_id = $2;
                        $response =~ s/^220/222/;
                        $self->tee_( $client, "$response" );

                        # Classify without sending to client

                        my ( $class, $history_file ) =                  # PROFILE BLOCK START
                            $self->{classifier__}->classify_and_modify(
                                $session, $news, undef, 0, '', 0, 0 );  # PROFILE BLOCK STOP

                        $downloaded{$message_id}{slot}  = $history_file;
                        $downloaded{$message_id}{class} = $class;

                        # Send body to client from server

                        ( $response, $ok ) =                                # PROFILE BLOCK START
                            $self->get_response_( $news, $client, $command,
                                                  0, 1 );                   # PROFILE BLOCK STOP
                        if ( $response =~ /^222 +(\d+) +([^ ]+)/i ) {
                            $self->echo_to_dot_( $news, $client, 0 );
                        }
                    } else {
                        $self->tee_( $client, "$response" );
                    }
                }
                next;
            }

            # Commands expecting a code + text response

            if ( $command =~                                 # PROFILE BLOCK START
                /^[ ]*(LIST|HEAD|NEWGROUPS|NEWNEWS|LISTGROUP|XGTITLE|XINDEX|XHDR|
                     XOVER|XPAT|XROVER|XTHREAD)/ix ) {       # PROFILE BLOCK STOP
                ( $response, $ok ) =                                  # PROFILE BLOCK START
                    $self->get_response_( $news, $client, $command ); # PROFILE BLOCK STOP

                # 2xx (200) series response indicates multi-line text
                # follows to .crlf

                if ( $response =~ /^2\d\d/ ) {
                    $self->echo_to_dot_( $news, $client, 0 );
                }
                next;
            }

            # Exceptions to 200 code above

            if ( $ command =~ /^ *(HELP)/i ) {
                ( $response, $ok ) =                                  # PROFILE BLOCK START
                    $self->get_response_( $news, $client, $command ); # PROFILE BLOCK STOP
                if ( $response =~ /^1\d\d/ ) {
                    $self->echo_to_dot_( $news, $client, 0 );
                }
                next;
            }

            # Commands expecting a single-line response

            if ( $command =~                                            # PROFILE BLOCK START
                /^ *(GROUP|STAT|IHAVE|LAST|NEXT|SLAVE|MODE|XPATH)/i ) { # PROFILE BLOCK STOP
                $self->get_response_( $news, $client, $command );
                next;
            }

            # Commands followed by multi-line client response

            if ( $command =~ /^ *(IHAVE|POST|XRELPIC)/i ) {
                ( $response, $ok ) =                                  # PROFILE BLOCK START
                    $self->get_response_( $news, $client, $command ); # PROFILE BLOCK STOP

                # 3xx (300) series response indicates multi-line text
                # should be sent, up to .crlf

                if ( $response =~ /^3\d\d/ ) {

                    # Echo from the client to the server

                    $self->echo_to_dot_( $client, $news, 0 );

                    # Echo to dot doesn't provoke a server response
                    # somehow, we add another CRLF

                    $self->get_response_( $news, $client, "$eol" );
                } else {
                    $self->tee_( $client, $response );
                }
                next;
            }
        }

        # Commands we expect no response to, such as the null command

        if ( $ command =~ /^ *$/ ) {
            if ( $news && $news->connected ) {
                $self->get_response_( $news, $client, $command, 1 );
                next;
            }
        }

        # Don't know what this is so let's just pass it through and
        # hope for the best

        if ( $news && $news->connected )  {
            $self->echo_response_( $news, $client, $command );
            next;
        } else {
            $self->tee_(  $client, "500 unknown command or bad syntax$eol" );
            last;
        }
    }

    if ( defined( $news ) ) {
        $self->done_slurp_( $news );
        close $news;
    }
    close $client;
    $self->mq_post_( 'CMPLT', $$ );
    $self->log_( 0, "NNTP proxy done" );
}

# ----------------------------------------------------------------------------
#
# configure_item
#
#    $name            Name of this item
#    $templ           The loaded template that was passed as a parameter
#                     when registering
#    $language        Current language
#
# ----------------------------------------------------------------------------

sub configure_item
{
    my ( $self, $name, $templ, $language ) = @_;

    if ( $name eq 'nntp_port' ) {
        $templ->param( 'nntp_port' => $self->config_( 'port' ) );
        return;
    }

    # Separator Character widget
    if ( $name eq 'nntp_separator' ) {
        $templ->param( 'nntp_separator' => $self->config_( 'separator' ) );
        return;
    }

    if ( $name eq 'nntp_local' ) {
        $templ->param( 'nntp_if_local' => $self->config_( 'local' ) );
        return;
    }

    if ( $name eq 'nntp_force_fork' ) {
        $templ->param( 'nntp_force_fork_on' => $self->config_( 'force_fork' ) );
        return;
    }

    $self->SUPER::configure_item( $name, $templ, $language );
}

# ----------------------------------------------------------------------------
#
# validate_item
#
#    $name            The name of the item being configured, was passed in by
#                     the call to register_configuration_item
#    $templ           The loaded template
#    $language        The language currently in use
#    $form            Hash containing all form items
#
# ----------------------------------------------------------------------------

sub validate_item
{
    my ( $self, $name, $templ, $language, $form ) = @_;

    if ( $name eq 'nntp_port' ) {
        if ( defined $$form{nntp_port} ) {
            if ( ( $$form{nntp_port} =~ /^\d+$/ ) &&   # PROFILE BLOCK START
                 ( $$form{nntp_port} >= 1 ) &&
                 ( $$form{nntp_port} <= 65535 ) ) {    # PROFILE BLOCK STOP
                $self->config_( 'port', $$form{nntp_port} );
                $templ->param( 'nntp_port_feedback' => sprintf $$language{Configuration_NNTPUpdate}, $self->config_( 'port' ) );
            } 
            else {
                $templ->param( 'nntp_port_feedback' => "<div class=\"error01\">$$language{Configuration_Error3}</div>" );
            }
        }
        return;
    }

    if ( $name eq 'nntp_separator' ) {
        if ( defined $$form{nntp_separator} ) {
            if ( length($$form{nntp_separator}) == 1 ) {
                $self->config_( 'separator', $$form{nntp_separator} );
                $templ->param( 'nntp_separator_feedback' => sprintf $$language{Configuration_NNTPSepUpdate}, $self->config_( 'separator' ) );
            } 
            else {
                $templ->param( 'nntp_separator_feedback' => "<div class=\"error01\">\n$$language{Configuration_Error1}</div>\n" );
            }
        }
        return;
    }

    if ( $name eq 'nntp_local' ) {
        if ( defined $$form{nntp_local} ) {
            $self->config_( 'local', $$form{nntp_local} );
        }
        return;
    }


    if ( $name eq 'nntp_force_fork' ) {
        if ( defined $$form{nntp_force_fork} ) {
            $self->config_( 'force_fork', $$form{nntp_force_fork} );
        }
        return;
    }

    $self->SUPER::validate_item( $name, $templ, $language, $form );
}

# ----------------------------------------------------------------------------
#
# get_message_id_
#
# Get message_id of the article to retrieve
#
#    $news            A connection to the news server
#    $client          A connection from the news client
#    $command         A command sent from the news client
#
# ----------------------------------------------------------------------------

sub get_message_id_
{
    my ( $self, $news, $client, $command ) = @_;

    # Send STAT command to get the message_id

    $command =~ s/^ *(ARTICLE|HEAD|BODY)/STAT/i;
    my ( $response, $ok ) =                                     # PROFILE BLOCK START
        $self->get_response_( $news, $client, $command, 0, 1 ); # PROFILE BLOCK STOP
    if ( $response =~ /^223 +(\d+) +([^ \015]+)/i ) {
        return ( $2, $response );
    } else {
        return ( undef, $response );
    }
}

1;