Re: [Mailman-Users] How to export googlegroup mail to mailman

2008-12-12 Thread Mark Sapiro
haha wrote:

>On Sat, Dec 13, 2008 at 2:24 AM, haha  wrote:
>
>> Thanks !!
>>
>> I find a script in http://libgmail.sourceforge.net/, it cat download mail
>> of my gmail, but it alway appear error :
>>   """
>> 11e2d6c674f24487 5 crypto(9) choose another driver if we cannot open a
>> session on it
>> Traceback (most recent call last):
>>   File "archive.py", line 79, in 
>> for msg in thread:
>>   File "/home/minix/software/libgmail-0.1.11/libgmail.py", line 1368, in
>> __iter__
>> self._messages = self._getMessages(self)
>>   File "/home/minix/software/libgmail-0.1.11/libgmail.py", line 1406, in
>> _getMessages
>> result += [GmailMessage(thread, msg, isDraft = isDraft)]
>>   File "/home/minix/software/libgmail-0.1.11/libgmail.py", line 1445, in
>> __init__
>> self.author_fullname = msgData[MI_AUTHORNAME].decode('utf-8')
>>   File "/usr/local/lib/python2.5/encodings/utf_8.py", line 16, in decode
>> return codecs.utf_8_decode(input, errors, True)
>> UnicodeEncodeError: 'ascii' codec can't encode characters in position
>> 15-16: ordinal not in range(128)
>> """
>> I think this ASCII error!!


This error says there is something wrong with your Python installation
since it is complaining that the 'ascii' codec can't decode characters
outside the 0 to 127 range, yet decode has been invoked with a
character set of 'utf-8' so there should be no 'ascii' codec involved.

-- 
Mark Sapiro The 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
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://wiki.list.org/x/QIA9


Re: [Mailman-Users] How to export googlegroup mail to mailman

2008-12-12 Thread haha
On Fri, Dec 12, 2008 at 9:27 PM, Mark Sapiro  wrote:

> haha wrote:
> >
> >I have a trouble:
> >   How to export googlegroup mail to mailman ???
>
>
> Do you mean archives?
>
> If so, Archives need to be in *nix mbox format to be imported to
> Mailman (using Mailman's bin/arch).


I've another mail-list and now I need to migrate from Google Group to the
new mail-list. I've found a script which can export the archives(
http://libgmail.sourceforge.net) but it failed. It seems that the script
can't handle Unicode every well.


>
> How to export Google Groups archives as a mbox is a Google Groups
> question.
>
> --
> Mark Sapiro The 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
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://wiki.list.org/x/QIA9


Re: [Mailman-Users] How to export googlegroup mail to mailman

2008-12-12 Thread haha
On Sat, Dec 13, 2008 at 2:24 AM, haha  wrote:

> Thanks !!
>
> I find a script in http://libgmail.sourceforge.net/, it cat download mail
> of my gmail, but it alway appear error :
>   """
> 11e2d6c674f24487 5 crypto(9) choose another driver if we cannot open a
> session on it
> Traceback (most recent call last):
>   File "archive.py", line 79, in 
> for msg in thread:
>   File "/home/minix/software/libgmail-0.1.11/libgmail.py", line 1368, in
> __iter__
> self._messages = self._getMessages(self)
>   File "/home/minix/software/libgmail-0.1.11/libgmail.py", line 1406, in
> _getMessages
> result += [GmailMessage(thread, msg, isDraft = isDraft)]
>   File "/home/minix/software/libgmail-0.1.11/libgmail.py", line 1445, in
> __init__
> self.author_fullname = msgData[MI_AUTHORNAME].decode('utf-8')
>   File "/usr/local/lib/python2.5/encodings/utf_8.py", line 16, in decode
> return codecs.utf_8_decode(input, errors, True)
> UnicodeEncodeError: 'ascii' codec can't encode characters in position
> 15-16: ordinal not in range(128)
> """
> I think this ASCII error!!
>
> i only find the method! but it not to achieve my hope!!
>
>
> On Fri, Dec 12, 2008 at 9:10 PM, Grant Taylor 
> wrote:
>
>> On 12/12/2008 02:15 AM, haha wrote:
>>
>>> How to export googlegroup mail to mailman ???
>>>
>>
>> Are you wanting to export a true Google Group (Google's mailing lists) or
>> a Google Group interface to a newsgroup?
>>
>> If it is the true Google Group, I'd think you could subscribe your mailing
>> list to said group(s) and utilize your own mailing list as a gateway.
>>  Though I'm not sure how advisable doing this is.
>>
>>
>>
>> Grant. . . .
>> --
>> Mailman-Users mailing list
>> Mailman-Users@python.org
>> http://mail.python.org/mailman/listinfo/mailman-users
>> Mailman FAQ: http://wiki.list.org/x/AgA3
>> Searchable Archives:
>> http://www.mail-archive.com/mailman-users%40python.org/
>> Unsubscribe:
>> http://mail.python.org/mailman/options/mailman-users/mgtuiw%40gmail.com
>>
>> Security Policy: http://wiki.list.org/x/QIA9
>>
>
>
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


Re: [Mailman-Users] How to export googlegroup mail to mailman

2008-12-12 Thread Mark Sapiro
haha wrote:
>
>I have a trouble:
>   How to export googlegroup mail to mailman ???


Do you mean archives?

If so, Archives need to be in *nix mbox format to be imported to
Mailman (using Mailman's bin/arch).

How to export Google Groups archives as a mbox is a Google Groups
question.

-- 
Mark Sapiro The 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
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://wiki.list.org/x/QIA9


Re: [Mailman-Users] How to export googlegroup mail to mailman

2008-12-12 Thread Grant Taylor

On 12/12/2008 02:15 AM, haha wrote:

How to export googlegroup mail to mailman ???


Are you wanting to export a true Google Group (Google's mailing lists) 
or a Google Group interface to a newsgroup?


If it is the true Google Group, I'd think you could subscribe your 
mailing list to said group(s) and utilize your own mailing list as a 
gateway.  Though I'm not sure how advisable doing this is.




Grant. . . .
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] How to export googlegroup mail to mailman

2008-12-12 Thread haha
Hi

I have a trouble:
   How to export googlegroup mail to mailman ???

thanks!!!
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9