Re: [Mailman-Users] [Fwd: archive emails are garbled]

2006-09-21 Thread Justin Zygmont
Brad Knowles wrote:
> At 5:21 PM -0700 9/20/06, Justin Zygmont wrote:
> 
>>  Thanks, I guess its just a matter of inserting the content-type header
>>  into the message then.  I created these messages with a script that
>>  saved its output to a file, then used:
>>  mailx -s "subject" [EMAIL PROTECTED]  
> 
> If you build the message yourself, as opposed to using a MIME-aware MUA, 
> then yes -- you will also need to build the necessary MIME headers and 
> internal infrastructure.  However, this can be a complex subject, and I 
> would recommend that you at least look into command-line utilities that 
> can help make this process easier.
> 
> I can't think of the names of the toolkits off the top of my head, but 
> you should be able to find them pretty easily with Google.
> 
> 
> But do keep in mind that even command-line MUAs like mailx won't let you 
> control your own headers.  If you want to control the headers, you will 
> need to feed your formatted message directly to sendmail or some other 
> comparable message submission agent.
> 
> When I've done that in the past, it's looked something like:
> 
> sendmail -t [EMAIL PROTECTED] < /path/to/message
> 
>>  If only there is a command line mailer that will allow me to add the
>>  mime type header to the email, then that would allow the message to
>>  display correctly in both my email client, and the list archives.
> 
> 
> I'd bet that "mutt" could do that, since it is the MUA that was 
> originally written by the guy who also wrote the PGP/MIME RFC, so he 
> clearly knows both his crypto/PGP stuff and his MIME stuff.
> 
> Note that mutt does give you some control over what goes in the headers, 
> but mostly that's for putting in your own "X-" headers and not doing 
> critical things like mucking about with the MIME structure of the message.

thanks, I see it adds proper headers this way, but I still don't see a 
way to control what mime type to use.  I used the sendmail command with 
an html file and it still came through as ascii.  I've found that one 
workaround is to use mutt -a to include the file as an attachment, but 
i'm suprised there's no easy way to do this.  Thanks everyone for your 
help, I think the lesson is to find something other than uuencode when 
sending to mailman so it doesnt spoil the list archives.

--
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] [Fwd: archive emails are garbled]

2006-09-20 Thread Justin Zygmont
Dragon wrote:
> Justin Zygmont sent the message below at 15:28 9/19/2006:
> 
>> ok, thanks.  Here is a paste of the message sources.  These both don't
>> show up as HTML in thunderbird for some reason, I guess mailman may not
>> be the cause?  Messages below were each shortened to save size.
>>
>>
>> Emailed directly to me:
>>
>>  From - Tue Sep 19 14:51:50 2006
>> X-Account-Key: account2
>> X-UIDL: 1154544464.3663
>> X-Mozilla-Status: 0001
>> X-Mozilla-Status2: 
>> Return-Path: <[EMAIL PROTECTED]>
>> X-Original-To: [EMAIL PROTECTED]
>> Delivered-To: [EMAIL PROTECTED]
>> Received: from citybillingcityfone.net (citybilling.cityfone.local
>> [192.168.43.30])
>> by citysupport.cityfone.local (Postfix) with ESMTP id A8CA12543C1
>> for <[EMAIL PROTECTED]>; Tue, 19 Sep 2006 14:50:05 -0700 (PDT)
>> Received: from citybilling.cityfone.local (localhost [127.0.0.1])
>> by citybillingcityfone.net (8.13.4+Sun/8.13.3) with ESMTP id 
>> k8JLovlg007676
>> for <[EMAIL PROTECTED]>; Tue, 19 Sep 2006 14:50:57 -0700 (PDT)
>> Received: (from [EMAIL PROTECTED])
>> by citybilling.cityfone.local (8.13.4+Sun/8.13.3/Submit) id 
>> k8JLovKo007675
>> for [EMAIL PROTECTED]; Tue, 19 Sep 2006 14:50:57 -0700 (PDT)
>> Date: Tue, 19 Sep 2006 14:50:57 -0700 (PDT)
>> From: [EMAIL PROTECTED]
>> Message-Id: <[EMAIL PROTECTED]>
>> X-Authentication-Warning: citybilling.cityfone.local: jan set sender to
>> [EMAIL PROTECTED] using -r
>> To: [EMAIL PROTECTED]
>> Subject: test
>> X-IMAPbase: 1154544464 3663
>> Status: O
>> X-UID: 3663
>> Content-Length: 3344
>> X-Keywords:
> 
>  End original message. -
> 
> The most immediate problem I see is that these messages are missing any 
> sort of MIME headers (as defined in RFC2045). Without those headers, 
> there is no definitive way for the mail client to know what the content 
> is. Some MUAs will then default to plain-text and not try to even guess 
> what the content type is. Some (like Eudora which I use) may detect the 
> HTML structure of the message body and render it.
> 
> I am curious how you are creating these messages, are you composing them 
> in an MUA in HTML format or are you cutting and pasting an HTML document 
> from another editor into the message body? If the latter, you are not 
> going to get the correct headers to identify the message content to a 
> MIME compliant MUA. If the former, your MUA should be inserting these 
> headers correctly.
> 
> 
> As stated in section 1 of RFC2046:
> 
> 
>The first document in this set, 
> <http://www.faqs.org/rfcs//rfcs/rfc2045.html>RFC 2045, defines a number 
> of header
>fields, including Content-Type. The Content-Type field is used to
>specify the nature of the data in the body of a MIME entity, by
>giving media type and subtype identifiers, and by providing auxiliary
>information that may be required for certain media types.  After the
>type and subtype names, the remainder of the header field is simply a
>set of parameters, specified in an attribute/value notation.  The
>ordering of parameters is not significant.

