6 # send <call> [<call> .. ]
7 # send private <call> [<call> .. ]
8 # send private rr <call> [<call> .. ]
9 # send rr <call> [<call> .. ]
10 # send noprivate <call> [<call> .. ]
11 # send b <call> [<call> .. ]
12 # send copy <call> [<call> .. ]
13 # send copy rr <call> [<call> .. ]
15 # Copyright (c) Dirk Koopman G1TLH
19 my ($self, $line) = @_;
20 return (1, $self->msg('e5')) if $self->remotecmd;
23 my $loc = $self->{loc} = {};
28 $loc->{private} = '1';
33 if ($self->state eq "prompt") {
35 my @f = split /([\s\@\$,])/, $line;
36 @f = map {s/\s+//g; length $_ ? $_ : ()} @f;
37 @f = grep {$_ ne ','} @f;
39 # any thing after send?
40 return (1, $self->msg('e6')) if !@f;
41 return (1, $self->msg('e28')) unless $self->registered || uc $f[0] eq $main::myalias;
46 # first deal with copies
47 if ($f eq 'C' || $f eq 'CC' || $f eq 'COPY') {
49 if (@f && uc $f[0] eq 'RR') {
56 my $oref = DXMsg::get($m);
57 return (0, $self->msg('m4', $m)) unless $oref;
58 return (0, $self->msg('m16')) unless @f;
60 # separate copy to everyone listed
62 my $newcall = uc shift @f;
63 my $msgno = DXMsg::next_transno('Msgno');
64 my $newsubj = "CC: " . $oref->subject;
65 my $nref = DXMsg->alloc($msgno,
75 my $from = $oref->from;
77 my $date = cldate($oref->t);
78 my $time = ztime($oref->t);
79 my $buf = "Original from: $from To: $to Date: $date $time";
81 push @list, $oref->read_msg_body();
84 push @out, $self->msg('m2', $oref->msgno, $newcall);
91 # private / noprivate / rr
92 if ($notincalls && ($f eq 'B' || $f =~ /^NOP/oi)) {
93 $loc->{private} = '0';
94 } elsif ($notincalls && ($f eq 'P' || $f =~ /^PRI/oi)) {
96 } elsif ($notincalls && ($f eq 'RR')) {
98 } elsif ($f eq '<' && @f) { # this is bbs syntax for from call
99 $loc->{from} = uc shift @f;
100 } elsif (($f =~ /^[\@\.\#\$]$/ || $f eq '.#') && @f) { # this is bbs syntax, for send it 'to node'
102 } elsif ($f =~ /^\$/) { # this is bbs syntax for a bid
104 } elsif ($f =~ /^<(\S+)/) { # this is bbs syntax for from call
106 } elsif ($f =~ /^\$\S+/) { # this is bbs syntax for bid
115 # is this callsign a distro?
116 # but be careful about messages to 'sysop'
117 if ($self->priv < 5 && $f eq 'SYSOP') {
118 push @to, $main::myalias;
121 my $fn = "/spider/msg/distro/$f.pl";
123 my $fh = new IO::File $fn;
130 return (1, "Error in Distro $f.pl:", $@) if $@;
139 if (($loc->{private} && is_callsign($f)) || (!$loc->{private} && DXMsg::valid_bull_addr($f))) {
140 if (grep $_ eq $f, @DXMsg::badmsg) {
141 push @out, $self->msg('m3', $f);
146 push @out, $self->msg('m3', $f);
151 # check we have some callsigns
156 return (1, @out, $self->msg('e6'));
158 $loc->{from} ||= $self->call;
159 unless (is_callsign($loc->{from})) {
161 return (1, $self->msg('e22', $loc->{from}));
164 # find me and set the state and the function on my state variable to
165 # keep calling me for every line until I relinquish control
166 $self->func("DXMsg::do_send_stuff");
167 $self->state('send1');
168 push @out, $self->msg('m1');
170 push @out, $self->msg('m17', $self->state);