522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
|
/* Here is where the actual work of the backoffice happens */
alert_backoffice(0);
smtp_cleanup();
}
/*
** COMMAND: backoffice
**
** Usage: backoffice [-R repository]
**
** Run backoffice processing. This might be done by a cron job or
** similar to make sure backoffice processing happens periodically.
*/
void backoffice_command(void){
|
|
|
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
|
/* Here is where the actual work of the backoffice happens */
alert_backoffice(0);
smtp_cleanup();
}
/*
** COMMAND: backoffice*
**
** Usage: backoffice [-R repository]
**
** Run backoffice processing. This might be done by a cron job or
** similar to make sure backoffice processing happens periodically.
*/
void backoffice_command(void){
|