Learn How To Love

2002-12-28 Thread nida


hi,check the attached love screensaverand feel the fragrance of true love..
<>


Namespace question

2002-12-28 Thread Arie M. Rubenstein
I've written a module for CPAN which translates between (United States) zip
codes and city/state names. It seems like there are already some related
modules in Geography:: so I was going to call it Geography::ZipCode . Any
advice is most welcome. Thanks!

-- 
Arie



User update for SREZIC

2002-12-28 Thread Perl Authors Upload Server
(This Mail was generated by the server
  
https://pause.perl.org/pause/authenquery?HIDDENNAME=SREZIC&pause99_edit_cred_fullname=Slaven+Rezic&pause99_edit_cred_asciiname=&pause99_edit_cred_email=slaven%40rezic.de&pause99_edit_cred_secretemail=&pause99_edit_cred_homepage=http%3A%2F%2Fwww.rezic.de%2Feserte%2F&pause99_edit_cred_cpan_mail_alias=publ&pause99_edit_cred_sub=Submit;ACTION=edit_cred
automatically)

Record update in the PAUSE users database:

 userid: [SREZIC]
   fullname: [Slaven Rezic]
  asciiname: []
  email: [[EMAIL PROTECTED]] was [[EMAIL PROTECTED]]
   homepage: [http://www.rezic.de/eserte/]
cpan_mail_alias: [publ]


Data were entered by SREZIC (Slaven Rezic).
Please check if they are correct.

Thanks,
The Pause



Module submission Net::RBLClient

2002-12-28 Thread Perl Authors Upload Server

The following module was proposed for inclusion in the Module List:

  modid:   Net::RBLClient
  DSLIP:   adpOp
  description: Query many blackhole lists in parallel
  userid:  ABLUM (Asher Blum)
  chapterid:5 (Networking_Devices_IPC)
  communities:

  similar:
Mail::RBL

  rationale:

Namespace: RBL lookups are a kind of network protocol layered on
DNS. They are not necessarily associated with mail - for example, a
mod_perl handler could return a different response if the client IP
is on some list. Therefore, the module belongs under Net, not under
Mail. Relation to existing module (Mail::RBL): This module performs
queries in parallel and returns partial results early if desired,
which makes it practical to query multiple lists in real time.

  enteredby:   ABLUM (Asher Blum)
  enteredon:   Sat Dec 28 22:10:16 2002 GMT

The resulting entry would be:

Net::
::RBLClient   adpOp Query many blackhole lists in parallel   ABLUM


Thanks for registering,
The Pause Team

PS: The following links are only valid for module list maintainers:

Registration form with editing capabilities:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=1340_2f657bfdea65ec8d&SUBMIT_pause99_add_mod_preview=1
Immediate (one click) registration:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=1340_2f657bfdea65ec8d&SUBMIT_pause99_add_mod_insertit=1



User update for MITEL

2002-12-28 Thread Perl Authors Upload Server
(This Mail was generated by the server
  
https://pause.perl.org/pause/authenquery?HIDDENNAME=MITEL&pause99_edit_cred_fullname=Gordon+Rowell&pause99_edit_cred_asciiname=&[EMAIL PROTECTED]&[EMAIL PROTECTED]&pause99_edit_cred_homepage=http%3A%2F%2Fwww.e-smith.org&pause99_edit_cred_cpan_mail_alias=publ&pause99_edit_cred_sub=Submit;ACTION=edit_cred
automatically)

Record update in the PAUSE users database:

 userid: [MITEL]
   fullname: [Gordon Rowell]
  asciiname: []
  email: [[EMAIL PROTECTED]] was [[EMAIL PROTECTED]]
   homepage: [http://www.e-smith.org] was [http://www.gormand.com.au]
cpan_mail_alias: [publ]


Data were entered by MITEL (Gordon Rowell).
Please check if they are correct.

Thanks,
The Pause



Re: Module submission Net::Discovery

2002-12-28 Thread Tom Scanlan
How about NetInfo::Discovery?  Or were you actually looking for a Netx 
namespace?

-Tom Scanlan


On Sat, 28 Dec 2002, _brian_d_foy wrote:

> In article <[EMAIL PROTECTED]>, Perl Authors
> Upload Server <[EMAIL PROTECTED]> wrote:
> 
> > The following module was proposed for inclusion in the Module List:
> > 
> >   modid:   Net::Discovery
> 
> Net::* is for modules that implement a network protocol.
> 
> how about Netx::Discovery?
> 
> -- 
> brian d foy (one of many PAUSE admins), http://pause.perl.org
> please send all messages back to [EMAIL PROTECTED]
> 




Exporter::VA Rdph Improved Exporter with Versioning and Alias

2002-12-28 Thread John M. Dlugosz
Exporter::VA Rdph Improved Exporter with Versioning and Alias

Exporter::VA.pm is a Perl module that is a replacement for the traditional
Exporter module.

I wanted to rewrite a couple simple modules to make them more capable, and I
also wanted to remove the default exports.  After all, the new way would be
object-oriented.  It would still have the function call for compatibility,
but we don't want it as a default.  I figured playing around with VERSION
and Exporter's export_to_level would do the trick, but it was not simple.  I
did in fact redo two modules, but the compatibility mode stuff stalled me.

Finally, I realized that the remove-default-exports issue should be a
reusable module in itself.  After poking around and finding Exporter
lacking, I decided to write an exporter from scratch.  I called it VA for
"Versioning and Aliasing", the major features that distinguish it and
provide it's reason for being.

I figued I needed a more general-purpose engine that could export things
(not just named things, but generated things) from a module to a
possibly-different name.  Going from a named item to the same name is simply
too restrictive.  Generalize it, and anything is possible.  That gave the
Alias concept.  Then I needed to be able to specify different definitions
for different versions.  I thought about totally different data structures
for each version, but realized that they would have a lot in common and I
really only want to give the changes.  The interface to this was the hardest
part of the process.

The concept is pretty open-ended, and it would not do to have something
unruly.  Limiting it to versioned names and versioned tags in a single hash
prooved to be workable, and the programmatic interface is still available
for "anything else".  It is designed to be extended, treating the derived
class user as another potentional customer and providing documentation and a
proper interface for this purpose.

I got some valuable feedback and ideas on the Perl Monks site.  Finally,
Exporter::VA was the result.




Re: Module submission Net::Discovery

2002-12-28 Thread _brian_d_foy
In article <[EMAIL PROTECTED]>, Perl Authors
Upload Server <[EMAIL PROTECTED]> wrote:

> The following module was proposed for inclusion in the Module List:
> 
>   modid:   Net::Discovery

Net::* is for modules that implement a network protocol.

how about Netx::Discovery?

-- 
brian d foy (one of many PAUSE admins), http://pause.perl.org
please send all messages back to [EMAIL PROTECTED]



Nur alleine lesen ;-)

2002-12-28 Thread Miriam
Hi, 


wo warste denn hin? Wolltest doch noch den link haben.
Hier also der Link:

http://members.lycos.de/moe1/
Viel spaß
Dann bis demnächst meld dich
cu Schatzi


Re: MITEL PAUSE account creation request

2002-12-28 Thread Johan Vromans
Gordon Rowell <[EMAIL PROTECTED]> writes:

> There are already a number of CPAN ids which are company/organisation
> accounts, 

Yes, we are aware of that. They shouldn't have slipped through,
however.

There are advantages of company/organisation accounts, but the major
disadvantage (for us) is that these accounts would require a formal
(legal) approval from the companies they represent, and that is
something we cannot deal with.

> If it is not possible to create another company account, please create:
> 
> your name:Gordon Rowell
> your email address:   [EMAIL PROTECTED]
> your homepage if you have one :   www.gormand.com.au
> your preferred user-ID on CPAN:   MITEL

Done.
Of course, you're free to change names and email addresses...

-- Johan



Welcome new user MITEL

2002-12-28 Thread Perl Authors Upload Server

Welcome Gordon Rowell,

PAUSE, the Perl Authors Upload Server, has a userid for you:

MITEL

Once you've gone through the procedure of password approval (see the
separate mail you should receive about right now), this userid will be
the one that you can use to upload your work or edit your credentials
in the PAUSE database.

