Re: [Mailman-Users] Mailman & POSTFIX Configuration Help

2012-08-18 Thread Geoff Shang

Hi,

I'm not a Postfix guru, but...

On Fri, 17 Aug 2012, Futchko, Rose wrote:


Basically, POSTFIX has been configured for base email to be sent to
x...@mail-test.company.org and I would like the mail list to use
x...@listtest.company.org

{snip}

virtual_alias_maps = hash:/etc/postfix/virtual
mydestination = $myhostname, listtest.$mydomain


I think here is your problem.  You've set up your Mailman aliases as being 
virtual but you've put listtest in mydestination (which makes it not 
virtual).


Instead, I'd recommend doing:

virtual_mailbox_domains = listtest.company.org


MM_CFG.PY
DEFAULT_URL_HOST   = 'listtest.company.org'
DEFAULT_EMAIL_HOST = 'listtest.company.org'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
MTA = 'Postfix'


You'll also need to add:

POSTFIX_STYLE_VIRTUAL_DOMAINS = ['listtest.company.org']

for Mailman to populate the virtual file when new lists are created.

HTH,
Geoff.

--
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] Alternatives for Yahoo Groups like Web Features

2012-08-18 Thread Brad Knowles
On Aug 7, 2012, at 11:16 AM, Jason Glazer  wrote:

> a) a way for designated members to upload files that others can download

A wiki could solve this problem.

> b) a way for designated members to add events to a shared calendar that 
> anyone can see

Hmm.  No good shared group solutions in this space that I know of.  Google lets 
you have a group calendar that can be shared read-only, but you want to 
carefully control who is allowed to make changes to it.

> c) a way to conduct simple polls to gauge interest in topics

SurveyMonkey and PollDaddy are two solutions in this space.  I know some of the 
SurveyMonkey folks in SF -- they're good people.

> d) a way for members to add links to a page to build up a library of good 
> links
> 
> e) a way to create a FAQ page
> 
> f) perhaps a wiki-like way to create and edit pages in a freeform basis

I think a wiki would be at least a good way to solve all these problems, if not 
the best way.

> What I am looking for are suggestions on what has worked well together with 
> an existing mailing list. What have others used and found easy to administer 
> and easy for list members to use.

The problem is that you're not going to find a unified solution to all these 
problems.  You can run separate services for different parts of the problem 
space, as we do for list.org -- the mailing lists are hosted at python.org 
(they came first), the main website is hosted on private servers that few 
people have access to and mirrored by the fine folks at gnu.org (among others), 
the wiki is hosted by Atlassian on behalf of list.org, and there are various 
bug tracking systems that have been tried out over the years.

But those are still multiple separate services, located at various different 
locations, and no one person that I know of (other than maybe Barry) has had a 
hand in setting each of them up or is continuing to be involved in their 
ongoing maintenance.

> Any suggestions?

The biggest suggestion I'd make is to select tools based primarily on how 
useful they will be today and how easy they will be to administer on an ongoing 
basis once they are initially configured.

Don't waste time "overbuying" for future capacity and features that you may not 
ever need, especially since that may make it less likely that the system in 
question actually gets launched in the first place -- witness the various bug 
tracking systems that we've tried to use over the years.

--
Brad Knowles 
LinkedIn Profile: 

--
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 Configuration Help

2012-08-18 Thread Futchko, Rose
I am writing for some help regarding Postfix configuration. 

I cannot seem to get POSTFIX configured properly to transfer mail to the
mailing list installed on the same server. I followed many steps over
the last few days, and the last one I followed is at
http://www.postfix.org/VIRTUAL_README.html under the section Mailing
Lists.

Can someone please look at this and let me know what I am missing?

Basically, POSTFIX has been configured for base email to be sent to
x...@mail-test.company.org and I would like the mail list to use
x...@listtest.company.org

DYN-DNS 
listtest.company.orgA   216.111.222.85   
listtest.company.orgMX  216.111.222.85   
listtest.company.orgTXT "v=spf1 a ptr mx
ip4:216.111.222.85 mx:mail-test.company.org -all"

mail-test.company.org   A   216.111.222.85   
mail-test.company.org   MX  216.111.222.85   
mail-test.company.org   TXT "v=spf1 a ptr mx
ip4:216.111.222.85 mx:mail-test.company.org -all"

