Re: [maemo-users] Printing?

2007-01-28 Thread James Sparenberg
On Sunday 28 January 2007 10:43:30 pm Jan Wender wrote:
> A little enhancement, but untested. And maybe it would be better to
> use /bin/sh, because on normal devices no bash is installed.
>
> #!/bin/sh
>
> user=[put your user here]
> host=[put fqdn or up of printer host here]
>
> if [ $# -ge 1 ];then
>   file=$1
>   cat $file | ssh [EMAIL PROTECTED] 'lpr /tmp/$file'
> else
>   cat | ssh [EMAIL PROTECTED] 'lpr /tmp/$file'
> fi
> echo "complete"


Just curious, why the cat?

>
> Cheerio, Jan
> ___
> maemo-users mailing list
> maemo-users@maemo.org
> https://maemo.org/mailman/listinfo/maemo-users


___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] Printing?

2007-01-28 Thread Jan Wender

A little enhancement, but untested. And maybe it would be better to
use /bin/sh, because on normal devices no bash is installed.

#!/bin/sh

user=[put your user here]
host=[put fqdn or up of printer host here]

if [ $# -ge 1 ];then
 file=$1
 cat $file | ssh [EMAIL PROTECTED] 'lpr /tmp/$file'
else
 cat | ssh [EMAIL PROTECTED] 'lpr /tmp/$file'
fi
echo "complete"

Cheerio, Jan
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Re: N800 screen protector

2007-01-28 Thread Frédéric Crozat
> Le dimanche 28 janvier 2007 à 23:12 +, Danny Milosavljevic a écrit :
> Hi,
> 
> On Fri, 26 Jan 2007 21:28:17 +0100, Laurent MARTIN wrote:
> > Thank you very much for your answer: the *real* screen protector for  
> > my brand new N800 has just arrived by postmail, so I'm going to  
> > replace the stock film protection soon!
> 
> Where did you get the real screen protector?

I strongly recommend Brando Ultraclear screen protector. It is already
available for N770 (I've been using one since I got my N770 in October
2005). They are available at
http://shop.brando.com.hk/ultraclearscreenprotector.php .
I've just ordered a new N770 protection for my brand new N800 (thanks
Nokia for discount coupon btw), since screen are the same size.

> Does a screen protector mess with the touch screen interface?

Not at all.

-- 
Frédéric Crozat 
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Premium eBooks?

2007-01-28 Thread Bob Crawford
don't forget good old usenet:
The groups
alt.binaries.e-book and
alt.binaries.e-books
have provided an embarrassment of riches over time.

FWIW, my preferred ebook reading format is plaintext.



___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Printing?

