> Not at this time. We figured:
>
> - it would be used rarely enough that forcing RWI access was no biggie
> - allowing API facilitated potential abuse (weak, I know)
> - anyone who cared enough could write a script to the RWI
>
> Happy to take arguments against these assumptions....
Well, I'm guessing we care enough and would rather just do it through the
API like everything else we do, instead of writing a hack to play with the
RWI. :)
Does that count? It can't be too hard, I imagine. Just another flag ...
my $resp = $XML_Client->send_cmd(
{
action => 'modify',
object => 'domain',
cookie => $cookie,
attributes => {
data => 'auto_renew',
quiet_expire => 1,
}
}
);
- Colin