3 # This module impliments the message handling for a dx cluster
5 # Copyright (c) 1998 Dirk Koopman G1TLH
10 # Notes for implementors:-
12 # PC28 field 11 is the RR required flag
13 # PC28 field 12 is a VIA routing (ie it is a node call)
31 use vars qw($VERSION $BRANCH);
32 $VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
33 $BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0;
34 $main::build += $VERSION;
35 $main::branch += $BRANCH;
37 use vars qw(%work @msg $msgdir %valid %busy $maxage $last_clean
38 @badmsg @swop $swopfn $badmsgfn $forwardfn @forward $timeout $waittime
39 $queueinterval $lastq $importfn $minchunk $maxchunk $bulltopriv);
41 %work = (); # outstanding jobs
42 @msg = (); # messages we have
43 %busy = (); # station interlocks
44 $msgdir = "$main::root/msg"; # directory contain the msgs
45 $maxage = 30 * 86400; # the maximum age that a message shall live for if not marked
46 $last_clean = 0; # last time we did a clean
47 @forward = (); # msg forward table
48 @badmsg = (); # bad message table
49 @swop = (); # swop table
50 $timeout = 30*60; # forwarding timeout
51 $waittime = 30*60; # time an aborted outgoing message waits before trying again
52 $queueinterval = 1*60; # run the queue every 1 minute
55 $minchunk = 4800; # minimum chunk size for a split message
56 $maxchunk = 6000; # maximum chunk size
57 $bulltopriv = 1; # convert msgs with callsigns to private if they are bulls
60 $badmsgfn = "$msgdir/badmsg.pl"; # list of TO address we wont store
61 $forwardfn = "$msgdir/forward.pl"; # the forwarding table
62 $swopfn = "$msgdir/swop.pl"; # the swopping table
63 $importfn = "$msgdir/import"; # import directory
67 fromnode => '5,From Node',
68 tonode => '5,To Node',
71 t => '0,Msg Time,cldatetime',
72 private => '5,Private,yesno',
73 subject => '0,Subject',
74 linesreq => '0,Lines per Gob',
75 rrreq => '5,Read Confirm,yesno',
78 stream => '9,Stream No',
79 count => '5,Gob Linecnt',
80 file => '5,File?,yesno',
81 gotit => '5,Got it Nodes,parray',
82 lines => '5,Lines,parray',
83 'read' => '5,Times read',
86 keep => '0,Keep this?,yesno',
87 lastt => '5,Last processed,cldatetime',
88 waitt => '5,Wait until,cldatetime',
89 delete => '5,Awaiting Delete,yesno',
92 # allocate a new object
93 # called fromnode, tonode, from, to, datetime, private?, subject, nolinesper
97 my $self = bless {}, $pkg;
98 $self->{msgno} = shift;
101 $self->{to} = ($to eq $main::mycall) ? $main::myalias : $to;
104 $self->{from} = uc $from;
106 $self->{private} = shift;
107 $self->{subject} = shift;
108 $self->{origin} = shift;
109 $self->{'read'} = shift;
110 $self->{rrreq} = shift;
112 # $self->{lastt} = $main::systime;
114 $self->{private} = 1 if $bulltopriv && DXUser->get_current($self->{to});
122 my ($self, $line) = @_;
124 # this is periodic processing
125 if (!$self || !$line) {
127 if ($main::systime >= $lastq + $queueinterval) {
129 # queue some message if the interval timer has gone off
132 # import any messages in the import directory
135 $lastq = $main::systime;
138 # clean the message queue
139 clean_old() if $main::systime - $last_clean > 3600 ;
143 my @f = split /\^/, $line;
144 my ($pcno) = $f[0] =~ /^PC(\d\d)/; # just get the number
145 my ($tonode, $fromnode) = @f[1, 2];
146 my $stream = $f[3] if ($pcno >= 29 && $pcno <= 33) || $pcno == 42;
149 if ($pcno == 28) { # incoming message
151 # sort out various extant protocol errors that occur
153 $origin = $self->call unless $origin && $origin gt ' ';
155 # first look for any messages in the busy queue
156 # and cancel them this should both resolve timed out incoming messages
157 # and crossing of message between nodes, incoming messages have priority
159 my $ref = get_busy($fromnode);
161 my $otonode = $ref->{tonode} || "unknown";
162 dbg("Busy, stopping msgno: $ref->{msgno} $fromnode->$otonode") if isdbg('msg');
163 $ref->stop_msg($fromnode);
166 my $t = cltounix($f[5], $f[6]);
167 $stream = next_transno($fromnode);
168 $ref = DXMsg->alloc($stream, uc $f[3], $f[4], $t, $f[7], $f[8], $origin, '0', $f[11]);
170 # fill in various forwarding state variables
171 $ref->{fromnode} = $fromnode;
172 $ref->{tonode} = $tonode;
173 $ref->{rrreq} = $f[11];
174 $ref->{linesreq} = $f[10];
175 $ref->{stream} = $stream;
176 $ref->{count} = 0; # no of lines between PC31s
177 dbg("new message from $f[4] to $f[3] '$f[8]' stream $fromnode/$stream\n") if isdbg('msg');
178 Log('msg', "Incoming message $f[4] to $f[3] '$f[8]' origin: $origin" );
179 set_fwq($fromnode, $stream, $ref); # store in work
180 set_busy($fromnode, $ref); # set interlock
181 $self->send(DXProt::pc30($fromnode, $tonode, $stream)); # send ack
182 $ref->{lastt} = $main::systime;
184 # look to see whether this is a non private message sent to a known callsign
185 my $uref = DXUser->get_current($ref->{to});
186 if (is_callsign($ref->{to}) && !$ref->{private} && $uref && $uref->homenode) {
188 dbg("set bull to $ref->{to} to private") if isdbg('msg');
189 Log('msg', "set bull to $ref->{to} to private");
194 if ($pcno == 29) { # incoming text
195 my $ref = get_fwq($fromnode, $stream);
198 push @{$ref->{lines}}, $f[4];
200 if ($ref->{count} >= $ref->{linesreq}) {
201 $self->send(DXProt::pc31($fromnode, $tonode, $stream));
202 dbg("stream $stream: $ref->{count} lines received\n") if isdbg('msg');
205 $ref->{lastt} = $main::systime;
207 dbg("PC29 from unknown stream $stream from $fromnode") if isdbg('msg');
208 $self->send(DXProt::pc42($fromnode, $tonode, $stream)); # unknown stream
213 if ($pcno == 30) { # this is a incoming subject ack
214 my $ref = get_fwq($fromnode); # note no stream at this stage
217 $ref->{stream} = $stream;
219 $ref->{linesreq} = 5;
220 set_fwq($fromnode, $stream, $ref); # new ref
221 set_busy($fromnode, $ref); # interlock
222 dbg("incoming subject ack stream $stream\n") if isdbg('msg');
223 $ref->{lines} = [ $ref->read_msg_body ];
224 $ref->send_tranche($self);
225 $ref->{lastt} = $main::systime;
227 dbg("PC30 from unknown stream $stream from $fromnode") if isdbg('msg');
228 $self->send(DXProt::pc42($fromnode, $tonode, $stream)); # unknown stream
233 if ($pcno == 31) { # acknowledge a tranche of lines
234 my $ref = get_fwq($fromnode, $stream);
236 dbg("tranche ack stream $stream\n") if isdbg('msg');
237 $ref->send_tranche($self);
238 $ref->{lastt} = $main::systime;
240 dbg("PC31 from unknown stream $stream from $fromnode") if isdbg('msg');
241 $self->send(DXProt::pc42($fromnode, $tonode, $stream)); # unknown stream
246 if ($pcno == 32) { # incoming EOM
247 dbg("stream $stream: EOM received\n") if isdbg('msg');
248 my $ref = get_fwq($fromnode, $stream);
250 $self->send(DXProt::pc33($fromnode, $tonode, $stream)); # acknowledge it
252 # get the next msg no - note that this has NOTHING to do with the stream number in PC protocol
253 # store the file or message
254 # remove extraneous rubbish from the hash
255 # remove it from the work in progress vector
256 # stuff it on the msg queue
259 $ref->store($ref->{lines});
262 # does an identical message already exist?
265 if ($ref->{subject} eq $m->{subject} && $ref->{t} == $m->{t} && $ref->{from} eq $m->{from} && $ref->{to} eq $m->{to}) {
266 $ref->stop_msg($fromnode);
267 my $msgno = $m->{msgno};
268 dbg("duplicate message from $ref->{from} -> $ref->{to} to msg: $msgno") if isdbg('msg');
269 Log('msg', "duplicate message from $ref->{from} -> $ref->{to} to msg: $msgno");
275 $ref->swop_it($self->call);
277 # look for 'bad' to addresses
278 if ($ref->dump_it($self->call)) {
279 $ref->stop_msg($fromnode);
280 dbg("'Bad' message $ref->{to}") if isdbg('msg');
281 Log('msg', "'Bad' message $ref->{to}");
285 # check the message for bad words
287 for (@{$ref->{lines}}) {
288 push @words, BadWords::check($_);
290 push @words, BadWords::check($ref->{subject});
292 dbg("message with badwords '@words' $ref->{from} -> $ref->{to} '$ref->{subject}' origin: $ref->{origin} via " . $self->call) if isdbg('msg');
293 Log('msg',"message with badwords '@words' $ref->{from} -> $ref->{to} origin: $ref->{origin} via " . $self->call);
294 Log('msg',"subject: $ref->{subject}");
295 for (@{$ref->{lines}}) {
296 Log('msg', "line: $_");
298 $ref->stop_msg($fromnode);
302 $ref->{msgno} = next_transno("Msgno");
303 push @{$ref->{gotit}}, $fromnode; # mark this up as being received
304 $ref->store($ref->{lines});
306 my $dxchan = DXChannel->get($ref->{to});
307 $dxchan->send($dxchan->msg('m9')) if $dxchan && $dxchan->is_user;
308 Log('msg', "Message $ref->{msgno} from $ref->{from} received from $fromnode for $ref->{to}");
311 $ref->stop_msg($fromnode);
313 dbg("PC32 from unknown stream $stream from $fromnode") if isdbg('msg');
314 $self->send(DXProt::pc42($fromnode, $tonode, $stream)); # unknown stream
320 if ($pcno == 33) { # acknowledge the end of message
321 my $ref = get_fwq($fromnode, $stream);
323 if ($ref->{private}) { # remove it if it private and gone off site#
324 Log('msg', "Message $ref->{msgno} from $ref->{from} sent to $fromnode and deleted");
327 Log('msg', "Message $ref->{msgno} from $ref->{from} sent to $fromnode");
328 push @{$ref->{gotit}}, $fromnode; # mark this up as being received
329 $ref->store($ref->{lines}); # re- store the file
331 $ref->stop_msg($fromnode);
333 dbg("PC33 from unknown stream $stream from $fromnode") if isdbg('msg');
334 $self->send(DXProt::pc42($fromnode, $tonode, $stream)); # unknown stream
337 # send next one if present
342 if ($pcno == 40) { # this is a file request
343 $f[3] =~ s/\\/\//og; # change the slashes
344 $f[3] =~ s/\.//og; # remove dots
345 $f[3] =~ s/^\///o; # remove the leading /
346 $f[3] = lc $f[3]; # to lower case;
347 dbg("incoming file $f[3]\n") if isdbg('msg');
348 $f[3] = 'packclus/' . $f[3] unless $f[3] =~ /^packclus\//o;
350 # create any directories
351 my @part = split /\//, $f[3];
353 my $fn = "$main::root";
354 pop @part; # remove last part
355 foreach $part (@part) {
358 last SWITCH if !mkdir $fn, 0777;
359 dbg("created directory $fn\n") if isdbg('msg');
361 my $stream = next_transno($fromnode);
362 my $ref = DXMsg->alloc($stream, "$main::root/$f[3]", $self->call, time, !$f[4], $f[3], ' ', '0', '0');
364 # forwarding variables
365 $ref->{fromnode} = $tonode;
366 $ref->{tonode} = $fromnode;
367 $ref->{linesreq} = $f[5];
368 $ref->{stream} = $stream;
369 $ref->{count} = 0; # no of lines between PC31s
371 $ref->{lastt} = $main::systime;
372 set_fwq($fromnode, $stream, $ref); # store in work
373 $self->send(DXProt::pc30($fromnode, $tonode, $stream)); # send ack
378 if ($pcno == 42) { # abort transfer
379 dbg("stream $stream: abort received\n") if isdbg('msg');
380 my $ref = get_fwq($fromnode, $stream);
382 $ref->stop_msg($fromnode);
388 if ($pcno == 49) { # global delete on subject
390 if ($_->{from} eq $f[1] && $_->{subject} eq $f[2]) {
392 Log('msg', "Message $_->{msgno} from $_->{from} ($_->{subject}) fully deleted");
393 DXChannel::broadcast_nodes($line, $self);
401 # store a message away on disc or whatever
403 # NOTE the second arg is a REFERENCE not a list
409 if ($ref->{file}) { # a file
410 dbg("To be stored in $ref->{to}\n") if isdbg('msg');
412 my $fh = new IO::File "$ref->{to}", "w";
415 foreach $line (@{$lines}) {
419 dbg("file $ref->{to} stored\n") if isdbg('msg');
420 Log('msg', "file $ref->{to} from $ref->{from} stored" );
422 confess "can't open file $ref->{to} $!";
424 } else { # a normal message
426 # attempt to open the message file
427 my $fn = filename($ref->{msgno});
429 dbg("To be stored in $fn\n") if isdbg('msg');
431 # now save the file, overwriting what's there, YES I KNOW OK! (I will change it if it's a problem)
432 my $fh = new IO::File "$fn", "w";
434 my $rr = $ref->{rrreq} ? '1' : '0';
435 my $priv = $ref->{private} ? '1': '0';
436 print $fh "=== $ref->{msgno}^$ref->{to}^$ref->{from}^$ref->{t}^$priv^$ref->{subject}^$ref->{origin}^$ref->{'read'}^$rr\n";
437 print $fh "=== ", join('^', @{$ref->{gotit}}), "\n";
440 foreach $line (@{$lines}) {
441 $ref->{size} += (length $line) + 1;
445 dbg("msg $ref->{msgno} stored\n") if isdbg('msg');
446 Log('msg', "msg $ref->{msgno} from $ref->{from} to $ref->{to} stored" );
448 confess "can't open msg file $fn $!";
459 if ($self->{tonode}) {
464 $call = " by " . $dxchan->call;
469 # remove it from the active message list
470 @msg = grep { $_ != $self } @msg;
473 unlink filename($self->{msgno});
477 # clean out old messages from the message queue
482 # mark old messages for deletion
483 dbg("\@msg = " . scalar @msg . " before delete") if isdbg('msg');
484 foreach $ref (@msg) {
485 if (ref($ref) && !$ref->{keep} && $ref->{t} < $main::systime - $maxage) {
486 $ref->{deleteme} = 1;
487 unlink filename($ref->{msgno});
488 dbg("deleting old $ref->{msgno}\n") if isdbg('msg');
492 # remove them all from the active message list
493 @msg = grep { !$_->{deleteme} } @msg;
494 dbg("\@msg = " . scalar @msg . " after delete") if isdbg('msg');
495 $last_clean = $main::systime;
498 # read in a message header
508 $file = new IO::File "$fn";
510 dbg("Error reading $fn $!");
511 Log('err', "Error reading $fn $!");
515 $line = <$file>; # first line
516 if ($size == 0 || !$line) {
518 Log('err', "Empty $fn $!");
522 $size -= length $line;
523 if (! $line =~ /^===/o) {
524 dbg("corrupt first line in $fn ($line)");
525 Log('err', "corrupt first line in $fn ($line)");
529 @f = split /\^/, $line;
530 $ref = DXMsg->alloc(@f);
532 $line = <$file>; # second line
534 $size -= length $line;
535 if (! $line =~ /^===/o) {
536 dbg("corrupt second line in $fn ($line)");
537 Log('err', "corrupt second line in $fn ($line)");
542 @f = split /\^/, $line;
543 push @{$ref->{gotit}}, @f;
544 $ref->{size} = $size;
551 # read in a message header
555 my $msgno = $self->{msgno};
558 my $fn = filename($msgno);
561 $file = new IO::File;
562 if (!open($file, $fn)) {
563 dbg("Error reading $fn $!");
564 Log('err' ,"Error reading $fn $!");
567 @out = map {chomp; $_} <$file>;
570 shift @out if $out[0] =~ /^=== /;
571 shift @out if $out[0] =~ /^=== /;
575 # send a tranche of lines to the other end
578 my ($self, $dxchan) = @_;
580 my $to = $self->{tonode};
581 my $from = $self->{fromnode};
582 my $stream = $self->{stream};
583 my $lines = $self->{lines};
586 for ($i = 0, $c = $self->{count}; $i < $self->{linesreq} && $c < @$lines; $i++, $c++) {
587 push @out, DXProt::pc29($to, $from, $stream, $lines->[$c]);
591 push @out, DXProt::pc32($to, $from, $stream) if $i < $self->{linesreq};
596 # find a message to send out and start the ball rolling
603 # bat down the message list looking for one that needs to go off site and whose
604 # nearest node is not busy.
606 dbg("queue msg ($sort)\n") if isdbg('msg');
607 my @nodelist = DXChannel::get_all_nodes;
608 foreach $ref (@msg) {
610 # ignore 'delayed' messages until their waiting time has expired
611 if (exists $ref->{waitt}) {
612 next if $ref->{waitt} > $main::systime;
613 delete $ref->{waitt};
617 if (exists $ref->{lastt} && $main::systime >= $ref->{lastt} + $timeout) {
618 my $node = $ref->{tonode};
619 dbg("Timeout, stopping msgno: $ref->{msgno} -> $node") if isdbg('msg');
620 Log('msg', "Timeout, stopping msgno: $ref->{msgno} -> $node");
621 $ref->stop_msg($node);
623 # delay any outgoing messages that fail
624 $ref->{waitt} = $main::systime + $waittime + rand(120) if $node ne $main::mycall;
625 delete $ref->{lastt};
629 # is it being sent anywhere currently?
630 next if $ref->{tonode}; # ignore it if it already being processed
632 # is it awaiting deletion?
633 if ($ref->{delete}) {
638 # firstly, is it private and unread? if so can I find the recipient
639 # in my cluster node list offsite?
641 # deal with routed private messages
643 if ($ref->{private}) {
644 next if $ref->{'read'}; # if it is read, it is stuck here
645 $clref = Route::get($ref->{to});
647 $dxchan = $clref->dxchan;
649 if ($dxchan->is_node) {
650 next if $clref->call eq $main::mycall; # i.e. it lives here
651 $ref->start_msg($dxchan) if !get_busy($dxchan->call) && $dxchan->state eq 'normal';
654 dbg("Route: No dxchan for $ref->{to} " . ref($clref) ) if isdbg('msg');
659 # otherwise we are dealing with a bulletin or forwarded private message
660 # compare the gotit list with
661 # the nodelist up above, if there are sites that haven't got it yet
662 # then start sending it - what happens when we get loops is anyone's
663 # guess, use (to, from, time, subject) tuple?
664 foreach $dxchan (@nodelist) {
665 my $call = $dxchan->call;
667 next if $call eq $main::mycall;
668 next if ref $ref->{gotit} && grep $_ eq $call, @{$ref->{gotit}};
669 next unless $ref->forward_it($call); # check the forwarding file
670 next if $ref->{tonode}; # ignore it if it already being processed
672 # if we are here we have a node that doesn't have this message
673 if (!get_busy($call) && $dxchan->state eq 'normal') {
674 $ref->start_msg($dxchan);
680 # if all the available nodes are busy then stop
681 last if @nodelist == scalar grep { get_busy($_->call) } @nodelist;
685 # is there a message for me?
691 foreach $ref (@msg) {
692 # is it for me, private and unread?
693 if ($ref->{to} eq $call && $ref->{private}) {
694 return 1 if !$ref->{'read'};
700 # start the message off on its travels with a PC28
703 my ($self, $dxchan) = @_;
705 confess("trying to start started msg $self->{msgno} nodes: $self->{fromnode} -> $self->{tonode}") if $self->{tonode};
706 dbg("start msg $self->{msgno}\n") if isdbg('msg');
707 $self->{linesreq} = 10;
709 $self->{tonode} = $dxchan->call;
710 $self->{fromnode} = $main::mycall;
711 set_busy($self->{tonode}, $self);
712 set_fwq($self->{tonode}, undef, $self);
713 $self->{lastt} = $main::systime;
714 my ($fromnode, $origin);
715 $fromnode = $self->{fromnode};
716 $origin = $self->{origin};
717 $dxchan->send(DXProt::pc28($self->{tonode}, $fromnode, $self->{to}, $self->{from}, $self->{t}, $self->{private}, $self->{subject}, $origin, $self->{rrreq}));
720 # get the ref of a busy node
730 return $busy{$call} = shift;
736 return delete $busy{$call};
739 # get the whole busy queue
745 # get a forwarding queue entry
749 my $stream = shift || '0';
750 return $work{"$call,$stream"};
753 # delete a forwarding queue entry
757 my $stream = shift || '0';
758 return delete $work{"$call,$stream"};
765 my $stream = shift || '0';
766 return $work{"$call,$stream"} = shift;
769 # get the whole forwarding queue
775 # stop a message from continuing, clean it out, unlock interlocks etc
780 my $stream = $self->{stream};
783 dbg("stop msg $self->{msgno} -> node $node\n") if isdbg('msg');
784 del_fwq($node, $stream);
792 delete $ref->{lines};
793 delete $ref->{linesreq};
794 delete $ref->{tonode};
795 delete $ref->{fromnode};
796 delete $ref->{stream};
798 delete $ref->{count};
799 delete $ref->{lastt} if exists $ref->{lastt};
800 delete $ref->{waitt} if exists $ref->{waitt};
803 # get a new transaction number from the file specified
807 $name =~ s/\W//og; # remove non-word characters
808 my $fn = "$msgdir/$name";
811 my $fh = new IO::File;
812 if (sysopen($fh, $fn, O_RDWR|O_CREAT, 0666)) {
814 $msgno = $fh->getline || '0';
818 $fh->print("$msgno\n");
819 dbg("msgno $msgno allocated for $name\n") if isdbg('msg');
822 confess "can't open $fn $!";
827 # initialise the message 'system', read in all the message headers
830 my $dir = new IO::File;
834 # load various control files
835 dbg("load badmsg: " . (load_badmsg() or "Ok"));
836 dbg("load forward: " . (load_forward() or "Ok"));
837 dbg("load swop: " . (load_swop() or "Ok"));
839 # read in the directory
840 opendir($dir, $msgdir) or confess "can't open $msgdir $!";
841 @dir = readdir($dir);
846 next unless /^m\d\d\d\d\d\d$/;
848 $ref = read_msg_header("$msgdir/$_");
851 Log('err', "Deleting $_");
856 # delete any messages to 'badmsg.pl' places
857 if ($ref->dump_it('')) {
858 dbg("'Bad' TO address $ref->{to}") if isdbg('msg');
859 Log('msg', "'Bad' TO address $ref->{to}");
864 # add the message to the available queue
869 # add the message to the directory listing
873 confess "tried to add a non-ref to the msg directory" if !ref $ref;
877 # return all the current messages
883 # get a particular message
888 return $_ if $_->{msgno} == $msgno;
889 last if $_->{msgno} > $msgno;
894 # return the official filename for a message no
897 return sprintf "$msgdir/m%06d", shift;
901 # return a list of valid elements
910 # return a prompt for a field
915 my ($self, $ele) = @_;
920 # send a message state machine
927 if ($self->state eq 'send1') {
929 confess "local var gone missing" if !ref $self->{loc};
930 my $loc = $self->{loc};
931 if (my @ans = BadWords::check($line)) {
932 $self->{badcount} += @ans;
933 Log('msg', $self->call . " used badwords: @ans to @{$loc->{to}} in msg");
934 return ($self->msg('e17', @ans), $self->msg('m1'));
936 $loc->{subject} = $line;
938 $self->state('sendbody');
939 #push @out, $self->msg('sendbody');
940 push @out, $self->msg('m8');
941 } elsif ($self->state eq 'sendbody') {
942 confess "local var gone missing" if !ref $self->{loc};
943 my $loc = $self->{loc};
944 if ($line eq "\032" || $line eq '%1A' || uc $line eq "/EX") {
947 foreach $to (@{$loc->{to}}) {
949 my $systime = $main::systime;
950 my $mycall = $main::mycall;
951 $ref = DXMsg->alloc(DXMsg::next_transno('Msgno'),
953 exists $loc->{from} ? $loc->{from} : $self->call,
957 exists $loc->{origin} ? $loc->{origin} : $mycall,
960 $ref->swop_it($self->call);
961 $ref->store($loc->{lines});
963 push @out, $self->msg('m11', $ref->{msgno}, $to);
964 #push @out, "msgno $ref->{msgno} sent to $to";
965 my $dxchan = DXChannel->get(uc $to);
967 if ($dxchan->is_user()) {
968 $dxchan->send($dxchan->msg('m9'));
973 delete $loc->{lines};
978 $self->state('prompt');
979 } elsif ($line eq "\031" || uc $line eq "/ABORT" || uc $line eq "/QUIT") {
980 #push @out, $self->msg('sendabort');
981 push @out, $self->msg('m10');
982 delete $loc->{lines};
986 $self->state('prompt');
988 if (my @ans = BadWords::check($line)) {
989 $self->{badcount} += @ans;
990 Log('msg', $self->call . " used badwords: @ans to @{$loc->{to}} subject: '$loc->{subject}' in msg");
991 Log('msg', "line: $line");
992 return ($self->msg('e17', @ans));
995 # i.e. it ain't and end or abort, therefore store the line
996 push @{$loc->{lines}}, length($line) > 0 ? $line : " ";
1002 # return the standard directory line for this ref
1006 my $flag = $ref->read ? '-' : ' ';
1007 $flag = 'D' if $ref->delete;
1008 return sprintf "%6d%s%s%5d %8.8s %8.8s %-6.6s %5.5s %-30.30s",
1009 $ref->msgno, $flag, $ref->private ? 'p' : ' ', $ref->size,
1010 $ref->to, $ref->from, cldate($ref->t), ztime($ref->t), $ref->subject;
1013 # load the forward table
1017 my $s = readfilestr($forwardfn);
1020 push @out, $@ if $@;
1025 # load the bad message table
1029 my $s = readfilestr($badmsgfn);
1032 push @out, $@ if $@;
1037 # load the swop message table
1041 my $s = readfilestr($swopfn);
1044 push @out, $@ if $@;
1050 # forward that message or not according to the forwarding table
1051 # returns 1 for forward, 0 - to ignore
1060 for ($i = 0; $i < @forward; $i += 5) {
1061 my ($sort, $field, $pattern, $action, $bbs) = @forward[$i..($i+4)];
1064 # are we interested?
1065 next if $ref->{private} && $sort ne 'P';
1066 next if !$ref->{private} && $sort ne 'B';
1069 $tested = $ref->{to} if $field eq 'T';
1070 $tested = $ref->{from} if $field eq 'F';
1071 $tested = $ref->{origin} if $field eq 'O';
1072 $tested = $ref->{subject} if $field eq 'S';
1074 if (!$pattern || $tested =~ m{$pattern}i) {
1075 return 0 if $action eq 'I';
1076 return 1 if !$bbs || grep $_ eq $call, @{$bbs};
1088 for ($i = 0; $i < @badmsg; $i += 3) {
1089 my ($sort, $field, $pattern) = @badmsg[$i..($i+2)];
1092 # are we interested?
1093 next if $ref->{private} && $sort ne 'P';
1094 next if !$ref->{private} && $sort ne 'B';
1097 $tested = $ref->{to} if $field eq 'T';
1098 $tested = $ref->{from} if $field eq 'F';
1099 $tested = $ref->{origin} if $field eq 'O';
1100 $tested = $ref->{subject} if $field eq 'S';
1101 $tested = $call if $field eq 'I';
1103 if (!$pattern || $tested =~ m{$pattern}i) {
1117 for ($i = 0; $i < @swop; $i += 5) {
1118 my ($sort, $field, $pattern, $tfield, $topattern) = @swop[$i..($i+4)];
1123 # are we interested?
1124 next if $ref->{private} && $sort ne 'P';
1125 next if !$ref->{private} && $sort ne 'B';
1128 $tested = $ref->{to} if $field eq 'T';
1129 $tested = $ref->{from} if $field eq 'F';
1130 $tested = $ref->{origin} if $field eq 'O';
1131 $tested = $ref->{subject} if $field eq 'S';
1134 $old = $swop = $ref->{to} if $tfield eq 'T';
1135 $old = $swop = $ref->{from} if $tfield eq 'F';
1136 $old = $swop = $ref->{origin} if $tfield eq 'O';
1137 $old = $swop = $ref->{subject} if $tfield eq 'S';
1139 if ($tested =~ m{$pattern}i) {
1140 if ($tested eq $swop) {
1141 $swop =~ s{$pattern}{$topattern}i;
1145 Log('msg', "Msg $ref->{msgno}: $tfield $old -> $swop");
1146 Log('dbg', "Msg $ref->{msgno}: $tfield $old -> $swop");
1147 $ref->{to} = $swop if $tfield eq 'T';
1148 $ref->{from} = $swop if $tfield eq 'F';
1149 $ref->{origin} = $swop if $tfield eq 'O';
1150 $ref->{subject} = $swop if $tfield eq 'S';
1157 # import any msgs in the import directory
1158 # the messages are in BBS format (but may have cluster extentions
1159 # so SB UK < GB7TLH is legal
1162 # are there any to do in this directory?
1163 return unless -d $importfn;
1164 unless (opendir(DIR, $importfn)) {
1165 dbg("can\'t open $importfn $!") if isdbg('msg');
1166 Log('msg', "can\'t open $importfn $!");
1170 my @names = readdir(DIR);
1173 foreach $name (@names) {
1174 next if $name =~ /^\./;
1175 my $splitit = $name =~ /^split/;
1176 my $fn = "$importfn/$name";
1178 unless (open(MSG, $fn)) {
1179 dbg("can\'t open import file $fn $!") if isdbg('msg');
1180 Log('msg', "can\'t open import file $fn $!");
1184 my @msg = map { chomp; $_ } <MSG>;
1187 my @out = import_one($main::me, \@msg, $splitit);
1193 # import one message as a list in bbs (as extended) mode
1194 # takes a reference to an array containing the whole message
1199 my $splitit = shift;
1203 my $from = $dxchan->call;
1204 my $origin = $main::mycall;
1209 my $line = shift @$ref;
1210 my @f = split /\b/, $line;
1211 @f = map {s/\s+//g; length $_ ? $_ : ()} @f;
1213 unless (@f && $f[0] =~ /^(:?S|SP|SB|SEND)$/ ) {
1214 my $m = "invalid first line in import '$line'";
1215 dbg($m) if isdbg('msg');
1219 my $f = uc shift @f;
1220 next if $f eq 'SEND';
1222 # private / noprivate / rr
1223 if ($notincalls && ($f eq 'B' || $f eq 'SB' || $f =~ /^NOP/oi)) {
1225 } elsif ($notincalls && ($f eq 'P' || $f eq 'SP' || $f =~ /^PRI/oi)) {
1227 } elsif ($notincalls && ($f eq 'RR')) {
1229 } elsif (($f =~ /^[\@\.\#\$]$/ || $f eq '.#') && @f) { # this is bbs syntax, for AT
1231 } elsif ($f eq '<' && @f) { # this is bbs syntax for from call
1232 $from = uc shift @f;
1233 } elsif ($f =~ /^\$/) { # this is bbs syntax for a bid
1235 } elsif ($f =~ /^<(\S+)/) { # this is bbs syntax for from call
1237 } elsif ($f =~ /^\$\S+/) { # this is bbs syntax for bid
1244 # is this callsign a distro?
1245 my $fn = "$msgdir/distro/$f.pl";
1247 my $fh = new IO::File $fn;
1254 return (1, "Error in Distro $f.pl:", $@) if $@;
1262 if (grep $_ eq $f, @DXMsg::badmsg) {
1263 push @out, $dxchan->msg('m3', $f);
1270 # subject is the next line
1271 my $subject = shift @$ref;
1273 # strip off trailing lines
1274 pop @$ref while (@$ref && $$ref[-1] =~ /^\s*$/);
1276 # strip off /EX or /ABORT
1277 return ("aborted") if @$ref && $$ref[-1] =~ m{^/ABORT$}i;
1278 pop @$ref if (@$ref && $$ref[-1] =~ m{^/EX$}i);
1280 # sort out any splitting that needs to be done
1286 if ($lth >= $maxchunk || ($lth > $minchunk && /^\s*$/)) {
1287 push @chunk, $lines;
1294 push @chunk, $lines if @$lines;
1299 # write all the messages away
1301 for ( $i = 0; $i < @chunk; $i++) {
1302 my $chunk = $chunk[$i];
1305 my $num = " [" . ($i+1) . "/" . scalar @chunk . "]";
1306 $ch_subject = substr($subject, 0, 27 - length $num) . $num;
1308 $ch_subject = $subject;
1312 my $systime = $main::systime;
1313 my $mycall = $main::mycall;
1314 my $mref = DXMsg->alloc(DXMsg::next_transno('Msgno'),
1323 $mref->swop_it($main::mycall);
1324 $mref->store($chunk);
1326 push @out, $dxchan->msg('m11', $mref->{msgno}, $to);
1327 #push @out, "msgno $ref->{msgno} sent to $to";
1328 my $todxchan = DXChannel->get(uc $to);
1330 if ($todxchan->is_user()) {
1331 $todxchan->send($todxchan->msg('m9'));
1343 my $name = $AUTOLOAD;
1344 return if $name =~ /::DESTROY$/;
1347 confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
1348 # this clever line of code creates a subroutine which takes over from autoload
1349 # from OO Perl - Conway
1350 *{$AUTOLOAD} = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}} ;
1351 @_ ? $self->{$name} = shift : $self->{$name} ;