[Mailman-Users] Subject Line on Invite Messages

2006-09-05 Thread Jimmy.do
Hi, Does the VERP_CONFIRMATIONS = Yes only works on certain version of
Mailman? We have Mailman version 2.1.1-5, Python 3.0.4-0.1, and Qmail
(1.03-rhel3) and have set the setting as suggested; but we are still getting
the generic subject line for list subscription confirmation email.
Thanks, 
Jimmy Do 
OMICRON Lab 
12 Greenway Plaza, suite 1510 
Houston, TX 77046 
713-830-4660 x108 
http://www.omicron-lab.com 

=== 
At 20:38 -0700 7/22/04, Mark Sapiro wrote: 
>Toby Reiter wrote: 
> 
>>This has been asked here before, but is there any way to modify the 
>>Subject of the invite message? "confirm 
>>aad5624d316c46234928426cb4a6c57c691d0e7c" is a DEAD WRINGER for spam, 
>>and is likely to be deleted by many of our users. I don't want to be 
>>a bad net citizen and automatically subscribe users to this list, but 
>>the majority of the people who receive the invitation will want to 
>>join (it's for health services trainings through a non-profit they've 
>>already done trainings with, working with the CDC, etc.). But I fear 
>>many will miss out on this invitation for a list they really want to 
>>be on, thinking the message is spam. If the message had a welcome 
>>text, like "An Invitation to Join the Foo List" I think people would 
>>probably read it. 
> 
>set 
>VERP_CONFIRMATIONS = Yes 
>in mm_cfg.py. 


--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp


Re: [Mailman-Users] Subject Line on Invite Messages

2006-09-08 Thread Jimmy.do
Hi Brad, Thanks for the reply.  We did an update of Mailman in RedHat ES 3
and now Mailman is version 2.1.5.1-25.  However, we are still getting the
generic subject line (confirm aad5624d316c46234928426cb4a6c57c691d0e7c) for
list subscription confirmation email.  Attached is the mm_cfg.py we used.
Can you or other Mailman experts take a quick look at it and let us know if
we are doing something wrong?  Or Are we missing some other configuration
option in the Mailman Admin GUI or elsewhere?

Many Thanks,
Jimmy

Contents of mm_cfg.py: 
"""This module contains your site-specific settings.

>From a brand new distribution it should be copied to mm_cfg.py.  If you
already have an mm_cfg.py, be careful to add in only the new settings you
want.  Mailman's installation procedure will never overwrite your mm_cfg.py
file.

The complete set of distributed defaults, with documentation, are in the
file Defaults.py.  In mm_cfg.py, override only those you want to change,
after the

  from Defaults import *

line (see below).

Note that these are just default settings; many can be overridden via the
administrator and user interfaces on a per-list or per-user basis.

"""

###
# Here's where we get the distributed defaults.

from Defaults import *
import pwd, grp

##
# Put YOUR site-specific settings below this line.

##
#Here's where we override shipped defaults with settings #
#suitable for the RPM package.   #
MAILMAN_UID = pwd.getpwnam('mailman')[2]
MAILMAN_GID = grp.getgrnam('mailman')[2]
LOG_DIR = '/var/log/mailman'
QUEUE_DIR   = '/var/spool/mailman/qfiles'

##
#IMPORTANT! - You must set these domain names!   #
# 
# Mailman needs to know about (at least) two fully-qualified domain # names
(fqdn) # # 1) the hostname used in your urls (DEFAULT_URL_HOST) # 2) the
hostname used in email addresses for your domain (DEFAULT_EMAIL_HOST) # #
For example, if people visit your Mailman system with #
"http://www.dom.ain/mailman"; then your url fqdn is "www.dom.ain", # and if
people send mail to your system via "[EMAIL PROTECTED]" then # your email
fqdn is "dom.ain".  DEFAULT_URL_HOST controls the former, # and
DEFAULT_EMAIL_HOST controls the latter.  Mailman also needs to # know how to
map from one to the other (this is especially important # if you're running
with virtual domains).  You use # "add_virtualhost(urlfqdn, emailfqdn)" to
add new mappings.

DEFAULT_URL_HOST   = 'mm_cfg_has_not_been_edited_to_set_host_domains'
DEFAULT_EMAIL_HOST = 'mm_cfg_has_not_been_edited_to_set_host_domains'

# Because we've overriden the virtual hosts above add_virtualhost # MUST be
called after they have been defined.

add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

OWNERS_CAN_ENABLE_PERSONALIZATION = Yes

add_virtualhost('mlists.xyz.com')

# Set to enable VERP-like (more user friendly) confirmations
VERP_PERSONALIZED_DELIVERIES = Yes VERP_CONFIRMATIONS = Yes


===