Thanks, I guess its just a matter of inserting the content-type header 
into the message then.  I created these messages with a script that 
saved its output to a file, then used:
mailx -s "subject" [EMAIL PROTECTED] 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] [Fwd: archive emails are garbled]

2006-09-19 Thread Justin Zygmont
Mark Sapiro wrote:
> Justin Zygmont wrote:
> 
>>The messages appear as HTML code, and do not display an HTML looking 
>>email when it arrives to the subscribers.
> 
> 
> 
> This indicates that the MIME structure of the message has somehow been
> corrupted or you are looking at a 'plain' format digest as opposed to
> a 'mime' digest or an individual message from the list.
> 
> 
> 
>>I'm using mailman-2.1.5.1-34.rhel4.3 and tried different content 
>>filering options, it didn't seem to help though.  Here is a sample of 
>>part of an email:
> 
> 
> 
> The sample doesn't help. What we need to see is the headers of the
> message and it's subparts. Ideally, both what you send to the list and
> what you get back.
> 
> Send a very short, HTML message to the list with a Bcc: to yourself.
> Then view the message source of both the Bcc: and the message from the
> list. If you want help, you can copy and paste these message sources
> into a post to this list.

ok, thanks.  Here is a paste of the message sources.  These both don't 
show up as HTML in thunderbird for some reason, I guess mailman may not 
be the cause?  Messages below were each shortened to save size.


Emailed directly to me:



 From - Tue Sep 19 14:51:50 2006
X-Account-Key: account2
X-UIDL: 1154544464.3663
X-Mozilla-Status: 0001
X-Mozilla-Status2: 
Return-Path: <[EMAIL PROTECTED]>
X-Original-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Received: from citybillingcityfone.net (citybilling.cityfone.local 
[192.168.43.30])
by citysupport.cityfone.local (Postfix) with ESMTP id A8CA12543C1
for <[EMAIL PROTECTED]>; Tue, 19 Sep 2006 14:50:05 -0700 (PDT)
Received: from citybilling.cityfone.local (localhost [127.0.0.1])
by citybillingcityfone.net (8.13.4+Sun/8.13.3) with ESMTP id 
k8JLovlg007676
for <[EMAIL PROTECTED]>; Tue, 19 Sep 2006 14:50:57 -0700 (PDT)
Received: (from [EMAIL PROTECTED])
by citybilling.cityfone.local (8.13.4+Sun/8.13.3/Submit) id 
k8JLovKo007675
for [EMAIL PROTECTED]; Tue, 19 Sep 2006 14:50:57 -0700 (PDT)
Date: Tue, 19 Sep 2006 14:50:57 -0700 (PDT)
From: [EMAIL PROTECTED]
Message-Id: <[EMAIL PROTECTED]>
X-Authentication-Warning: citybilling.cityfone.local: jan set sender to 
[EMAIL PROTECTED] using -r
To: [EMAIL PROTECTED]
Subject: test
X-IMAPbase: 1154544464 3663
Status: O
X-UID: 3663
Content-Length: 3344
X-Keywords: 





MoreMobility Points Report

<!--
td.littletext  { font-family: Arial; font-size: 10pt }
h1 { font-family: Arial; font-size: 14pt }
h2 { font-family: Arial; font-size: 12pt }
td.bigtext { font-family: Arial; font-size: 14pt }
-->



http://citynet/public/CityNetReportsLogo.gif"; />
Connection Points

These are clawbacks for phones returned in 30 days.


Line
Handset Code
Activation Date
Dealer
Points


Total
   0


© 2004-2006 Test report. All Rights 
Reserved.Report generated on 
September 14, 2006 00:00.






Same message, sent to me through mailman:


 From - Tue Sep 19 14:56:50 2006
