We are using HTTP to Create, Update and Delete users from Surgemail at this time.
We have the commands for all of these, but need to know the command for updating a Nightly Rule (Expiry_Rule) -
expire_rule folder="INBOX" age="90" size="0k"
Under what command is this updated.
In general, go to the page in the web admin that adjusts the rule
you want to change, then click 'view source' to see what command it
sends and what variables...
In this case, if you mean the domain level setting, then you would
do it using an http post command that does the equivalent of this...
<form method="POST" action="/cgi/admin.cgi" name="main">
��� <input type=hidden name="domainid" value="0">
��� <input type="text" name="folder_0" size=30 value="INBOX">
��� <input type="text" name="age_0" size=30 value="30">
��� <input type="text" name="size_0" size=30 value="">
��� <input type="text" name="alert_0" size=30 value="">���
<input type="submit" name="cmd_vlist_expire_rule_save"
value="Save Changes" >
ChrisP.