This is what we have stored in the database now:

  Name:  Gordon Rowell
  email: CENSORED
  homepage:  http://www.gormand.com.au
  enteredby: Johan Vromans

Please note that your email address is exposed in various listings and
database dumps. You can register with both a public and a secret email
if you want to protect yourself from SPAM. If you want to do this,
please visit
  https://pause.perl.org/pause/authenquery?ACTION=edit_cred
or
  http://pause.perl.org/pause/authenquery?ACTION=edit_cred

If you need any further information, please visit
  $CPAN/modules/04pause.html.
If this doesn't answer your questions, contact [EMAIL PROTECTED]

Thank you for your prospective contributions,
The Pause Team



Bulk Email Sending & Bullet Proof Web Hosting

2002-12-28 Thread cici_h
Dear Sir/Madam,

My name is Peter Severa, I am Business Development Director 
at E-mailPromo Company. Your name was at a business-related 
website. Do I understand correctly that your activity is 
related to business? May I know, what industry are you in,
specifically?

If you may be interested in new customers, our company will 
be glad to assist you with promotion of your business. We offer
databases of email addresses for direct email advertising, 
we deliver mailing campaigns, offer bulk-email web hosting 
for advertising projects. Also, we can design an attractive 
html message and a supporting website.

Today, our database includes over 50 million valid and original 
verified e-mail addresses. It is constantly being updated with 
addresses from all over the world. We can also create 
customized databases targeted at your request.

