Greetings,
I cannot "Set everyone's moderation bit, including those members not
currently visible" to on, in the membership management section in any
list.
I have set
OWNERS_CAN_ENABLE_PERSONALIZATION = 1
In /Mailman/mm_cfgy.py
But still have the same problem.
Also I cannot set or unset digest for all users, any thing I overlooked?
This was happening before the changes made in the next issue explained
below.
In the last couple of days we had to reconfigure reverse mapping in DNS
for the server, and now the URLs that Mailman builds in the list admin
and info pages are pointing to the old host name, is there a way of
correcting this, without re-installing mailman from scratch?
Any pointers, clues will be greatly appreciated.
Thank you for your assistance.
Charles Sebold said:
> On 24 Shevat 5762, Clark Cooper wrote:
>
>> Is there a way in Mailman to append text to each posts as done with a
>> .signature file?
>
> On the web admin interface, go to page "Regular-member (non-digest)
> Options" and change the option labeled "Footer added to mail sent to
> regular list members". Is that what you were after?
> --
> Charles Sebold 25th of Shevat,
BTW how can I add taglines, i.e. random strings picked frpm a text file
where they lies every one on a separate line. ALmost every list manager
has tag lines administration, but I did not find them in mailman...
Cheers,
---- Avv. Tiziano Solignani
via Bonesi n. 15 - Vignola (MO)
tel. 059 76.19.26 - fax 059 77.04.535
mail: solignani(a)solignani.it
web: http://www.solignani.it
chat: avv_tiziano_solignani(a)hotmail.com
PC Open magazine - www.pcopen.agepe.it
"rarest jewel is a true heart"
--
---- Avv. Tiziano Solignani
via Bonesi n. 15 - Vignola (MO)
tel. 059 76.19.26 - fax 059 77.04.535
mail: solignani(a)solignani.it
web: http://www.solignani.it
chat: avv_tiziano_solignani(a)hotmail.com
PC Open magazine - www.pcopen.agepe.it
"rarest jewel is a true heart"
One of my associates set up content filters to reject attachments and other
things. He created a custom message to explain this. Now he wants to change
the message, but I cannot locate which file in /mailman holds the text (and
I did look at all of them). Can somebody tell me how I could find it. I do
know text fragments.
Thanks!!!
--Warren
Upgrade script broke (not the first time).
from Mailman import MailList
from Mailman.LockFile import TimeOutError
from Mailman.i18n import _
I'm getting error:
Traceback (most recent call last):
File "/usr/lib/mailman/bin/update", line 51, in ?
from Mailman.i18n import _
ImportError: No module named i18n
It doesn't balk on the line before, so it doesn't seem to be a path
issue.
When I comment that line out (for grins), it balks on:
from Mailman.Queue.Switchboard import Switchboard
from Mailman import OldStyleMemberships
from Mailman.MemberAdaptor import BYBOUNCE, ENABLED
Any clues?
--
_Deirdre http://deirdre.net
"Cannot run out of time. There is infinite time. You are finite.
Zathras is finite. This....is wrong tool." -- Zathras
I just double checked and it works fine on all my sites...
Do you have any lists with "=" in the name?
If that is the case, then you would need to modify the first line and
add in an additional cut:
SIZ=`grep -i "post to $i" $POST |grep success |cut -f2- -d, | \
cut -f2 -d= |cut -f1 -d,`
k=0; for j in $SIZ; do k=$(( j + k )); done
echo " Total bytes" = $k >> $TMPFILE
This additional cut will remove the listname from the line before using
the "=" to isolate the size of the message
If that doesn't do it for you, then drop a copy of your post log and the
name of the list with the problems and I'll see what needs to be
modified.
Hope this is helpful - Jon Carnes
On Fri, 2004-02-27 at 10:24, Al Black wrote:
> Hi Jon,
>
> I trying out the mm_stats script you wrote (see
> http://www.mail-archive.com/mailman-users@python.org/msg15378.html) and
> have a couple of little bugs you might be able to help me with. I'm using
> version 2.1.4 of mailman.
>
> I get two errors running the script from command line.
>
> The first is:
>
> ===: not found
>
> I'm pretty sure this happens when the script hits a list we have that has
> no traffic.
>
> The second one is the one I'm more concerned with:
>
> /usr/home/lamps/test/mm_stats: arith: syntax error: " j + k "
>
> What seems to be happening is that the lines:
> # SIZ=`grep -i "post to $i" $POST |grep success |cut -f2 -d= |cut -f1 -d,`
> # k=0; for j in $SIZ; do k=$(( j + k )); done
>
> isn't cutting the size=field properly.
>
> Any suggestions for a fix? Otherwise the script is running great, and it
> will make my list members happy. (In fact maybe it, or a bunch of
> variations on it, could be included in the mailman 3 suite.)
>
> Thanks in advance,
> al
>
>
> # Mailman's log file to be examined for stats
> POST=/usr/home/lamps/usr/local/mailman/logs/post
>
>
> # create temp file to collect stats
> TMPFILE=`mktemp /tmp/mm_stats.XXXXXX` || exit 1
>
>
> LIST="`/usr/home/lamps/usr/local/mailman/bin/list_lists |awk '{print $1}'
> |sed -n '2,$p'`"
> for i in $LIST
> do
> echo "Stats from local Mailman list: $i" > $TMPFILE
> echo " " >> $TMPFILE
> echo -n " Starting: " >> $TMPFILE
> head -1 $POST |cut -f1-3 "-d " >> $TMPFILE
> echo -n " Ending: " >> $TMPFILE
> tail -1 $POST |cut -f1-3 "-d " >> $TMPFILE
> echo " ======================================= " >> $TMPFILE
> echo -n "Total posts to the list: " >> $TMPFILE
> grep -i "post to $i " $POST |wc -l >> $TMPFILE
> echo -n "Total SUCCESSFUL posts to the list: " >> $TMPFILE
> grep -i "post to $i " $POST |grep success |wc -l >> $TMPFILE
> # SIZ=`grep -i "post to $i" $POST |grep success |cut -f2 -d= |cut -f1 -d,`
> # k=0; for j in $SIZ; do k=$(( j + k )); done
> echo " Total bytes" = $k >> $TMPFILE
> echo " " >> $TMPFILE
> echo "Top 10 posters to the list:" >> $TMPFILE
> grep -i "post to $i " $POST |cut -f 10 "-d " |sort |uniq -c \
> |sort -bgr |head -10 >> $TMPFILE
> echo " " >> $TMPFILE
> # Mail the collected stats off to the list admin and cc the mailman user
> # mail -s "Mailman Stats for List: $i" -c mailman $i-admin <$TMPFILE
> # mail the collected Stats for lists to the server admin
> mail -s "Mailman Stats for List: $i" server-admin <$TMPFILE
> done
>
Hi,
I've installed mailman to use as a mailing list (as opposed a
discussion list) and I want to do something similar to what can be done
in, say, Outlook when sending bulk emails and merging in data fields.
Specifically, I want mailman to automatically insert the subscriber's
email address into the body or footer of my message. Is it possible to
insert a field in this way?
Thanks,
B.
I have installed mailman-2.1.4.tgz in RedHat Linux 9.0 and using
postfix-1.1.12-1 .
My Problem is i am not getting mail which i sent to the list named
systest.
but in /var/log/maillog , it shows status as sent .i don't know what
happend to that mail.
I checked in mailman FAQ.still i couldn't solve this problem.
can any one give me a good source abt configuring mailman with postfix.
can any one help me to solve this.
thank you,
dvp
Hi, first of all congrats on this great software
I need a little bit of help with the configuration....
What we are basically gonna use the mail list for is for mass emails (i have
a site where i post upcomin music events happening in the area, and we send
weekly emails with upcomin events to subscribed persons)
what setting should i use to do this??
I only want one email address to be able to send emails to everyone.
thanks!!!
-Juan