MAIN.CF
myhostname = mail-test.company.org
mydomain = company.org
myorigin = $hostname
alias_maps = hash:/etc/aliases, hash:/etc/mailman/aliases alias_database
= hash:/etc/aliases, hash:/etc/mailman/aliases recipient_delimiter = +
virtual_alias_maps = hash:/etc/postfix/virtual
mydestination = $myhostname, listtest.$mydomain

/etc/postfix/virtual:
listname-requ...@listtest.company.org   listname-request
listn...@listtest.company.org   listname
owner-listn...@listtest.company.org owner-listname

/etc/aliases:
listname: "/usr/lib/mailman/mail/mailman post mailman"
owner-listname: ...
listname-request: ...

MM_CFG.PY
DEFAULT_URL_HOST   = 'listtest.company.org'
DEFAULT_EMAIL_HOST = 'listtest.company.org'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST) MTA = 'Postfix'

/var/log/maillog

The first part of the log shows the rejection of listtest.company.org --
whereas the second part shows successful transfer to
mail-test.company.org

Aug 17 15:46:50 app02-listserv postfix/smtpd[19870]: NOQUEUE: reject:
RCPT from Mail1.company.org[66.173.196.101]: 554 5.7.1
: Relay access denied;
from= to= proto=SMTP
helo= Aug 17 15:46:50 app02-listserv
postfix/cleanup[19877]: D3F93209F1:
message-id=<050c37c3bc21cc4483ac395bafec94e506116...@mail1.informs.org>
Aug 17 15:46:50 app02-listserv postfix/smtpd[19870]: disconnect from
Mail1.company.org[66.173.196.101]

Aug 17 15:46:50 app02-listserv postfix/qmgr[19197]: D3F93209F1:
from=, size=6670, nrcpt=1 (queue active) Aug 17
15:46:50 app02-listserv postfix/cleanup[19877]: F37B120A3B:
message-id=<050c37c3bc21cc4483ac395bafec94e506116...@mail1.informs.org>
Aug 17 15:46:51 app02-listserv postfix/qmgr[19197]: F37B120A3B:
from=, size=6819, nrcpt=1 (queue active) Aug 17
15:46:51 app02-listserv postfix/local[19878]: D3F93209F1:
to=, relay=local, delay=0.18,
delays=0.17/0.01/0/0, dsn=2.0.0, status=sent (forwarded as F37B120A3B)
Aug 17 15:46:51 app02-listserv postfix/qmgr[19197]: D3F93209F1: removed

Any help would be greatly appreciated. Thank you.
--
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] Postfix and virtual user ( relay dovecot -> user unknown )

2012-08-18 Thread Sébatien Andreatta
Hello,

I have been looking for weeks on google , but i have not found valid answer
:

How to integrate Mailman with postfix without the use of
postfix-to-mailman.py script wich is not officialy supported ?

I have a working installation : Postfix -> Amavisd ( clamd , spamassassin )
And dovecot

I followed all the howto that i have found but it still doesn't work.

I would like to have all my lists on a subdomain : lists.mydomain.be

So , now here is my configuration :

postconf -n

alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases, hash:/etc/mailman/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
content_filter = amavisfeed:[127.0.0.1]:10024
daemon_directory = /usr/libexec/postfix
data_directory = /var/lib/postfix
debug_peer_level = 2
html_directory = no
inet_interfaces = all
inet_protocols = all
mail_owner = postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
mydestination = $myhostname, localhost.$mydomain, localhost,
lists.mydomain.be
mydomain = mydomain.be
myhostname = smeagoln.mydomain.be
myorigin = $mydomain
newaliases_path = /usr/bin/newaliases.postfix
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES
recipient_delimiter = +
relay_domains = $mydestination
relayhost = relay.domain.be
sample_directory = /usr/share/doc/postfix-2.6.6/samples
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtpd_banner = $myhostname ESMTP $mail_name
unknown_local_recipient_reject_code = 550
virtual_alias_maps = ldap:/etc/postfix/ldap-aliases.cf,
hash:/etc/mailman/virtual-mailman
virtual_gid_maps = static:493
virtual_mailbox_base = /var/mail/vhosts/
virtual_mailbox_domains = ldap:/etc/postfix/ldap-domains.cf
virtual_mailbox_maps = ldap:/etc/postfix/ldap-accounts.cf
virtual_transport = dovecot
virtual_uid_maps = static:493

