Changes between Version 10 and Version 11 of ProjectTasks


Ignore:
Timestamp:
May 17, 2018, 1:44:17 PM (6 years ago)
Author:
Kevin Reed
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProjectTasks

    v10 v11  
    7171 notify.php::
    7272   Send notification digest emails to users.  Recommended period: 1 day
     73 delete_expired_tokens.php::
     74   Delete tokens stored on the token table (such as tokens used in confirming email address change or confirming the user wants to delete their account).  Recommended period: 1 day
     75 delete_expired_users_and_hosts.php::
     76   Delete users and hosts off of the user_deleted and host_deleted table when they are older than 60 days.  This is the final step in the delete account process.  Recommended period: 1 day.
    7377
    7478The XML for these is:
     
    152156      </period>
    153157    </task>
     158    <task>
     159        <cmd>run_in_ops ./delete_expired_tokens.php</cmd>
     160        <period>24 hours</period>
     161        <disabled>0</disabled>
     162        <output>delete_expired_tokens.out</output>
     163    </task>
     164    <task>
     165        <cmd>run_in_ops ./delete_expired_users_and_hosts.php</cmd>
     166        <period>24 hours</period>
     167        <disabled>0</disabled>
     168        <output>delete_expired_users_and_hosts.out</output>
     169    </task>
    154170  </tasks>
    155171}}}