X-Account-Key: account2
X-UIDL: 1154544464.3664
X-Mozilla-Status: 0001
X-Mozilla-Status2: 
Return-Path: <[EMAIL PROTECTED]>
X-Original-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Received: from citysupport.cityfone.local (localhost.localdomain 
[127.0.0.1])
by citysupport.cityfone.local (Postfix) with ESMTP id 995942543C1;
Tue, 19 Sep 2006 14:55:06 -0700 (PDT)
X-Original-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Received: from citybillingcityfone.net (citybilling.cityfone.local
[192.168.43.30])
by citysupport.cityfone.local (Postfix) with ESMTP id B424F2543C1
for <[EMAIL PROTECTED]>; Tue, 19 Sep 2006 14:55:04 -0700 (PDT)
Received: from citybilling.cityfone.local (localhost [127.0.0.1])
by citybillingcityfone.net (8.13.4+Sun/8.13.3) with ESMTP id
k8JLtuVL007686
for <[EMAIL PROTECTED]>; Tue, 19 Sep 2006 14:55:56 -0700 (PDT)
Received: (from [EMAIL PROTECTED])
by citybilling.cityfone.local (8.13.4+Sun/8.13.3/Submit) id
k8JLtu47007685
for [EMAIL PROTECTED]; Tue, 19 Sep 2006 14:55:56 -0700 (PDT)
Date: Tue, 19 Sep 2006 14:55:56 -0700 (PDT)
From: [EMAIL PROTECTED]
Message-Id: <[EMAIL PROTECTED]>
X-Authentication-Warning: citybilling.cityfone.local: jan set sender to
[EMAIL PROTECTED] using -r
To: [EMAIL PROTECTED]
Subject: [Reportgroup] test
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.1.5
Precedence: list
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-IMAPbase: 1154544464 3664
Status: O
X-UID: 3664
Content-Length: 3475
X-Keywords: 





MoreMobility Points Report