By the way, if you would like us to remove you from our 
database, please send a message to [EMAIL PROTECTED] with 
"Remove" in the Subject line.

Usually, mailing of 1 million addresses allows to brings
1000-5000 new visitors interested in your offer to your site.


Your advertising campaign will be fully legal. It will 
include a remove instruction, thus it will be in compliance 
with the new e-mail bill section 301. Under Bill S. 1618 
TITLE III passed by the 105th US Congress.


We use our own mailing software which can be ideally adjusted 
for every customer. We have a high-bandwidth channel and a high 
power server.

The constant demand for our service allows us to keep low
prices.


Please see all details, FAQ about our service, and references 
of our customers at:

http://www.e-mailpromo.net


If you have any questions or a request, please do _not_ reply me 
just with a Reply button. 

I will be happy to answer every your question.


Thank you,

Peter Severa
Business Development Director 
E-mailPromo Company
www.e-mailpromo.net





Bulk Email Sending & Bullet Proof Web Hosting

2002-12-28 Thread joanne_renwick
Dear Sir/Madam,

My name is Peter Severa, I am Business Development Director 
at E-mailPromo Company. Your name was at a business-related 
website. Do I understand correctly that your activity is 
related to business? May I know, what industry are you in,
specifically?

If you may be interested in new customers, our company will 
be glad to assist you with promotion of your business. We offer
databases of email addresses for direct email advertising, 
we deliver mailing campaigns, offer bulk-email web hosting 
for advertising projects. Also, we can design an attractive 
html message and a supporting website.

Today, our database includes over 50 million valid and original 
verified e-mail addresses. It is constantly being updated with 
addresses from all over the world. We can also create 
customized databases targeted at your request.

By the way, if you would like us to remove you from our 
database, please send a message to [EMAIL PROTECTED] with 
"Remove" in the Subject line.

Usually, mailing of 1 million addresses allows to brings
1000-5000 new visitors interested in your offer to your site.


Your advertising campaign will be fully legal. It will 
include a remove instruction, thus it will be in compliance 
with the new e-mail bill section 301. Under Bill S. 1618 
TITLE III passed by the 105th US Congress.


We use our own mailing software which can be ideally adjusted 
for every customer. We have a high-bandwidth channel and a high 
power server.

The constant demand for our service allows us to keep low
prices.


Please see all details, FAQ about our service, and references 
of our customers at:

http://www.e-mailpromo.net