2007-01-28 Thread James Sparenberg
On Sunday 28 January 2007 01:49:39 pm Jonathan Greene wrote:
> On 1/28/07, Damien Challet <[EMAIL PROTECTED]> wrote:
> > On Sunday 28 January 2007 21:56, James Sparenberg wrote:
> > > On Sunday 28 January 2007 11:38, Damien Challet wrote:
> > > > On Sunday 28 January 2007 16:56, Humberto Ortiz-Zuazaga wrote:
> > > > > Jonathan Greene wrote:
> > > > > > It would be great to print from my N800 to a network accessible
> > > > > > printer... Anyone figure a hack for this?
> > > > >
> > > > > There are remote only lpr tools, like http://truffula.com/rlpr/.
> > > > > Maybe these can run on maemo?
> > > >
> > > > this is what I use in an other context:
> > > >
> > > > #!/usr/bin/perl
> > > > my($file)=$ARGV[0];
> > > > system("scp $file [EMAIL PROTECTED]:");
> > > > system("ssh [EMAIL PROTECTED] lpr $file");
> > > > sleep 100;
> > > > system("ssh [EMAIL PROTECTED] rm -f $file");
> > > > exit;
> > >
> > > Damien,
> > >
> > >If I'm understanding this correctly, you are saying (in perl) take
> > > this file and move it to that host and print it using it's defaults. 
> > > Or am I wrong.  (If I'm right, slick idea!)
> >
> > Yes, that is correct, assuming also that key authentification is set up.
> >
> > One should of course convert it into a shell script.
>
> That would be pretty amazing and if in OSX, I set up an automator
> action to watch a particular folder and print new things... it would
> totally work!
>
> How would I make it a shell script?  And how would you do it from
> something like Opera for example?  There is no file to move around...

I believe the bash conversion would be.

#!/usr/bin/bash

file=$1
user=[put your user here]
host=[put fqdn or up of printer host here]

scp $file [EMAIL PROTECTED]:/tmp
ssh [EMAIL PROTECTED] `lpr /tmp/$file`
sleep 100
ssh [EMAIL PROTECTED] `rm $file`
echo "complete"

Though I'm not in a place to verify it yet.  (No printer here.)

James

___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Printing?

2007-01-28 Thread James Sparenberg
On Sunday 28 January 2007 01:49:39 pm Jonathan Greene wrote:
> On 1/28/07, Damien Challet <[EMAIL PROTECTED]> wrote:
> > On Sunday 28 January 2007 21:56, James Sparenberg wrote:
> > > On Sunday 28 January 2007 11:38, Damien Challet wrote:
> > > > On Sunday 28 January 2007 16:56, Humberto Ortiz-Zuazaga wrote:
> > > > > Jonathan Greene wrote:
> > > > > > It would be great to print from my N800 to a network accessible
> > > > > > printer... Anyone figure a hack for this?
> > > > >
> > > > > There are remote only lpr tools, like http://truffula.com/rlpr/.
> > > > > Maybe these can run on maemo?
> > > >
> > > > this is what I use in an other context:
> > > >
> > > > #!/usr/bin/perl
> > > > my($file)=$ARGV[0];
> > > > system("scp $file [EMAIL PROTECTED]:");
> > > > system("ssh [EMAIL PROTECTED] lpr $file");
> > > > sleep 100;
> > > > system("ssh [EMAIL PROTECTED] rm -f $file");
> > > > exit;
> > >
> > > Damien,
> > >
> > >If I'm understanding this correctly, you are saying (in perl) take
> > > this file and move it to that host and print it using it's defaults. 
> > > Or am I wrong.  (If I'm right, slick idea!)
> >
> > Yes, that is correct, assuming also that key authentification is set up.
> >
> > One should of course convert it into a shell script.
>
> That would be pretty amazing and if in OSX, I set up an automator
> action to watch a particular folder and print new things... it would
> totally work!

No need since when you run this script it does the print command from the get 
go and IIRC lpr works with OSX as well.
>
> How would I make it a shell script?  And how would you do it from
> something like Opera for example?  There is no file to move around...

You don't do it from opera per se but you create the program and then (if this 
was a desktop) you tell opera that the print command is this script.  Hmmm 

James



___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] [maemo-announce] New Scratchbox installer for maemo 3.0 'bora' now available

2007-01-28 Thread Ferenc Szekely

Hello,

A new Scratchbox installer script that installs and configures the
Scratchbox cross-compilation toolkit for maemo 3.0 'bora' is now available.

The script and the updated INSTALL.txt file can be downloaded from:

http://repository.maemo.org/stable/bora/

The name of the script is: maemo-scratchbox-install_3.0.sh

Before starting the installation please read first the updated INSTALL.txt file.

This installer script simplifies the process of setting up the
maemo 3.0 'bora' development environment especially for new developers. The
script automatically downloads Scratchbox from scratchbox.org and takes
care of various SB related configurations for the developer thus
minimizing manual work and potential Scratchbox misconfiguration.

Happy Hacking!

On behalf of the maemo SDK team:
Ferenc
___
maemo-announce mailing list
[EMAIL PROTECTED]
https://maemo.org/mailman/listinfo/maemo-announce
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Printing?

2007-01-28 Thread Michael Thompson

On 28/01/07, Jonathan Greene <[EMAIL PROTECTED]> wrote:


That would be pretty amazing and if in OSX, I set up an automator
action to watch a particular folder and print new things... it would
totally work!

How would I make it a shell script?  And how would you do it from
something like Opera for example?  There is no file to move around...


the lp command above requires a postscript file whuch you can't
create. i'd like to see 'save to pdf'
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] Re: N800 screen protector

2007-01-28 Thread Danny Milosavljevic
Hi,

On Fri, 26 Jan 2007 21:28:17 +0100, Laurent MARTIN wrote:
> Thank you very much for your answer: the *real* screen protector for  
> my brand new N800 has just arrived by postmail, so I'm going to  
> replace the stock film protection soon!

Where did you get the real screen protector?
Does a screen protector mess with the touch screen interface?

cheers,
  Danny

___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Printing?

2007-01-28 Thread Jonathan Greene

On 1/28/07, Damien Challet <[EMAIL PROTECTED]> wrote:

On Sunday 28 January 2007 21:56, James Sparenberg wrote:
> On Sunday 28 January 2007 11:38, Damien Challet wrote:
> > On Sunday 28 January 2007 16:56, Humberto Ortiz-Zuazaga wrote:
> > > Jonathan Greene wrote:
> > > > It would be great to print from my N800 to a network accessible
> > > > printer... Anyone figure a hack for this?
> > >
> > > There are remote only lpr tools, like http://truffula.com/rlpr/. Maybe
> > > these can run on maemo?
> >
> > this is what I use in an other context:
> >
> > #!/usr/bin/perl
> > my($file)=$ARGV[0];
> > system("scp $file [EMAIL PROTECTED]:");
> > system("ssh [EMAIL PROTECTED] lpr $file");
> > sleep 100;
> > system("ssh [EMAIL PROTECTED] rm -f $file");
> > exit;
>
> Damien,
>
>If I'm understanding this correctly, you are saying (in perl) take this
> file and move it to that host and print it using it's defaults.  Or am I
> wrong.  (If I'm right, slick idea!)

Yes, that is correct, assuming also that key authentification is set up.

One should of course convert it into a shell script.



That would be pretty amazing and if in OSX, I set up an automator
action to watch a particular folder and print new things... it would
totally work!

How would I make it a shell script?  And how would you do it from
something like Opera for example?  There is no file to move around...


--
Jonathan Greene
m 917.560.3000
AIM / iChat - atmasphere
gtalk / jabber - [EMAIL PROTECTED]
Gizmo - JonathanGreene
blog - http://www.atmasphere.net/wp
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] Re: application catalog reviews

2007-01-28 Thread Danny Milosavljevic
Hi,

[hmm, it seems I can't find the earlier posts of this thread, so I'm posting 
without having read the entire thread. Forgive me]

On Sun, 28 Jan 2007 07:49:50 +0100, Zoran Kolic wrote:
>> e.g. if there is a repository bob.example.com/, how about having a .deb 
>> that adds the appropriate line to /etc/apt/sources.list for 
>> bob.example.com - that way, if I want to add a repository, I can just 
>> click on a link in the browser, the package adding the repo gets 
>> downloaded and handed off to the application installer, and there you 
>> are - the repository has been added, no typing of the repo data.

I thought that's what .install files[1] are for?

[1] 
https://stage.maemo.org/svn/maemo/projects/haf/trunk/osso-application-installer/doc/repository.txt

cheers,
  Danny

___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Printing?