-Original Message-
From: Brad Knowles [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 05, 2006 5:02 PM
To: [EMAIL PROTECTED]; mailman-users@python.org
Subject: Re: [Mailman-Users] Subject Line on Invite Messages


At 4:20 PM -0500 2006-09-05, <[EMAIL PROTECTED]> wrote:

>  Hi, Does the VERP_CONFIRMATIONS = Yes only works on certain version 
> of  Mailman? We have Mailman version 2.1.1-5, Python 3.0.4-0.1, and 
> Qmail
>  (1.03-rhel3) and have set the setting as suggested; but we are still
getting
>  the generic subject line for list subscription confirmation email.

Looking through the source, Mailman 2.1.5 mentions this option, but 
I've having trouble using Subversion to figure out precisely when 
this was introduced.  I know that the code around this option has 
changed more than once, but that's about all I can tell you right now.

I can tell you that the latest current version right now is version 
2.1.8, and 2.1.9 will be released very soon.  2.1.9rc1 is out now, 
and we're already running it on python.org.  There are some important 
security fixes coming with 2.1.9, so I highly recommend that you get 
this version for your site as soon as it is available.

-- 
Brad Knowles, <[EMAIL PROTECTED]>

"Those who would give up essential Liberty, to purchase a little temporary
Safety, deserve neither Liberty nor Safety."

 -- Benjamin Franklin (1706-1790), reply of the Pennsylvania
 Assembly to the Governor, November 11, 1755

  Founding Individual Sponsor of LOPSA.  See .

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.

Re: [Mailman-Users] Subject Line on Invite Messages

2006-09-12 Thread Jimmy.do
e been defined.

add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

OWNERS_CAN_ENABLE_PERSONALIZATION = Yes

add_virtualhost('mlists.xyz.com')

# Set to enable VERP-like (more user friendly) confirmations 
VERP_PERSONALIZED_DELIVERIES = Yes 
VERP_CONFIRMATIONS = Yes


===

-Original Message-
From: Brad Knowles [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 05, 2006 5:02 PM
To: [EMAIL PROTECTED]; mailman-users@python.org
Subject: Re: [Mailman-Users] Subject Line on Invite Messages


At 4:20 PM -0500 2006-09-05, <[EMAIL PROTECTED]> wrote:

>  Hi, Does the VERP_CONFIRMATIONS = Yes only works on certain version
> of  Mailman? We have Mailman version 2.1.1-5, Python 3.0.4-0.1, and 
> Qmail
>  (1.03-rhel3) and have set the setting as suggested; but we are still
getting
>  the generic subject line for list subscription confirmation email.

Looking through the source, Mailman 2.1.5 mentions this option, but 
I've having trouble using Subversion to figure out precisely when 
this was introduced.  I know that the code around this option has 
changed more than once, but that's about all I can tell you right now.

I can tell you that the latest current version right now is version 
2.1.8, and 2.1.9 will be released very soon.  2.1.9rc1 is out now, 
and we're already running it on python.org.  There are some important 
security fixes coming with 2.1.9, so I highly recommend that you get 
this version for your site as soon as it is available.

-- 
Brad Knowles, <[EMAIL PROTECTED]>

"Those who would give up essential Liberty, to purchase a little temporary
Safety, deserve neither Liberty nor Safety."

 -- Benjamin Franklin (1706-1790), reply of the Pennsylvania
 Assembly to the Governor, November 11, 1755

  Founding Individual Sponsor of LOPSA.  See <http://www.lopsa.org/>.

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/jimmy.do%40omicron-lab.
com

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp


[Mailman-Users] Customization for one-way announcement list

2006-09-21 Thread Jimmy.do
Hi, We have Mailman 2.1.5 and are trying to set up and customize Mailman for
a one-way announcement list for a newsletter.  We have read the various
suggestions in the Mailman FAQ and customize the settings, various txt file
for Email, and the 3 public html pages.  We are encountering some parts
where there is no suggestions in the FAQs.  In particular, they are the
following:

1.  The confirmation html page when someone click on the subscription
confirmation link from within the Email.
2.  The login html page to allow the user to unsubscribe and the options
html page (somelists.domain.com/mailman/options/somelist)

Where can we get to these pages (listed above) to customize? Or 

Are they generated by Mailman on the fly?  If so, is it hard to hack the
code, which module, and is it advisable?

Does the new Mailman 2.1.9 provide more customization otpions?

Many thanks for any suggestions or help.

Sincerely,
Jimmy
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp


[Mailman-Users] %variable for fullname in verify.txt

2006-10-05 Thread Jimmy.do
Hi all, We are trying to customize the verify.txt which is used in the Email
subscription confirmation to the user.  We would like to personalize it by
adding the user's fullname when they registered.  What is the %variable for
the user's fullname we can use in the verify.txt file?  Since the user's
fullname is optional on the registration form so may be blank, does the
verify.txt file support some type of conditional code so only display the
user's fullname when it is not blank?

Thank you in advance for any suggestion.

Sincerly,
Jimmy

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp