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;
37 # any thing after send?
38 return (1, $self->msg('e6')) if !@f;
43 # first deal with copies
44 if ($f eq 'C' || $f eq 'CC' || $f eq 'COPY') {
46 if (@f && uc $f[0] eq 'RR') {
53 my $oref = DXMsg::get($m);
54 return (0, $self->msg('m4', $m)) unless $oref;
55 return (0, $self->msg('m16')) unless @f;
57 # separate copy to everyone listed
59 my $newcall = uc shift @f;
60 my $msgno = DXMsg::next_transno('Msgno');
61 my $newsubj = "CC: " . $oref->subject;
62 my $nref = DXMsg->alloc($msgno,
72 my $from = $oref->from;
74 my $date = cldate($oref->t);
75 my $time = ztime($oref->t);
76 my $buf = "Original from: $from To: $to Date: $date $time";
78 push @list, $oref->read_msg_body();
81 push @out, $self->msg('m2', $oref->msgno, $newcall);
88 # private / noprivate / rr
89 if ($notincalls && ($f eq 'B' || $f =~ /^NOP/oi)) {
90 $loc->{private} = '0';
91 } elsif ($notincalls && ($f eq 'P' || $f =~ /^PRI/oi)) {
93 } elsif ($notincalls && ($f eq 'RR')) {
95 } elsif ($f eq '<' && @f) { # this is bbs syntax for from call
96 $loc->{from} = uc shift @f;
97 } elsif ($f eq '@' && @f) { # this is bbs syntax, for origin
98 $loc->{origin} = uc shift @f;
99 } elsif ($f =~ /^\$/) { # this is bbs syntax for a bid
101 } elsif ($f =~ /^<\S+/) { # this is bbs syntax for from call
102 ($loc->{from}) = $f =~ /^<(\S+)$/;
103 } elsif ($f =~ /^\@\S+/) { # this is bbs syntax for origin
104 ($loc->{origin}) = $f =~ /^\@(\S+)$/;
110 # is this callsign a distro?
111 my $fn = "/spider/msg/distro/$f.pl";
113 my $fh = new IO::File $fn;
120 return (1, "Error in Distro $f.pl:", $@) if $@;
128 if (grep $_ eq $f, @DXMsg::badmsg) {
129 push @out, $self->msg('m3', $f);
136 # check we have some callsigns
141 return (1, $self->msg('e6'));
144 # find me and set the state and the function on my state variable to
145 # keep calling me for every line until I relinquish control
146 $self->func("DXMsg::do_send_stuff");
147 $self->state('send1');
148 push @out, $self->msg('m1');
150 push @out, $self->msg('m17', $self->state);