[Mailman-Users] Adding archive link to mail footer?

2012-03-05 Thread Sascha Rissel
Hello,

is there a nice way of adding a link to the list's archive to msg_footer?
Like it is done with the link to the list info page
 %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Regards,
Sascha.
--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Mailman + postfix delivery slow

2012-03-05 Thread Jesús Rivas
hi list, i have to change the server because the old server is in coma, 
so i put ubuntu with mailman and postifx.


everything works fine, except the delivery is slow, about 20 per 
minute,  someone help me please


attached the config file for main.cf of postfix and mm_cfg.py of mailman

Than a lot


Mailman configuration
###
#Here's where we get the distributed defaults.#
from Defaults import *
##
# Put YOUR site-specific configuration below, in mm_cfg.py . #
# See Defaults.py for explanations of the values.#
#-
# The name of the list Mailman uses to send password reminders
# and similar. Don't change if you want mailman-owner to be
# a valid local part.
MAILMAN_SITE_LIST = 'mailman'

### added from old configuration ###
from socket import *
try:
fqdn = getfqdn()
except:
fqdn = 'mm_cfg_has_unknown_host_domains'
###

#-
# If you change these, you have to configure your http server
# accordingly (Alias and ScriptAlias directives in most httpds
#DEFAULT_URL_PATTERN = 'http://%s//mailman/'
DEFAULT_URL_PATTERN = 'http://%s/cgi-bin/mailman/'
PRIVATE_ARCHIVE_URL = '/cgi-bin/mailman/private'
IMAGE_LOGOS = '/images/mailman/'

#-
# Default domain for email addresses of newly created MLs
DEFAULT_EMAIL_HOST = 'mail.evangelizacionactiva.org.mx'
#-
# Default host for web interface of newly created MLs
DEFAULT_URL_HOST   = 'evangelizacionactiva.org.mx'
###
DEFAULT_HOST_NAME = mail.evangelizacionactiva.org.mx
SMTP_MAX_RCPTS = 1
###
#-
# Required when setting any of its arguments.
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

#-
# The default language for this server.
DEFAULT_SERVER_LANGUAGE = 'es'

#-
# Iirc this was used in pre 2.1, leave it for now
USE_ENVELOPE_SENDER= 0  # Still used?

#-
# Unset send_reminders on newly created lists
DEFAULT_SEND_REMINDERS = 0

#-
# Uncomment this if you configured your MTA such that it
# automatically recognizes newly created lists.
# (see /usr/share/doc/mailman/README.Exim4.Debian or
# /usr/share/mailman/postfix-to-mailman.py)
# MTA=None   # Misnomer, suppresses alias output on newlist
# postfix-to-mailman.py), but be sure to see
# /usr/share/doc/mailman/README.Debian first.
MTA='Postfix'

#-
# Uncomment if you want to filter mail with SpamAssassin. For
# more information please visit this website:
# http://www.jamesh.id.au/articles/mailman-spamassassin/
# GLOBAL_PIPELINE.insert(1, 'SpamAssassin')

# Note - if you're looking for something that is imported from mm_cfg, 
but you
# didn't find it above, it's probably in 
/usr/lib/mailman/Mailman/Defaults.py.


#
Postfix configuration main.cf
#

# See /usr/share/postfix/main.cf.dist for a commented, more complete version

# Debian specific:  Specifying a file name will cause the first
# line of that file to be used as the name.  The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname

smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no

# appending .domain is the MUA's job.
append_dot_mydomain = no

# Uncomment the next line to generate delayed mail warnings
#delay_warning_time = 4h

readme_directory = no

# TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=no
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.

myhostname = mail.evangelizacionactiva.org.mx
#server-respaldo
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = mail.evangelizacionactiva.org.mx, server-respaldo, 
localhost.localdomain, localhost

relayhost =
mynetworks = 127.0.0.0/8 [:
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
inet_protocols = all
local_destination_recipient_limit = 1
local_destination_concurrency_limit = 1


unknown_local_recipient_reject_code = 550

#Para que platiquen los server antes de aceptar un correo.
smtpd_helo_required = yes


Re: [Mailman-Users] Adding archive link to mail footer?

2012-03-05 Thread Mailman Admin
Hello Sascha Rissel


On 2012-03-05 16:26, Sascha Rissel wrote:
 
 is there a nice way of adding a link to the list's archive to msg_footer?
 Like it is done with the link to the list info page
 %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
 

Sure.

For private archives use
%(web_page_url)sprivate/%(_internal_name)s

And for public ones use
%(web_page_url)spublic/%(_internal_name)s


Kind regards,
Christian Mack
--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Adding archive link to mail footer?

2012-03-05 Thread Mark Sapiro
Mailman Admin wrote:

For private archives use
%(web_page_url)sprivate/%(_internal_name)s


Yes.


And for public ones use
%(web_page_url)spublic/%(_internal_name)s


No. This won't work in a standard Mailman installation. It might work
if you have set

PUBLIC_ARCHIVE_URL = 'http://%(hostname)s/mailman/public/%(listname)s'

in mm_cfg.py and put the appropriate alias for mailman/public in your
web server, but for defauly public archives you need to use something
like

http://www.example.com/pipermail/%(list_name)s

Note that in msg and digest headers and footers, %(list_name)s and
%(_internal_name)s are equivalent, but %(_internal_name)s is a
deprecated usage (even though it is still in the default footer).

Note also that in the above, www.example.com could be replaced with
%(host_name)s, but only if the list's web and email hosts are the same
as %(host_name)s is the list's email host.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Mailman + postfix delivery slow

2012-03-05 Thread Mark Sapiro
Jesús Rivas wrote:

so i put ubuntu with mailman and postifx.

everything works fine, except the delivery is slow, about 20 per
minute,  someone help me please


See the FAQ at http://wiki.list.org/x/rIA9.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org