2007-01-28 Thread Damien Challet
On Sunday 28 January 2007 21:56, James Sparenberg wrote:
> On Sunday 28 January 2007 11:38, Damien Challet wrote:
> > On Sunday 28 January 2007 16:56, Humberto Ortiz-Zuazaga wrote:
> > > Jonathan Greene wrote:
> > > > It would be great to print from my N800 to a network accessible
> > > > printer... Anyone figure a hack for this?
> > >
> > > There are remote only lpr tools, like http://truffula.com/rlpr/. Maybe
> > > these can run on maemo?
> >
> > this is what I use in an other context:
> >
> > #!/usr/bin/perl
> > my($file)=$ARGV[0];
> > system("scp $file [EMAIL PROTECTED]:");
> > system("ssh [EMAIL PROTECTED] lpr $file");
> > sleep 100;
> > system("ssh [EMAIL PROTECTED] rm -f $file");
> > exit;
>
> Damien,
>
>If I'm understanding this correctly, you are saying (in perl) take this
> file and move it to that host and print it using it's defaults.  Or am I
> wrong.  (If I'm right, slick idea!)

Yes, that is correct, assuming also that key authentification is set up.

One should of course convert it into a shell script.

___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Printing?

2007-01-28 Thread James Sparenberg
On Sunday 28 January 2007 11:38, Damien Challet wrote:
> On Sunday 28 January 2007 16:56, Humberto Ortiz-Zuazaga wrote:
> > Jonathan Greene wrote:
> > > It would be great to print from my N800 to a network accessible
> > > printer... Anyone figure a hack for this?
> >
> > There are remote only lpr tools, like http://truffula.com/rlpr/. Maybe
> > these can run on maemo?
>
> this is what I use in an other context:
>
> #!/usr/bin/perl
> my($file)=$ARGV[0];
> system("scp $file [EMAIL PROTECTED]:");
> system("ssh [EMAIL PROTECTED] lpr $file");
> sleep 100;
> system("ssh [EMAIL PROTECTED] rm -f $file");
> exit;

Damien,

   If I'm understanding this correctly, you are saying (in perl) take this 
file and move it to that host and print it using it's defaults.  Or am I 
wrong.  (If I'm right, slick idea!)

James
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Printing?

2007-01-28 Thread James Sparenberg
On Sunday 28 January 2007 07:56, Humberto Ortiz-Zuazaga wrote:
> Jonathan Greene wrote:
> > It would be great to print from my N800 to a network accessible
> > printer... Anyone figure a hack for this?
>
> There are remote only lpr tools, like http://truffula.com/rlpr/. Maybe
> these can run on maemo?


To my overly limited understanding the problem lies mostly in the shear size 
and volume of printer filter(drivers) available.  On a desktop cups is 
nothing compared to the libraries needed to talk to the printers themselves.  
I see that as the major problem.  Maybe I'm wrong.  

James
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] application catalog reviews

2007-01-28 Thread James Sparenberg
On Saturday 27 January 2007 13:11, David Hagood wrote:
> Ferenc Szekely wrote:
> > The current phase 2 plan will be added to garage this weekend, ie.
> > tonight or tomorrow.
>
> May I make a small suggestion for usability? Having just reflashed my
> 770 to the lastest official firmware, then spent a fair amount of time
> reenabling the various repositories, could you consider making an
> installable .deb that sets up each repository?
>
> e.g. if there is a repository bob.example.com/, how about having a .deb
> that adds the appropriate line to /etc/apt/sources.list for
> bob.example.com - that way, if I want to add a repository, I can just
> click on a link in the browser, the package adding the repo gets
> downloaded and handed off to the application installer, and there you
> are - the repository has been added, no typing of the repo data.
>
> Bonus points for adding the GPG keys automatically.

Hmmm... I know I could do this in RPM (I know those like the back of my hand) 
So it should be possible in deb.  

James
>
> ___
> maemo-users mailing list
> maemo-users@maemo.org
> https://maemo.org/mailman/listinfo/maemo-users
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Printing?

2007-01-28 Thread Damien Challet
On Sunday 28 January 2007 16:56, Humberto Ortiz-Zuazaga wrote:
> Jonathan Greene wrote:
> > It would be great to print from my N800 to a network accessible
> > printer... Anyone figure a hack for this?
>
> There are remote only lpr tools, like http://truffula.com/rlpr/. Maybe
> these can run on maemo?

this is what I use in an other context:

#!/usr/bin/perl
my($file)=$ARGV[0];
system("scp $file [EMAIL PROTECTED]:");
system("ssh [EMAIL PROTECTED] lpr $file");
sleep 100;
system("ssh [EMAIL PROTECTED] rm -f $file");
exit;
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Re: application catalog reviews

2007-01-28 Thread Ferenc Szekely

Hello,

I would like thank you once again for the great comments, proposals
and questions.

I tried to add them to our Feature Request tracker:
https://garage.maemo.org/tracker/index.php?group_id=106&atid=460

We are going to prioritize and assign these items next week. I hope
towards the end of the week we will know which of them will fit into
Phase 2. The rest will be postponed to the next phase of the website
development activities.

If you wish please continue submitting your ideas to our garage tracker.

Thanks a lot!
ferenc
on behalf of the maemo2midgard team
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] Video call between N800 and PC

2007-01-28 Thread Laurent MARTIN

Hi!

I may have missed it but video over IP capabilities of the new N800  
haven't been related often on this list. Well, today I've tested  
Nokia Internet Call Invitation (NICI) between my N800 and my XP box  
and guess what: it works quite well :o) OK, very first calls may be  
more intuitive and the PC software could provide more facilities but  
this little application is quite recent: the best is to come!  
Hopefully, Mr. Nokia will port it to other plateforms ;-)


--
Laurent, Nantes - France
Apple PowerBook 12"
Treo 650 (unlocked GSM)
Nokia Internet Tablet N800


___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Printing?

2007-01-28 Thread Humberto Ortiz-Zuazaga
Jonathan Greene wrote:

> It would be great to print from my N800 to a network accessible
> printer... Anyone figure a hack for this?

There are remote only lpr tools, like http://truffula.com/rlpr/. Maybe
these can run on maemo?


-- 
Humberto Ortiz-Zuazaga
Programmer-Archaeologist
University of Puerto Rico
http://www.hpcf.upr.edu/~humberto/



signature.asc
Description: OpenPGP digital signature
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] Printing?

2007-01-28 Thread Jonathan Greene

