version 1.708, 2006/02/08 23:47:00
|
version 1.709, 2006/02/10 10:01:32
|
Line 3737 sub auto_photo_permission {
|
Line 3737 sub auto_photo_permission {
|
my $homeserver = &homeserver($cnum,$cdom); |
my $homeserver = &homeserver($cnum,$cdom); |
my ($outcome,$perm_reqd,$conditions) = |
my ($outcome,$perm_reqd,$conditions) = |
split(/:/,&unescape(&reply('autophotopermission:'.$cdom,$homeserver)),3); |
split(/:/,&unescape(&reply('autophotopermission:'.$cdom,$homeserver)),3); |
|
if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) { |
|
return (undef,undef); |
|
} |
return ($outcome,$perm_reqd,$conditions); |
return ($outcome,$perm_reqd,$conditions); |
} |
} |
|
|
Line 3747 sub auto_checkphotos {
|
Line 3750 sub auto_checkphotos {
|
my $outcome = &unescape(&reply('autophotocheck:'.&escape($udom).':'. |
my $outcome = &unescape(&reply('autophotocheck:'.&escape($udom).':'. |
&escape($uname).':'.&escape($pid), |
&escape($uname).':'.&escape($pid), |
$homeserver)); |
$homeserver)); |
|
if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) { |
|
return (undef,undef); |
|
} |
if ($outcome) { |
if ($outcome) { |
($result,$resulttype) = split(/:/,$outcome); |
($result,$resulttype) = split(/:/,$outcome); |
} |
} |
Line 3759 sub auto_photochoice {
|
Line 3765 sub auto_photochoice {
|
my ($update,$comment) = split(/:/,&unescape(&reply('autophotochoice:'. |
my ($update,$comment) = split(/:/,&unescape(&reply('autophotochoice:'. |
&escape($cdom), |
&escape($cdom), |
$homeserver))); |
$homeserver))); |
|
if ($update =~ /^(con_lost|unknown_cmd|no_such_host)$/) { |
|
return (undef,undef); |
|
} |
return ($update,$comment); |
return ($update,$comment); |
} |
} |
|
|