When this file is present, mlmmj will stop issueing bounce probes. It is
intended to temporary disable the bounce probe for debugging purpose.
+
+
+ ยท send (list)
+
+ The file contains a list of email address for which the mail will be sent
+ unconditionally. It will not be moderated, nor subject to subonlypost, nor
+ modnonsubposts.
struct email_container rpemails = { 0, NULL };
struct email_container dtemails = { 0, NULL };
struct strlist *access_rules = NULL;
+ struct strlist *list_rules = NULL;
struct strlist *delheaders = NULL;
struct strlist allheaders;
struct strlist *listaddrs = NULL;
}
}
+ list_rules = ctrlvalues(listdir, "send");
+ if (list_rules != NULL) {
+ for (i = 0; i < list_rules->count; i++) {
+ if (strcasecmp(posteraddr, list_rules->strs[i]) == 0) {
+ send = 1;
+ break;
+ }
+ }
+ }
+
subonlypost = statctrl(listdir, "subonlypost");
modonlypost = statctrl(listdir, "modonlypost");
modnonsubposts = statctrl(listdir, "modnonsubposts");