Can it be done?

It would be great to print from my N800 to a network accessible
printer... Anyone figure a hack for this?



--
Jonathan Greene
m 917.560.3000
AIM / iChat - atmasphere
gtalk / jabber - [EMAIL PROTECTED]
Gizmo - JonathanGreene
blog - http://www.atmasphere.net/wp
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] can't make or receive calls on N800

2007-01-28 Thread Jonathan Greene

On 1/28/07, Humberto Ortiz-Zuazaga <[EMAIL PROTECTED]> wrote:

william maddler wrote:

> Incoming calls are rejected saying I'm not online. Afterward my "missed
> calls" counter updates (this basically means that I'm correctly logged
> it, right?

> Any clue?

You're still logged in on one of the other devices?



One of the benefits of Gizmo is that you can be logged on and receive
calls on a variety of devices at the same time so it's probably
something else...

I'd suggest searching the Gizmo Project forums and also opening a
support ticket.  They are quite good and providing assistance...



--
Jonathan Greene
m 917.560.3000
AIM / iChat - atmasphere
gtalk / jabber - [EMAIL PROTECTED]
Gizmo - JonathanGreene
blog - http://www.atmasphere.net/wp
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] can't make or receive calls on N800

2007-01-28 Thread Humberto Ortiz-Zuazaga
william maddler wrote:

> Incoming calls are rejected saying I'm not online. Afterward my "missed
> calls" counter updates (this basically means that I'm correctly logged
> it, right?

> Any clue?

You're still logged in on one of the other devices?

-- 
Humberto Ortiz-Zuazaga
Programmer-Archaeologist
University of Puerto Rico
http://www.hpcf.upr.edu/~humberto/



signature.asc
Description: OpenPGP digital signature
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] can't make or receive calls on N800

2007-01-28 Thread william maddler
I'm trying to make Gizmo work on my N800 since a couple days, but looks
like there is something wrong somewhere. The same account is perfectly
working on every other device (770, Linux, Microcrap) but my N800.
Incoming calls are rejected saying I'm not online. Afterward my "missed
calls" counter updates (this basically means that I'm correctly logged
it, right?

Outgoing calls don't even start.

Moreover, if I try to change my online status from/to Available there is
no change, nor in the status neither in the interface, which always
shows "Available".

I tried bot 770 and N800 versions, but the result remains the same.

I can't really understand what's going on.
Any clue?

___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Wireless Access Point

2007-01-28 Thread Jonathan Greene

You should be fine.  I have a hybrid network as well with a d-link
wired gigabit router, an airport extreme base station and two airport
express units.  You can configure your wireless network over ethernet
with a diect connection between a computer and the wireless AP.





On 1/28/07, Thomas Armagost <[EMAIL PROTECTED]> wrote:

http://www.dlink.com/products/resource.asp?

pid=326&rid=1151&sec=0


[click on URL to see diagram]

Here's what I want to do.  I have a wired D-Link DI-604 router.  I

want

to plug a D-Link 802.11g Wireless Access Point into an ethernet

LAN

port of the wired router, and then plug a Mac mini into another
ethernet LAN port, and then plug a cable modem into the WAN

port of

the wired router.

I don't want the Mac mini to be wireless.  However, I do want the

n800

to have wi-fi broadband capability, needless to say.

D-Link device configuration is web-based.  Their support page

says that

Java-enabled Opera 6 or above will work, but I'm not absolutely

certain

that the n800's Opera 8 browser can get the job done.

I think that I could use the Mac mini to configure the Wireless

Access

Point for the n800 if necessary.

I haven't bought the Wireless Access Point yet.  I downloaded

the PDF

manual.

Will my plan work?

Tallyho,
Thomas Armagost
[EMAIL PROTECTED]
http://www.well.com/user/silly/
Registered Linux User #254523  http://counter.li.org/
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


ttps://maemo.org/mailman/listinfo/maemo-users



ttps://maemo.org/mailman/listinfo/maemo-users



nathan Greene
m 917.560.3000
AIM / iChat - atmasphere
gtalk / jabber - [EMAIL PROTECTED]
Gizmo - JonathanGreene
blog - http://www.atmasphere.net/wp
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Usage

2007-01-28 Thread Laurent GUERBY
FYI I filed a bugzilla about the default busybox:

Wishlist: include a bit more tools in shipped busybox
https://maemo.org/bugzilla/show_bug.cgi?id=989

May be other users can add their favourite busybox
configuration.

Laurent


___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users