<!--
td.littletext  { font-family: Arial; font-size: 10pt }
h1 { font-family: Arial; font-size: 14pt }
h2 { font-family: 

Re: [Mailman-Users] [Fwd: archive emails are garbled]

2006-09-18 Thread Justin Zygmont
>>Is one of the other lists a better place to ask this?
> 
> 
> Probably not. Did you see the reply to your original post at
> <http://mail.python.org/pipermail/mailman-users/2006-September/053291.html>?

I must have missed your message somehow, thanks a lot for the reply.


Justin Zygmont wrote:

 >I have a noticed a problem with emails stored in the list archives if
 >they have been uuencoded.  When HTML emails are distributed to all the
 >list members they just show the raw HTML code,


 >Messages as sent to message subscribers or messages in the archives?
 >You should be able to send HTML to individual subscribers if you don't
 >filter content or if you allow the appropriate MIME types in content
 >filtering. How such messages appear in archives depends on sitewide
 >archiving options set in mm_cfg.py.


 >so I used uuencode and it
 >fixed that, but when I take a look at the message in the archives it
 >looks mostly garbled.  Here's an example:
 >
 >begin 644 AgentCommissions.html
 >M/"%$3T-465!%($A434P at 4%5"3$E#("(M+R]7,T,O+T141"!(5$U,(#0N,#$@
 >M5')A;G-I=&EO;F%L+R]%3B(^#0H\:'1M;#X-"CQH96%D/@T*/'1I=&QE/D-I
 >M='EF;VYE($-O;6UIM#0IT9"YL:71T;&5T97AT("![(&9O;G0M9F%M:6QY.B!!R!F;VYT+69A;6EL>3H at 07)I
 >M86P[(&9O;G0MM9F%M:6QY.B!!'0@
 >M(" @('L at 9F]N="UF86UI;'DZ($%R:6%L.R!F;VYT+7-I>F4Z(#$T<'[EMAIL PROTECTED]


 >This is not garbled. It is the uuencoded AgentCommissions.html file. A
 >uuencoded file is not human readable, but as far as mail agents are
 >concerned, it is plain text and will be archived in its raw form. Some
 >MUAs see a uuencoded file in an email and call it an 'attachment' and
 >render it as such, but this is non-standard. Also some MUAs when
 >composing will put uuencoded data in a separate MIME part with
 >Content-Transfer-Encoding: uuencode, x-uuencode, uue or x-uue, but
 >this to is non-standard.


 >Anyone know if there is a better way to deal with this?


 >You should be able to send HTML messages to your list members.

 >What Mailman version is this? What are your content filtering settings?
 >Can you provide a sample of a message as sent to Mailman and as
 >received from Mailman?

The messages appear as HTML code, and do not display an HTML looking 
email when it arrives to the subscribers.  This was one of the reasons 
why I tried using uuencode, but in the list archives, they show in their 
uuencoded form which is useless.  I wanted it to appear as HTML in 
thunderbird, and include it as an attachment also.

I'm using mailman-2.1.5.1-34.rhel4.3 and tried different content 
filering options, it didn't seem to help though.  Here is a sample of 
part of an email:





Mobility Points Report

<!--
td.littletext  { font-family: Arial; font-size: 10pt }
h1 { font-family: Arial; font-size: 14pt }
h2 { font-family: Arial; font-size: 12pt }
td.bigtext { font-family: Arial; font-size: 14pt }
-->






Thanks,




--
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] [Fwd: archive emails are garbled]

2006-09-15 Thread Justin Zygmont
Is one of the other lists a better place to ask this?


 Original Message 
Subject: archive emails are garbled
Date: Thu, 14 Sep 2006 13:38:57 -0700
From: Justin Zygmont <[EMAIL PROTECTED]>
To: mailman-users@python.org

I have a noticed a problem with emails stored in the list archives if
they have been uuencoded.  When HTML emails are distributed to all the
list members they just show the raw HTML code, so I used uuencode and it
fixed that, but when I take a look at the message in the archives it
looks mostly garbled.  Here's an example:

begin 644 AgentCommissions.html
M/"%$3T-465!%($A434P at 4%5"3$E#("(M+R]7,T,O+T141"!(5$U,(#0N,#$@
M5')A;G-I=&EO;F%L+R]%3B(^#0H\:'1M;#X-"CQH96%D/@T*/'1I=&QE/D-I
M='EF;VYE($-O;6UIR!F;VYT+69A;6EL>3H at 07)I
M86P[(&9O;G0M'0@
M(" @('L at 9F]N="UF86UI;'DZ($%R:6%L.R!F;VYT+7-I>F4Z(#$T<'[EMAIL PROTECTED]


Anyone know if there is a better way to deal with this?


--
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] archive emails are garbled

2006-09-14 Thread Justin Zygmont
I have a noticed a problem with emails stored in the list archives if 
they have been uuencoded.  When HTML emails are distributed to all the 
list members they just show the raw HTML code, so I used uuencode and it 
fixed that, but when I take a look at the message in the archives it 
looks mostly garbled.  Here's an example:

begin 644 AgentCommissions.html
M/"%$3T-465!%($A434P at 4%5"3$E#("(M+R]7,T,O+T141"!(5$U,(#0N,#$@
M5')A;G-I=&EO;F%L+R]%3B(^#0H\:'1M;#X-"CQH96%D/@T*/'1I=&QE/D-I
M='EF;VYE($-O;6UIR!F;VYT+69A;6EL>3H at 07)I
M86P[(&9O;G0M'0@
M(" @('L at 9F]N="UF86UI;'DZ($%R:6%L.R!F;VYT+7-I>F4Z(#$T<'[EMAIL PROTECTED]


Anyone know if there is a better way to deal with this?



--
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] After updrading to Rh 7.2

2002-01-16 Thread Justin Zygmont

I think I remember the configure program taking only 1 argument at a time,
try running configure twice (once with each option) and look at the
output  right near the beginning, it shows what GID's it's using.


On Wed, 16 Jan 2002, Islam, Sharif wrote:

> Can anyone give some more hints? I did several make clean and configure ,
> but no luck.
> Am i missing something really obvious?
>
> Thanks
>
>
> -Original Message-
> From: Islam, Sharif [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 16, 2002 10:12 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: [Mailman-Users] After updrading to Rh 7.2
>
>
> Thanks for the helpful replies.
> I tried this
> ./configure --with-mail-gid=12 --with-cgi-gid=48
>
> now, my web interface is back. However if I run ./wrapper post i get the
> same error :
> "Failure to exec script. WANTED gid 12, GOT gid 0.  (Reconfigure to take
> 0?)"
>
> this is from my /etc/passwd
> mail:x:8:12:mail:/var/spool/mail:
> mailnull:x:47:47::/var/spool/mqueue:/dev/null
> mailman:x:502:502::/home/mailman:/bin/bash
>
> So now web interface works, i guess the cgi id was ok. Now i have to fix the
> mail part.
>
> -Sharif
>
> -Original Message-
> From: Islam, Sharif [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, January 15, 2002 10:16 PM
> To: '[EMAIL PROTECTED]'
> Subject: [Mailman-Users] After updrading to Rh 7.2
>
>
> I just upgraded to Rh 7.2 and am getting the infamous error:
>
> Mailman error: post got bad listname: test
> 554 5.3.0 unknown mailer error 1
>
> My web interface was working fine. However, i went ahead and did a ./config
> --with-mail-gid=2
>
> then i started getting the cgi-error in the web and also the other error
> too. when i run ./wrapper post i get this :
>
> "Failuer to exec sript:WANTED Gid 2, Got GId 0.
> and in my web interface:
> "Failure to exec script. WANTED gid 2, GOT gid 48.  "
>
> Whats should be the correct gid? I tried this :
>
> "./configure --with-mail-gid=2 --with-cgi-gid=2 "
>
> Nothing happend.
>
> --
> Mailman-Users maillist  -  [EMAIL PROTECTED]
> http://mail.python.org/mailman/listinfo/mailman-users
>
> --
> Mailman-Users maillist  -  [EMAIL PROTECTED]
> http://mail.python.org/mailman/listinfo/mailman-users
>
> --
> Mailman-Users maillist  -  [EMAIL PROTECTED]
> http://mail.python.org/mailman/listinfo/mailman-users
>


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] a few questions

2002-01-14 Thread Justin Zygmont

ok, here it is, I spent some time on this so far so any help would be
appreciated.  It still looks to me like make doesn't finish.  Thanks for
your help!


On Fri, 11 Jan 2002, C. Bensend wrote:

>
> On Fri, 11 Jan 2002, Justin Zygmont wrote:
>
> > this is a new install, straight from tar.gz and it still doesn't create
> > the wrapper program and who knows what else.
>
> Time to see _exactly_ what's happening...  Could you
> use 'script' to document the steps (and all output) you're
> taking from tarball, right up to where you do an 'ls -l' and
> don't see a 'wrapper'?  Ie, the untarring, the build, and
> everything.  Something isn't quite logical here.
>
> Benny
>
>
> ~~
> A 'good' landing is one from which you can walk away. A 'great'
> landing is one after which they can use the plane again.
> --Rules of the Air, #8
>
>


Script started on Sat Jan 12 19:53:50 2002

[mailman]# finger mailman
Login: mailman  Name: (null)
Directory: /home/mailmanShell: /bin/bash
Never logged in.
Mail last read Tue Jan  1 22:49 2002 (EST)
No Plan.

[mailman]# cat /etc/passwd |grep mailman
mailman:x:650:650::/home/mailman:/bin/bash

[mailman]# cat /etc/passwd |grep mailman
mailman:x:650:

[mailman]# whoami
root

[mailman]# ls
mailman-2.0.8.tgz  typescript

[mailman]# chgrp mailman .
[mailman]# chmod a+rx,g+ws .

[mailman]# ls -la
total 416
drwxrwsr-x2 mailman  mailman  4096 Jan 12 19:53 .
drwxr-xr-x  154 root root 4096 Jan 12 17:34 ..
-rw-r--r--1 root root   412751 Dec 26 00:27 mailman-2.0.8.tgz
-rw-r--r--1 root mailman 0 Jan 12 19:53 typescript

[mailman]# cat /etc/sendmail.cf | grep DefaultUser

O DefaultUser=mail:mail

[mailman]# cat /etc/sendmail.cf | grep mail
mail::12:mail
mailnull:x:47:
mailman:x:650:

[mailman]# tar -xzvf mailman*
mailman-2.0.8/
mailman-2.0.8/Mailman/
mailman-2.0.8/Mailman/Archiver/
mailman-2.0.8/Mailman/Archiver/Archiver.py
mailman-2.0.8/Mailman/Archiver/HyperArch.py
mailman-2.0.8/Mailman/Archiver/HyperDatabase.py
mailman-2.0.8/Mailman/Archiver/Makefile.in
mailman-2.0.8/Mailman/Archiver/__init__.py
mailman-2.0.8/Mailman/Archiver/pipermail.py
mailman-2.0.8/Mailman/Autoresponder.py
mailman-2.0.8/Mailman/Bouncer.py
mailman-2.0.8/Mailman/Crypt.py
mailman-2.0.8/Mailman/Defaults.py.in
mailman-2.0.8/Mailman/Deliverer.py
mailman-2.0.8/Mailman/Digester.py
mailman-2.0.8/Mailman/EncWord.py
mailman-2.0.8/Mailman/Errors.py
mailman-2.0.8/Mailman/GatewayManager.py
mailman-2.0.8/Mailman/HTMLFormatter.py
mailman-2.0.8/Mailman/ListAdmin.py
mailman-2.0.8/Mailman/LockFile.py
mailman-2.0.8/Mailman/MailCommandHandler.py
mailman-2.0.8/Mailman/MailList.py
mailman-2.0.8/Mailman/Mailbox.py
mailman-2.0.8/Mailman/Makefile.in
mailman-2.0.8/Mailman/Message.py
mailman-2.0.8/Mailman/Pending.py
mailman-2.0.8/Mailman/SecurityManager.py
mailman-2.0.8/Mailman/Utils.py
mailman-2.0.8/Mailman/Version.py
mailman-2.0.8/Mailman/__init__.py
mailman-2.0.8/Mailman/aliases.py
mailman-2.0.8/Mailman/htmlformat.py
mailman-2.0.8/Mailman/mm_cfg.py.dist.in
mailman-2.0.8/Mailman/versions.py
mailman-2.0.8/Mailman/Bouncers/
mailman-2.0.8/Mailman/Bouncers/BouncerAPI.py
mailman-2.0.8/Mailman/Bouncers/Caiwireless.py
mailman-2.0.8/Mailman/Bouncers/Catchall.py
mailman-2.0.8/Mailman/Bouncers/Compuserve.py
mailman-2.0.8/Mailman/Bouncers/DSN.py
mailman-2.0.8/Mailman/Bouncers/Exim.py
mailman-2.0.8/Mailman/Bouncers/GroupWise.py
mailman-2.0.8/Mailman/Bouncers/Makefile.in
mailman-2.0.8/Mailman/Bouncers/Microsoft.py
mailman-2.0.8/Mailman/Bouncers/Netscape.py
mailman-2.0.8/Mailman/Bouncers/Postfix.py
mailman-2.0.8/Mailman/Bouncers/Qmail.py
mailman-2.0.8/Mailman/Bouncers/SMTP32.py
mailman-2.0.8/Mailman/Bouncers/SimpleMatch.py
mailman-2.0.8/Mailman/Bouncers/Smail.py
mailman-2.0.8/Mailman/Bouncers/Yahoo.py
mailman-2.0.8/Mailman/Bouncers/__init__.py
mailman-2.0.8/Mailman/Cgi/
mailman-2.0.8/Mailman/Cgi/Auth.py
mailman-2.0.8/Mailman/Cgi/Makefile.in
mailman-2.0.8/Mailman/Cgi/__init__.py
mailman-2.0.8/Mailman/Cgi/admin.py
mailman-2.0.8/Mailman/Cgi/admindb.py
mailman-2.0.8/Mailman/Cgi/edithtml.py
mailman-2.0.8/Mailman/Cgi/handle_opts.py
mailman-2.0.8/Mailman/Cgi/listinfo.py
mailman-2.0.8/Mailman/Cgi/options.py
mailman-2.0.8/Mailman/Cgi/private.py
mailman-2.0.8/Mailman/Cgi/roster.py
mailman-2.0.8/Mailman/Cgi/subscribe.py
mailman-2.0.8/Mailman/Handlers/
mailman-2.0.8/Mailman/Handlers/Acknowledge.py
mailman-2.0.8/Mailman/Handlers/AfterDelivery.py
mailman-2.0.8/Mailman/Handlers/Approve.py
mailman-2.0.8/Mailman/Handlers/CalcRecips.py
mailman-2.0.8/Mailman/Handlers/Cleanse.py
mailman-2.0.8/Mailman/Handlers/CookHeaders.py
mailman-2.0

Re: [Mailman-Users] a few questions

2002-01-12 Thread Justin Zygmont

hmm, I thought I almost had it but when I check, here's what I get:

[jzygmont]# rpm -q glibc-devel
glibc-devel-2.1.3-15

[jzygmont]# find / -name errno.h
find: /proc/6/fd: Permission denied
/usr/include/bits/errno.h
/usr/include/errno.h
/usr/include/sys/errno.h
/usr/lib/bcc/include/arch/errno.h
/usr/lib/bcc/include/bsd/errno.h
/usr/lib/bcc/include/errno.h
/usr/lib/bcc/include/generic/errno.h
/usr/lib/bcc/include/linux/errno.h
/usr/lib/bcc/include/linuxmt/errno.h
/usr/lib/bcc/include/msdos/errno.h
/usr/lib/bcc/include/sys/errno.h

[jzygmont]# exit

any ideas?  I really have to thank you for your help so far.



On Sat, 12 Jan 2002, C. Bensend wrote:

>
> On Sat, 12 Jan 2002, Justin Zygmont wrote:
>
> > ok, here it is, I spent some time on this so far so any help would be
> > appreciated.  It still looks to me like make doesn't finish.  Thanks for
> > your help!
>
> Hey Justin,
>
>   From your script output:
>
>
> make[1]: Entering directory `/home/mailman/mailman-2.0.8/src'
> gcc -c -I. -DPREFIX="\"/home/mailman\"" -DPYTHON="\"/usr/bin/python\""
> -DHELPFUL
>  -g -O2 -g -O2 -DHAVE_STRERROR=1 -DHAVE_SETREGID=1 -DHAVE_SYSLOG=1
> -DSTDC_HEADER
> S=1 -DHAVE_SYSLOG_H=1 -DGETGROUPS_T=gid_t -DHAVE_VSNPRINTF=1   ./common.c
> In file included from /usr/include/errno.h:36,
>  from common.h:27,
>  from ./common.c:20:
> /usr/include/bits/errno.h:25: linux/errno.h: No such file or directory
> make[1]: *** [common.o] Error 1
>
>
> You'll notice that this error came when it entered the directory
> 'src', where the mail-wrapper.c file lives.  Hence, it didn't
> build _anything_ in that directory.  Hence, no wrapper.  :(
>
> Now, to fix it...  On one of my linux boxen, I did a 'locate
> errno.h'.  It appears in '/usr/include/errno.h', and from the
> output of 'rpm -qf /usr/include/errno.h':
>
> hostname (user)% rpm -qf /usr/include/errno.h
> glibc-devel-2.1.3-15
>
> You need to install the glibc-devel package, and I bet it
> will work perfectly.  :)  You _are_ running on linux, if
> I remember correctly?
>
> HTH!
>
> Benny
>
>
> ~~
> A 'good' landing is one from which you can walk away. A 'great'
> landing is one after which they can use the plane again.
> --Rules of the Air, #8
>
>
>



--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] a few questions

2002-01-11 Thread Justin Zygmont

this is a new install, straight from tar.gz and it still doesn't create
the wrapper program and who knows what else.


On Fri, 11 Jan 2002, Terry Davis wrote:

> are you upgrading your mailman or is it a new install ?
>
> Justin Zygmont wrote:
>
> > when I get to the 'make install' step everythink looks fine except for
> > this last part:
> >
> > Upgrading from version 0x0 to 0x20008f0
> > no lists == nothing to do, exiting
> >
> > Please let me know if this is still ok, or I have midded something.  I
> > cannot get meail man to work and i've tried several times.
> >
> >
> > I just want to verify this to make sure i'm getting it right,
> > --with-mail-gid should be the GID of 'DefaultUser' in /etc/sendmail.cf?
> > the DefaultUser is 'mail' and it's GID is 12
> >
> > thanks..
> >
> >
> >
> > --
> > Mailman-Users maillist  -  [EMAIL PROTECTED]
> > http://mail.python.org/mailman/listinfo/mailman-users
> >
>
>
>


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



[Mailman-Users] a few questions

2002-01-10 Thread Justin Zygmont

when I get to the 'make install' step everythink looks fine except for
this last part:

Upgrading from version 0x0 to 0x20008f0
no lists == nothing to do, exiting

Please let me know if this is still ok, or I have midded something.  I
cannot get meail man to work and i've tried several times.


I just want to verify this to make sure i'm getting it right,
--with-mail-gid should be the GID of 'DefaultUser' in /etc/sendmail.cf?
the DefaultUser is 'mail' and it's GID is 12

thanks..



--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] ./configure error

2002-01-10 Thread Justin Zygmont

it is looking for python in a different directory, you must check the path
it is looking for to see.  I just made a symbolic link to fix that.


On Thu, 10 Jan 2002, Ben Franske wrote:

> I'm trying to install Mailman on a Linux Mandrake box. When I attempt to
> run ./configure I get the error:
> bash: ./configure: bad interpreter: No such file or directory
> I've checked and on this box /bin/sh is a symlink to /bin/bash It's been
> a long time since I did much on a **ix (Irix last time hehe) box and it
> could certainly be something really stupid I forgot about. In any event
> any help anyone can offer is appreciated much!
>
> --Ben Franske
> CCNA
>
>
> --
> Mailman-Users maillist  -  [EMAIL PROTECTED]
> http://mail.python.org/mailman/listinfo/mailman-users
>


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] Re: problems setting up a mailing list

2001-12-31 Thread Justin Zygmont

Thanks for your reply, I installed mailman with the 2.0.8 tarfile.  I
checked the tar file and mail/wrapper doesn't exist within it, i'm not
sure if this is supposed to get created diring the 'make install' or not.

I am running sendmail and I know it will resolv hostnames, etc fine.  All
mail services work ok for me.



On Sun, 30 Dec 2001, C. Bensend wrote:

>
> On Sun, 30 Dec 2001, Justin Zygmont wrote:
>
> > here is the output of bin/check_perms:
> >
> > Traceback (innermost last):
> >   File "bin/check_perms", line 281, in ?
> > checkmail()
> >   File "bin/check_perms", line 202, in checkmail
> > mode = statmode(wrapper)
> >   File "bin/check_perms", line 74, in statmode
> > return os.stat(path)[ST_MODE]
> > OSError: [Errno 2] No such file or directory: '/home/mailman/mail/wrapper'
>
> OK, THAT is a problem.  If wrapper isn't there, no mail
> is going to be handled.
>
> How did you install Mailman (pardon me if you mentioned it in
> a previous post, I'm just catching up on my email)?  RPM?  From
> source?  .deb?
>
> > here's the last 10 lines of logs/smtp:
> >
> > Dec 30 03:37:02 2001 (32701) All recipients refused: host not found
> > Dec 30 03:37:02 2001 (32701) smtp for 1 recips, completed in 0.071 seconds
> > Dec 30 03:38:02 2001 (32704) All recipients refused: host not found
> > Dec 30 03:38:02 2001 (32704) smtp for 1 recips, completed in 0.123 seconds
> > Dec 30 03:38:02 2001 (32704) All recipients refused: host not found
> > Dec 30 03:38:02 2001 (32704) smtp for 1 recips, completed in 0.072 seconds
> > Dec 30 03:39:02 2001 (32717) All recipients refused: host not found
> > Dec 30 03:39:02 2001 (32717) smtp for 1 recips, completed in 0.115 seconds
> > Dec 30 03:39:03 2001 (32717) All recipients refused: host not found
> > Dec 30 03:39:03 2001 (32717) smtp for 1 recips, completed in 0.073 seconds


> It looks like your mailserver (or whatever host Mailman is
> running on) can't resolve hostnames.  Check to make sure
> your local host has both 'localhost' and 'your-FQDN' in
> it's /etc/hosts file to be safe.
>
> Also, make sure your MTA can resolve the hostname and domain
> you subscribed yourself with.  It'll need to relay from
> localhost (this can be a problem with QMail).
>
> Benny
>
>
> ~~
> "The onions are irritating my buttocks."   - Sluggy Freelance
>  10-12-1998
>
>


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



[Mailman-Users] Re: problems setting up a mailing list

2001-12-30 Thread Justin Zygmont

Thanks for the reply, this info should help out more...


here is the output of bin/check_perms:

Traceback (innermost last):
  File "bin/check_perms", line 281, in ?
checkmail()
  File "bin/check_perms", line 202, in checkmail
mode = statmode(wrapper)
  File "bin/check_perms", line 74, in statmode
return os.stat(path)[ST_MODE]
OSError: [Errno 2] No such file or directory: '/home/mailman/mail/wrapper'


here's the last 10 lines of logs/post

Dec 30 03:34:02 2001 (32690) post to procomm-general from mailman-owner@solarflow, 
size=1327, 1 failures
Dec 30 03:34:02 2001 (32690) post to test from mailman-owner@solarflow, size=1283, 1 
failures
Dec 30 03:35:04 2001 (32694) post to procomm-general from mailman-owner@solarflow, 
size=1327, 1 failures
Dec 30 03:35:05 2001 (32694) post to test from mailman-owner@solarflow, size=1283, 1 
failures
Dec 30 03:36:01 2001 (32698) post to procomm-general from mailman-owner@solarflow, 
size=1327, 1 failures
Dec 30 03:36:01 2001 (32698) post to test from mailman-owner@solarflow, size=1283, 1 
failures
Dec 30 03:37:02 2001 (32701) post to procomm-general from mailman-owner@solarflow, 
size=1327, 1 failures
Dec 30 03:37:02 2001 (32701) post to test from mailman-owner@solarflow, size=1283, 1 
failures
Dec 30 03:38:02 2001 (32704) post to procomm-general from mailman-owner@solarflow, 
size=1327, 1 failures
Dec 30 03:38:02 2001 (32704) post to test from mailman-owner@solarflow, size=1283, 1 
failures


here's the last 10 lines of logs/smtp:

Dec 30 03:37:02 2001 (32701) All recipients refused: host not found
Dec 30 03:37:02 2001 (32701) smtp for 1 recips, completed in 0.071 seconds
Dec 30 03:38:02 2001 (32704) All recipients refused: host not found
Dec 30 03:38:02 2001 (32704) smtp for 1 recips, completed in 0.123 seconds
Dec 30 03:38:02 2001 (32704) All recipients refused: host not found
Dec 30 03:38:02 2001 (32704) smtp for 1 recips, completed in 0.072 seconds
Dec 30 03:39:02 2001 (32717) All recipients refused: host not found
Dec 30 03:39:02 2001 (32717) smtp for 1 recips, completed in 0.115 seconds
Dec 30 03:39:03 2001 (32717) All recipients refused: host not found
Dec 30 03:39:03 2001 (32717) smtp for 1 recips, completed in 0.073 seconds


here's the last 10 lines of logs/smtp-failure:

Dec 30 03:35:04 2001 (32694) -1 [EMAIL PROTECTED] (ignore)
Dec 30 03:35:05 2001 (32694) -1 [EMAIL PROTECTED] (ignore)
Dec 30 03:36:01 2001 (32698) -1 [EMAIL PROTECTED] (ignore)
Dec 30 03:36:01 2001 (32698) -1 [EMAIL PROTECTED] (ignore)
Dec 30 03:37:02 2001 (32701) -1 [EMAIL PROTECTED] (ignore)
Dec 30 03:37:02 2001 (32701) -1 [EMAIL PROTECTED] (ignore)
Dec 30 03:38:02 2001 (32704) -1 [EMAIL PROTECTED] (ignore)
Dec 30 03:38:02 2001 (32704) -1 [EMAIL PROTECTED] (ignore)
Dec 30 03:39:02 2001 (32717) -1 [EMAIL PROTECTED] (ignore)
Dec 30 03:39:03 2001 (32717) -1 [EMAIL PROTECTED] (ignore)


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



[Mailman-Users] help setting up mailing list

2001-12-29 Thread Justin Zygmont

I sent a message with no responses so i'll try agian.

I am having difficulty getting a mailing list to work, when I create a new
list, it doesn't send a message to me (root) telling me which page to to
go or how to subscribe.  I don't think this is a permission problem but
bin/check_perms will not run correctly from any directory.

Does anyone know why I wouldn't recieve a message when I create a new
list?  I see that the mailman logs say failure but doesn't say why and
var/log/messages doesn't report anything.

thanks..






--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



[Mailman-Users] trouble with mailman install

2001-12-28 Thread Justin Zygmont

I have just a few questions that weill help me greatly with
installing mailman on RH 6.2.

I am using a 2.0.8 tar ball, is $prefix actually /home/mailman or
/home/mailman/mailman-2.0.8 ?

When I try to run bin/check_perms it always fails with the same message
saying there is an error in line 38 and i'm not running it from the
$prefix directory.  I tried running it from any location with the same
results.

thanks..




--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users