From 7575fa5f2154933e2c80f8fbfc4539e2b40d4b87 Mon Sep 17 00:00:00 2001 From: djk Date: Mon, 27 Mar 2000 16:55:31 +0000 Subject: [PATCH] fixed swopping on msgs in all places --- Changes | 5 ++++- cmd/send.pl | 12 ++++++++++-- perl/DXMsg.pm | 14 +++++++++----- 3 files changed, 23 insertions(+), 8 deletions(-) diff --git a/Changes b/Changes index 10115c53..716d4a45 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,12 @@ 27Mar00======================================================================= 1. updated wpxloc.raw and rsgb.cty for 4W and TX0. -2. display 'start time' rather than 'user last time in' in who. +2. display 'start time' rather than 'last start time in' in who. 3. Allow local users to see their own sh/talk or sh/log stuff. 4. A more robust version of the C client. 5. Added a message exporting command 'export'. +6. allow swopping on all messages, including imported and manually sent ones +7. S A < B @ C $BID now works from the command line and thus bbses ought to +be able to send messages into the cluster. Bids are (currently) ignored. 26Mar00======================================================================= 1. first cut of C client 18Mar00======================================================================= diff --git a/cmd/send.pl b/cmd/send.pl index ce8db2d0..f6f9e40f 100644 --- a/cmd/send.pl +++ b/cmd/send.pl @@ -92,8 +92,16 @@ if ($self->state eq "prompt") { ; } elsif ($notincalls && ($f eq 'RR')) { $loc->{rrreq} = '1'; - } elsif ($f eq '@') { # this is bbs syntax, for now lose the rest - last; + } elsif ($f eq '<' && @f) { # this is bbs syntax for from call + $loc->{from} = uc shift @f; + } elsif ($f eq '@' && @f) { # this is bbs syntax, for origin + $loc->{origin} = uc shift @f; + } elsif ($f =~ /^\$/) { # this is bbs syntax for a bid + next; + } elsif ($f =~ /^<\S+/) { # this is bbs syntax for from call + ($loc->{from}) = $f =~ /^<(\S+)$/; + } elsif ($f =~ /^\@\S+/) { # this is bbs syntax for origin + ($loc->{origin}) = $f =~ /^\@(\S+)$/; } else { # callsign ? diff --git a/perl/DXMsg.pm b/perl/DXMsg.pm index 7cef3adb..168a9782 100644 --- a/perl/DXMsg.pm +++ b/perl/DXMsg.pm @@ -846,13 +846,14 @@ sub do_send_stuff my $mycall = $main::mycall; $ref = DXMsg->alloc(DXMsg::next_transno('Msgno'), uc $to, - $self->call, + exists $loc->{from} ? $loc->{from} : $self->call, $systime, $loc->{private}, $loc->{subject}, - $mycall, + exists $loc->{origin} ? $loc->{origin} : $mycall, '0', $loc->{rrreq}); + $ref->swop_it($self->call); $ref->store($loc->{lines}); $ref->add_dir(); push @out, $self->msg('m11', $ref->{msgno}, $to); @@ -1109,12 +1110,14 @@ sub import_one $rr = '1'; } elsif ($f eq '@' && @f) { # this is bbs syntax, for origin $origin = uc shift @f; + } elsif ($f eq '<' && @f) { # this is bbs syntax for from call + $from = uc shift @f; } elsif ($f =~ /^\$/) { # this is bbs syntax for a bid next; - } elsif ($f =~ /^swop_it($main::mycall); $mref->store($ref); $mref->add_dir(); push @out, $dxchan->msg('m11', $mref->{msgno}, $to); -- 2.34.1