X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fset%2Faddress.pl;h=3109b56b84ecdbb0211b6698406830d12b5fcefa;hb=c3505bcfc922cd712bad2c20b3479cf8d1dc54fe;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=6b6a8002929017b6d4217f68fa492a2d728ee1fe;p=spider.git diff --git a/cmd/set/address.pl b/cmd/set/address.pl index e69de29b..3109b56b 100644 --- a/cmd/set/address.pl +++ b/cmd/set/address.pl @@ -0,0 +1,19 @@ +# +# set the address field +# +# Copyright (c) 1998 - Dirk Koopman +# +# +# + +my ($self, $line) = @_; +my $call; +my @out; +my $user; + +$user = $self->user; +$line =~ s/[{}]//g; # no braces allowed +$user->addr($line); +push @out, $self->msg('addr', $line); + +return (1, @out);