mm_cfg.py

DEFAULT_URL_HOST   ='www.mydomain.be'
DEFAULT_EMAIL_HOST = 'smeagoln.mydomain.be'

MTA = 'Postfix'
POSTFIX_STYLE_VIRTUAL_DOMAINS = ['lists.mydomain.be']

maillog :

Aug 18 19:22:47 mydomain postfix/qmgr[6085]: F05353E92: from=<
cru...@mydomain.be>, size=914, nrcpt=1 (queue active)
Aug 18 19:22:47 mydomain dovecot: imap-login: Login: user=<
cru...@mydomain.be>, method=PLAIN, rip=::1, lip=::1, mpid=6139, secured
Aug 18 19:22:48 mydomain amavis[4479]: (04479-05) Passed CLEAN, MYNETS
LOCAL [127.0.0.1] [127.0.0.1]  -> ,
Message-ID: <1d504d6a1f2f9954ecc5ab2f4a193...@mydomain.be>, mail_id:
zAsh0XT4N+qM, Hits: -0.999, size: 510, queued_as: F05353E92, 5437 ms
Aug 18 19:22:48 mydomain dovecot: imap(cru...@mydomain.be): Disconnected:
Logged out bytes=82/572
Aug 18 19:22:48 mydomain postfix/lmtp[6123]: BE3CE3E8F: to=,
orig_to=, relay=127.0.0.1[127.0.0.1]:10024,
delay=6.8, delays=0.31/0.49/0.25/5.7, dsn=2.0.0, status=sent (250 2.0.0 Ok,
id=04479-05, from MTA([127.0.0.1]:10025): 250 2.0.0 Ok: queued as F05353E92)
Aug 18 19:22:48 mydomain postfix/qmgr[6085]: BE3CE3E8F: removed
Aug 18 19:22:48 mydomain dovecot: imap(cru...@mydomain.be): Disconnected:
Logged out bytes=307/8873
Aug 18 19:22:49 mydomain postfix/pipe[6138]: F05353E92: to=,
relay=dovecot, delay=2.4, delays=0.2/1.3/0/0.86, dsn=5.1.1, status=bounced
(user unknown)


Mailman version : 2.1.12 ( So , I can't use VIRTUAL_MAILMAN_LOCAL_DOMAIN )

So,  how can I do for deliver all mail for t...@lists.mydomain.be by local
agent and so, use alias_maps ?

Thanks for your help
--
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] Administratively subscribe other users via email

2012-08-18 Thread Nick Bright
I'm sorry if this is a repeated question; but I've spent the last hour 
searching/reading faq's and not finding anything useful.


I'm creating a newsletter mailing list, which I've successfully done - 
now, I am trying to get my billing system to automatically add new 
customers to the mailing list.


The easiest way to do this would be to have my billing system send an 
email to mailman to subscribe the user.


However, I have as of yet been unable to locate any information on how 
to do so.


I've tried using the "Approved:" header with a subscribe command in the 
mail body, following the subscribe command syntax at 
http://www.list.org/mailman-member/node41.html, but the response back 
from mailman is that the commands remain unprocessed.


What is the correct syntax for doing this?

--
---
-  Nick Bright-
-  Vice President of Technology   -
-  Valnet -=- We Connect You -=-  -
-  Tel 888-332-1616 x 315 / Fax 620-331-0789  -
-  Web http://www.valnet.net/ -
---
- Are your files safe?-
- Valnet Vault - Secure Cloud Backup  -
- More information & 30 day free trial at -
- http://www.valnet.net/services/valnet-vault -
---

--
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] Alternatives for Yahoo Groups like Web Features

2012-08-18 Thread Jason Glazer
I am looking for some suggestions on how to provide some 
Yahoo Group like web features for some existing mailing 
lists. I run a variety of mailings lists related to building 
energy performance on the onebuilding.org web site using 
mailman and hosted by dreamhost. For some of the mailing 
lists, users would like to have access to some additional 
web capabilities similar to what Yahoo Groups provides. I am 
looking for suggestions for web based systems to provide 
some of these additional capabilities that are open-source. 
The kinds of additional features are:


a) a way for designated members to upload files that others 
can download


b) a way for designated members to add events to a shared 
calendar that anyone can see


c) a way to conduct simple polls to gauge interest in topics

d) a way for members to add links to a page to build up a 
library of good links


e) a way to create a FAQ page