If you have any questions or a request, please do _not_ reply me 
just with a Reply button. 

I will be happy to answer every your question.


Thank you,

Peter Severa
Business Development Director 
E-mailPromo Company
www.e-mailpromo.net




Re: MITEL PAUSE account creation request

2002-12-28 Thread Gordon Rowell
On Sat, Dec 28, 2002 at 12:52:33PM +0100, Johan Vromans <[EMAIL PROTECTED]> wrote:
> Gordon Rowell <[EMAIL PROTECTED]> writes:
> 
> > your name:  Mitel SME Server Developers
> > your email address: [EMAIL PROTECTED]
> > your homepage if you have one : www.e-smith.org
> > your preferred user-ID on CPAN: MITEL
> 
> We prefer CPAN ids to be personal, and not company or organisation
> related.

There are already a number of CPAN ids which are company/organisation
accounts, so I suggested doing the same with the MITEL account. This
makes transfer of group work easier when the work is performed as an
organisation (as these tools are).

If it is not possible to create another company account, please create:

your name:  Gordon Rowell
your email address: [EMAIL PROTECTED]
your homepage if you have one : www.gormand.com.au
your preferred user-ID on CPAN: GORDONR

Gordon
--
 Gordon Rowell [EMAIL PROTECTED]
 Director, Engineering
 Network Server Solutions Grouphttp://www.e-smith.com/
 Mitel Networks Corporationhttp://www.mitel.com/smallbusiness




Welcome new user JEFFY

2002-12-28 Thread Perl Authors Upload Server

Welcome Jeff Yoak,

PAUSE, the Perl Authors Upload Server, has a userid for you:

JEFFY

Once you've gone through the procedure of password approval (see the
separate mail you should receive about right now), this userid will be
the one that you can use to upload your work or edit your credentials
in the PAUSE database.

This is what we have stored in the database now:

  Name:  Jeff Yoak
  email: CENSORED
  homepage:  http://yoak.com/
  enteredby: Johan Vromans

Please note that your email address is exposed in various listings and
database dumps. You can register with both a public and a secret email
if you want to protect yourself from SPAM. If you want to do this,
please visit
  https://pause.perl.org/pause/authenquery?ACTION=edit_cred
or
  http://pause.perl.org/pause/authenquery?ACTION=edit_cred

If you need any further information, please visit
  $CPAN/modules/04pause.html.
If this doesn't answer your questions, contact [EMAIL PROTECTED]

Thank you for your prospective contributions,
The Pause Team



Re: MITEL PAUSE account creation request

2002-12-28 Thread Johan Vromans
Gordon Rowell <[EMAIL PROTECTED]> writes:

> your name:Mitel SME Server Developers
> your email address:   [EMAIL PROTECTED]
> your homepage if you have one :   www.e-smith.org
> your preferred user-ID on CPAN:   MITEL

We prefer CPAN ids to be personal, and not company or organisation
related.

-- Johan



How sweet this Screen saver

2002-12-28 Thread nida


Hi,Check the attached screensaver..
<>


User update for YUMPY

2002-12-28 Thread Perl Authors Upload Server
(This Mail was generated by the server
  
https://pause.perl.org/pause/authenquery?HIDDENNAME=YUMPY&pause99_edit_cred_fullname=Tim+Maher&pause99_edit_cred_asciiname=&pause99_edit_cred_email=yumpy%40consultix-inc.com&pause99_edit_cred_secretemail=yumpy%40consultix-inc.com&pause99_edit_cred_homepage=http%3A%2F%2Fwww.teachmeperl.com&pause99_edit_cred_cpan_mail_alias=publ&pause99_edit_cred_sub=Submit;ACTION=edit_cred
automatically)

Record update in the PAUSE users database:

 userid: [YUMPY]
   fullname: [Tim Maher]
  asciiname: []
  email: [[EMAIL PROTECTED]]
   homepage: [http://www.teachmeperl.com] was [http://www.timmaher.org/]
cpan_mail_alias: [publ]


Data were entered by YUMPY (Tim Maher).
Please check if they are correct.

Thanks,
The Pause