Changes between Version 10 and Version 11 of ProjectTasks
- Timestamp:
- May 17, 2018, 1:44:17 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProjectTasks
v10 v11 71 71 notify.php:: 72 72 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. 73 77 74 78 The XML for these is: … … 152 156 </period> 153 157 </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> 154 170 </tasks> 155 171 }}}