Differences From Artifact [3bdcbbd023]:
- File src/security_audit.c — part of check-in [c64f28d26c] at 2025-10-10 17:20:25 on branch trunk — Make use of the improved /help/CMD syntax everywhere, in place of the legacy /help?cmd=CMD syntax. (user: drh size: 37206) [more...]
To Artifact [b1deba7f3e]:
- File src/security_audit.c — part of check-in [0151018383] at 2025-11-03 20:39:42 on branch trunk — Add a note to the email-listid setting help text and editor entry that this value is required for unsubscribe links to work. In /secaudit0, emit a warning if notifications are enabled but email-listid is empty. This is in response to [forum:1245b69cfa09c26e|forum post 1245b69c]. (user: stephan size: 37458) [more...]
| ︙ | ︙ | |||
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 |
@ <li>%h(azCSP[ii])
}
@ </ol>
}
fossil_free(azCSP);
if( alert_enabled() ){
@ <li><p> Email alert configuration summary:
@ <table class="label-value">
stats_for_email();
@ </table>
}else{
@ <li><p> Email alerts are disabled
}
| > > > > > > | 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 |
@ <li>%h(azCSP[ii])
}
@ </ol>
}
fossil_free(azCSP);
if( alert_enabled() ){
char * zListId = db_get("email-listid", 0);
@ <li><p> Email alert configuration summary:
if( !zListId || !zListId[0] ){
@ <br><strong>WARNING:</strong> <code>email-listid</code> is not set,
@ so notifications will not include unsubscribe links.
}
fossil_free(zListId);
@ <table class="label-value">
stats_for_email();
@ </table>
}else{
@ <li><p> Email alerts are disabled
}
|
| ︙ | ︙ |