From: Ben Schmidt <mail_ben_schmidt@yahoo.com.au>
To: mlmmj@mlmmj.org
Subject: PATCH: silent subscription
Date: Tue, 26 Jan 2010 10:15:57 +0000 [thread overview]
Message-ID: <4B5EC0DD.1020106@yahoo.com.au> (raw)
[-- Attachment #1: Type: text/plain, Size: 651 bytes --]
Got bitten by this one, too! The documentation for mlmmj-sub has an interesting
use of the word 'silent'. I've changed the documentation and added an option to
actually allow silent subscription even when moderation is turned on.
I also added a tunable to disable the message to the requester. Mail moderation
doesn't spam the requester each time they send a mail, so why should subscription
requests? (Though notifying posters that their mail is awaiting moderation is a
feature I will need, too, and will send a patch shortly for that as it should be
fairly straightforward.)
Patch attached. Could it be included in mlmmj?
Cheers,
Ben.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: mlmmj-sub-silent.patch --]
[-- Type: text/x-patch; name="mlmmj-sub-silent.patch", Size: 6246 bytes --]
diff -r 99ec9f826d35 TUNABLES
--- a/TUNABLES Tue Jan 26 18:25:03 2010 +1100
+++ b/TUNABLES Tue Jan 26 21:11:41 2010 +1100
@@ -158,6 +158,12 @@
when it was rejected due to an access rule (see 'access') or whether it's a
subscribers only posting list (see 'subonlypost').
+ ��� nosubmodmails (boolean)
+
+ This switch turns off whether mlmmj sends out notification about
+ subscription being moderated to the person requesting subscription
+ (see 'submod').
+
��� smtpport (normal)
In this file a port other than port 25 for connecting to the relayhost
diff -r 99ec9f826d35 contrib/web/perl-admin/conf/tunables.pl
--- a/contrib/web/perl-admin/conf/tunables.pl Tue Jan 26 18:25:03 2010 +1100
+++ b/contrib/web/perl-admin/conf/tunables.pl Tue Jan 26 21:11:41 2010 +1100
@@ -156,6 +156,12 @@
"This switch turns off whether mlmmj sends out notification about postings ".
"being rejected due to a subscribers only posting list (see 'subonlypost').");
+mlmmj_boolean("nosubmodmails",
+ "No subscription moderated mails",
+ "This switch turns off whether mlmmj sends out notification about ".
+ "subscription being moderated to the person requesting subscription".
+ "(see 'submod').");
+
mlmmj_boolean("nodigesttext",
"No digest text summary",
"This switch turns off whether digest mails will have a text part with a thread ".
diff -r 99ec9f826d35 contrib/web/php-admin/conf/tunables.pl
--- a/contrib/web/php-admin/conf/tunables.pl Tue Jan 26 18:25:03 2010 +1100
+++ b/contrib/web/php-admin/conf/tunables.pl Tue Jan 26 21:11:41 2010 +1100
@@ -156,6 +156,12 @@
"This switch turns off whether mlmmj sends out notification about postings ".
"being rejected due to a subscribers only posting list (see 'subonlypost').");
+mlmmj_boolean("nosubmodmails",
+ "No subscription moderated mails",
+ "This switch turns off whether mlmmj sends out notification about ".
+ "subscription being moderated to the person requesting subscription".
+ "(see 'submod').");
+
mlmmj_boolean("nodigesttext",
"No digest text summary",
"This switch turns off whether digest mails will have a text part with a thread ".
diff -r 99ec9f826d35 man/mlmmj-sub.1
--- a/man/mlmmj-sub.1 Tue Jan 26 18:25:03 2010 +1100
+++ b/man/mlmmj-sub.1 Tue Jan 26 21:11:41 2010 +1100
@@ -1,18 +1,20 @@
-.TH mlmmj-sub "1" "September 2004" mlmmj-sub
+.TH mlmmj-sub "1" "January 2010" mlmmj-sub
.SH NAME
mlmmj-sub \- subscribe address to a mailinglist run by mlmmj
.SH SYNOPSIS
.B mlmmj-sub
\fI-L /path/to/list -a john@doe.org \fR[\fI-c\fR | \fI-C\fR] \fR[\fI-d\fR | \fI-n\fR]
-[\fI-h\fR] [\fI-U\fR] [\fI-V\fR]
+[\fI-f\fR] [\fI-h\fR] [\fI-U\fR] [\fI-V\fR]
.HP
\fB\-a\fR: Email address to subscribe
.HP
\fB\-c\fR: Send welcome mail
.HP
+\fB\-C\fR: Request mail confirmation
+.HP
\fB\-d\fR: Subscribe to digest version of the list
.HP
-\fB\-C\fR: Request mail confirmation
+\fB\-f\fR: Force subscription (do not moderate)
.HP
\fB\-h\fR: This help
.HP
@@ -44,8 +46,11 @@
Normally a mail is sent to the subscriber if the address is already subscribed
to the list. If the \fB\-s\fR switch is used such a mail will not be sent.
-When neither \fB\-c\fR nor \fB\-C\fR are specified, subscription silently
-happens.
+Subscription may be moderated (if <listdir>/control/submod exists) unless the
+\fB\-f\fR switch is given.
+
+To ensure a silent subscription, use \fB\-f\fR, but neither \fB\-c\fR
+nor \fB\-C\fR.
.SH "SEE ALSO"
mlmmj-unsub(1), setuid(2)
.SH AUTHORS
diff -r 99ec9f826d35 src/mlmmj-sub.c
--- a/src/mlmmj-sub.c Tue Jan 26 18:25:03 2010 +1100
+++ b/src/mlmmj-sub.c Tue Jan 26 21:11:41 2010 +1100
@@ -172,13 +172,19 @@
log_error(LOG_ARGS, "execl() of '%s' failed", mlmmjsend);
exit(EXIT_FAILURE);
}
-
+
myfree(to);
myfree(replyto);
myfree(moderators);
/* send mail to requester that the list is submod'ed */
+ if (statctrl(listdir,"nosubmodmails")) {
+ myfree(listname);
+ myfree(listfqdn);
+ exit(EXIT_SUCCESS);
+ }
+
from = concatstr(4, listname, listdelim, "bounces-help@", listfqdn);
queuefilename = prepstdreply(listdir, "submod-requester", "$listowner$",
subaddr, NULL, 0, NULL, NULL, NULL);
@@ -429,11 +435,12 @@
static void print_help(const char *prg)
{
printf("Usage: %s -L /path/to/list [-a john@doe.org | -m str]"
- "[-c] [-C] [-h]\n [-L] [-d | -n] [-s] [-U] [-V]\n"
+ "[-c] [-C] [-f]\n [-h] [-L] [-d | -n] [-s] [-U] [-V]\n"
" -a: Email address to subscribe \n"
" -c: Send welcome mail\n"
" -C: Request mail confirmation\n"
" -d: Subscribe to digest of list\n"
+ " -f: Force subscription (do not moderate)\n"
" -h: This help\n"
" -L: Full path to list directory\n"
" -m: moderation string\n"
@@ -441,8 +448,8 @@
printf(" -s: Don't send a mail to subscriber if already subscribed\n"
" -U: Don't switch to the user id of the listdir owner\n"
" -V: Print version\n"
- "When no options are specified, subscription silently "
- "happens\n");
+ "When no options are specified, subscription may be "
+ "moderated;\nto ensure a silent subscription, use -f\n");
exit(EXIT_SUCCESS);
}
@@ -487,6 +494,7 @@
int subconfirm = 0, confirmsub = 0, opt, subfilefd, lock, notifysub;
int changeuid = 1, status, digest = 0, nomail = 0, i = 0, submod = 0;
int groupwritable = 0, sublock, sublockfd, nogensubscribed = 0, subbed;
+ int force = 0;
size_t len;
struct stat st;
pid_t pid, childpid;
@@ -501,7 +509,7 @@
mlmmjsend = concatstr(2, bindir, "/mlmmj-send");
myfree(bindir);
- while ((opt = getopt(argc, argv, "hcCdm:nsVUL:a:")) != -1) {
+ while ((opt = getopt(argc, argv, "hcCdfm:nsVUL:a:")) != -1) {
switch(opt) {
case 'a':
address = optarg;
@@ -515,6 +523,9 @@
case 'd':
digest = 1;
break;
+ case 'f':
+ force = 1;
+ break;
case 'h':
print_help(argv[0]);
break;
@@ -670,7 +681,7 @@
subbed = is_subbed_in(subddirname, address);
listdelim = getlistdelim(listdir);
if(modstr == NULL)
- submod = statctrl(listdir, "submod");
+ submod = !force && statctrl(listdir, "submod");
if(subbed) {
if(subconfirm) {
next reply other threads:[~2010-01-26 10:15 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-26 10:15 Ben Schmidt [this message]
2010-01-26 11:58 ` PATCH: silent subscription Ben Schmidt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B5EC0DD.1020106@yahoo.com.au \
--to=mail_ben_schmidt@yahoo.com.au \
--cc=mlmmj@mlmmj.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.