ELO/HELO

2002-02-09 Thread Octavian Rasnita

Hi all,
Do you have any idea what is ELO and what is HELO?
I sent a message and I saw in the headers from unknown (HELO).

Thank you for some light.

Teddy,
My dear email address is [EMAIL PROTECTED]
 


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: Change first character of a string into Caps

2002-02-09 Thread Dwalu Z. Khasu

On Sat, 9 Feb 2002, Rene Verharen wrote:

=>Hi,
=>
=>I need to change the first (and ONLY the first) character of a string into 
=>Caps.  I know how to change the whole string into Caps by using this :
=>
=>my $in = "this is my text";
=>$out = uc $in;
=>
=>This is not what I want.  Can someone please point me in the right direction ?
=>
perldoc -f ucfirst

- Dwalu
..peace
--
I am an important person in this world -
Now is the most important time in my life -
My mistakes are my best teachers -
So I will be fearless.
- Student Creed


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: Change first character of a string into Caps

2002-02-09 Thread Eric Pretorious

On Sat, 9 Feb 2002, Rene Verharen wrote:
> I need to change the first (and ONLY the first) character of a string into 
> Caps.  I know how to change the whole string into Caps by using this :
> 
> my $in = "this is my text";
> $out = uc $in;
Rene:

You're close. Use ucfirst() instead. 

To change the capitalization of several words (e.g., change 'eRic
preTorioUs' -> 'Eric Pretorious') try...

$foo =~ /(\w+)/\u\L$1/g;

-- 
Eric P.
Los Gatos, CA


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Change first character of a string into Caps

2002-02-09 Thread Rene Verharen

Hi,

I need to change the first (and ONLY the first) character of a string into 
Caps.  I know how to change the whole string into Caps by using this :

my $in = "this is my text";
$out = uc $in;

This is not what I want.  Can someone please point me in the right direction ?


Thanks.



Kind regards,



Rene Verharen


Please DO NOT reply to me personally.  I'll get my copy from the list.


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




if the date entered is weekend or no?

2002-02-09 Thread GsuLinuX

How can i understand if the date entered by the client is weekend or no? Are there 
some database specificied for that?

funky




Re: The SMTP protocol

2002-02-09 Thread Briac Pilpré

On Sat, 9 Feb 2002 09:54:31 -0800, Octavian Rasnita <[EMAIL PROTECTED]> wrote:
> Do you know where I can get information about the SMTP protocol?
> I read in a module that it is explained in RFC821.
> Where can I found this RFC?

http://www.google.com/search?q=RFC821
with a bit of luck, you'll find it right away

> Will I understand the SMTP protocol from there, to be able to make a script
> for sending mail?

 If you like to spend your weekends reading RFCs, this one will probably
 tell you how the SMTP protocol works.
 But if you're impatient and/or lazy and want to send mail right away,
 you can use one of numerous CPAN modules that handles SMTP protocol
 like Net::SMTP, Mail::Sender, Mail::Sendmail, Mime::Lite, etc.

-- 
briac
 << dynamic .sig on strike, we apologize for the inconvenience >>


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




The SMTP protocol

2002-02-09 Thread Octavian Rasnita

Hi all,
Do you know where I can get information about the SMTP protocol?
I read in a module that it is explained in RFC821.
Where can I found this RFC?
Will I understand the SMTP protocol from there, to be able to make a script
for sending mail?

Thank you for any tips.

Teddy,
My dear email address is [EMAIL PROTECTED]



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




multipart/x-mixed-replace and image/gif

2002-02-09 Thread Hytham Shehab

hi gurus,
well, can any body give me where to read about this topic?

thx