Benjamin Donnachie wrote:
> /[EMAIL PROTECTED]/ DUNNO
Ooops! That should be:
/[EMAIL PROTECTED]/ DUNNO
Ben
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: ht
Mark Sapiro wrote:
>
>Sorry, brain cramp. The above patch won't quite do. It needs to be
>
>--- Mailman/Cgi/confirm.py 2007-05-07 15:34:26.59375 -0700
>+++ Mailman/Cgi/confirmx.py 2007-06-08 08:47:46.0 -0700
>@@ -66,8 +66,12 @@
> return
>
> # Set the language for th
Mark Sapiro wrote:
>
>To address the confirmation page, you could apply the following patch
>to Mailman/Cgi/confirm.py
>
>--- Mailman/Cgi/confirm.py 2007-05-07 15:34:26.59375 -0700
>+++ Mailman/Cgi/confirmx.py 2007-06-08 08:47:46.0 -0700
>@@ -66,8 +66,12 @@
> return
>
>
--On June 10, 2007 10:01:52 AM -0700 Mark Sapiro <[EMAIL PROTECTED]> wrote:
> Defaults.py says:
>
>MTA should name a module in Mailman/MTA which provides the MTA
>specific functionality for creating and removing lists. Some MTAs
>like Exim can be configured to automatically recognize
Benjamin Donnachie wrote:
> I've just written a very simple script which I use as a cronjob to keep
> a postfix access map of current lists up-to-date. Thus avoiding
> potential backscatter with the listhost domain.
A copy of the script is below. You'll probably need to edit it for your
site.
I
Benjamin Donnachie wrote:
>
>I kept getting that and in the end replaced it with:
>
>MTA = ''
That will work and so will
MTA = 0
MTA = False
MTA = []
MTA = {}
MTA = x
where x is one of No, no, Off or off because these are all defined as
False in Defaults.py.
These all work because they are eit
Jennifer Redman wrote:
> Your script and instructions work beautifully.
Excellent stuff! :-) It's definitely a better solution in my opinion! :)
> Had to change a few paths and kept getting a no module error when I added
> MTA = None -- easy configuration compared to the other method I was
> att