remove $Id$ strings from everywhere that I can find
[spider.git] / cmd / set / address.pl
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..3109b56b84ecdbb0211b6698406830d12b5fcefa 100644 (file)
@@ -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);