f) perhaps a wiki-like way to create and edit pages in a 
freeform basis


What I am looking for are suggestions on what has worked 
well together with an existing mailing list. What have 
others used and found easy to administer and easy for list 
members to use.


Any suggestions?

Thanks

Jason

--
Jason Glazer, P.E., GARD Analytics, 90.1 ECB chair
Admin for onebuilding.org building performance mailing lists
--
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] creating second mailinglist

2012-08-18 Thread Andre Vallese
Hi!

We have a mailinglist already running well. Now trying to create a new
mailinglist. So we are on http://listen.ifz.name/mailman/admin and click on
create new list. What appears is the site
http://listen.ifz.name/mailman/create with the text: 

“Internal Server Error

The server encountered an internal error or misconfiguration and was unable
to complete your request.

Please contact the server administrator, webmaster@localhost and inform them
of the time the error occurred, and anything you might have done that may
have caused the error.

More information about this error may be available in the server error log.

  _  

Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny3 with Suhosin-Patch Server at
listen.ifz.name Port 80“

 

 

What can we do?

 

Thanks for your efforts in advance,

 

André

Institut für Zweiradsicherheit e.V. | Servicepark Essen | Gladbecker Straße
425 | 45329 Essen
Telefon (0201) 83 53 9-0 | Telefax (0201) 83 53 9-99 | E-Mail:
 i...@ifz.de | Webpage:   www.ifz.de
facebook
 Beschreibung: fb-microIcon |  twitter
 Beschreibung: microIcon 
  Beschreibung:
http://twitfooter.com/status/img/606434064?nocache=1566130018



 


Steuernummer 111 / 5785 / 1976
VR Essen, Nr. 3943
Institutsleiter: Dr.-Ing. Achim Kuschefski

Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte
Informationen. Wenn Sie nicht der beabsichtigte Empfänger sind, informieren
Sie bitte sofort den Absender und löschen Sie diese E-Mail. Das unbefugte
Kopieren dieser E-Mail oder die unbefugte Weitergabe der enthaltenen
Informationen ist nicht gestattet.

The information contained in this message is confidential and/or protected
by law. If you are not the intended recipient, please contact the sender and
delete this message. Any unauthorised copying of this message or
unauthorised distribution of the information contained herein is prohibited.


 

 

--
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] How to disable notifications to moderator and owner of pending posts?

2012-08-18 Thread Mikael Jokela
Dear Mailman-users!

I have a list configuration question. I would like to totally disable
email notifications for a list regarding pending posts. The list
moderator or admin would login to the admindb page from time to time
regardless any notifications. The moderator and admin would get
notifications of membership requests and such but none of pending
posts.

I can't find a configuration parameter for this. How would you do this?

I'm using Mailman version 2.1.9 installed from CentOS5 RPM.

Cheers, Mikael
--
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 Problems under OSX Lion

2012-08-18 Thread David Dodell
This list is my last hope on getting my problems fixed.

I am running OSX Lion  (not Mountain Lion). Mailman was part of the default 
installation.

I have two issues which I have gotten absolutely no help from Apple Enterprise 
Support ... basic answer, we don't support open source software and couldn't 
answer me on why they installed / advertised mailing lists but don't support it 
... but I regress.


(1) First issue is cosmetic.At the bottom of each administrative page, 
mailman does not display the icons which I see on ever other mailman website 
... basically the mailman / python logos.   Not a real big deal, besides the 
cosmetic irk.   I've checked the docs, found the path in the config file, and 
sure enough the images are there in the path, but they still do not display.   
Ideas?


(2) Second issue is more serious.I can't get list moderation to work.A 
message comes in to be moderator, I get email notification of this.   However, 
if I login to the administrator page, "pending moderator requests", if I try to 
approve, reject, or any other command on that page, NOTHING happens ... the 
message keeps appearing, no action is taken etc.


I've repaired all permissions, but besides that, lost on what to try next.

Would appreciate any insight.

Thank you.

David Dodell
--
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] Problems with Moderation

2012-08-18 Thread David Dodell
I am running mailman on OSX Lion.

Moderation through the web interface does not work.

If I try to do anything from the web interface (see screenshot) ... I can see a 
split second of it accessing the server, and the screen refreshes and goes back 
to this default of "defer"

Just no actions at all work.

Any idea where I should look ... 

Thank you.

David

--
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