ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] Проблемы с perl-модулем Net::SMTP
@ 2003-12-09 11:16 Alexey Bochenin
  2003-12-09 12:27 ` [Comm] " Alexey Tourbin
  2003-12-09 13:01 ` [Comm] " crux
  0 siblings, 2 replies; 6+ messages in thread
From: Alexey Bochenin @ 2003-12-09 11:16 UTC (permalink / raw)
  To: community


Не пойму, в чем может быть проблема с модулем Net::SMTP? Вот пример крохотного скрипта
#!/usr/bin/perl -w
use Net::SMTP;
use strict;
my $smtp = Net::SMTP -> new('localhost', Debug=>1);
print $smtp->domain,"\n";

При запуске он выдает следующее сообщение об ошибке:
[root@host home]# ./a.pl
Can't call method "domain" on an undefined value at ./a.pl line 8.
[root@tornado statman2]#

Аналогичное сообщение выдается при вызове других функций модуля (->mail и др.)

Ниже приведен список установленных perl-модулей
[root@host home]# rpm -qa|grep perl
perl-Authen-Smb-0.91-alt2
perl-base-5.8.2-alt1
perl-MDK-Common-1.0.3-alt2
perl-Compress-Zlib-1.32-alt1
perl-PlRPC-0.2017-alt1.1
perl-IO-stringy-2.108-alt3
perl-libnet-1.17-alt1
perl-MIME-tools-5.411a-alt1
perl-HTML-Template-2.6-alt2
perl-DBM-5.8.2-alt1
perl-Storable-5.8.2-alt1
rpm-build-perl-0.1-alt8
perl-Net-Daemon-0.37-alt2
perl-DBI-1.39-alt1
perl-DBD-Pg-1.31-alt1
perl-TimeDate-1.16-alt1
perl-MailTools-1.60-alt1
perl-CGI-3.00-alt1


Система - Compact 31-10-2003, обновленный из Сизифа.
[root@host home]# uname -a
Linux host.org 2.4.22-std-up-alt7 #1 Sun Oct 19 23:18:41 MSD 2003 i686 unknown unknown GNU/Linux

В чем может быть проблема?



-- 
С уважением, Боченин Алексей


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Comm] Re: Проблемы с perl-модулем Net::SMTP
  2003-12-09 11:16 [Comm] Проблемы с perl-модулем Net::SMTP Alexey Bochenin
@ 2003-12-09 12:27 ` Alexey Tourbin
  2003-12-09 14:50   ` Alexey Bochenin
  2003-12-09 13:01 ` [Comm] " crux
  1 sibling, 1 reply; 6+ messages in thread
From: Alexey Tourbin @ 2003-12-09 12:27 UTC (permalink / raw)
  To: community

[-- Attachment #1: Type: text/plain, Size: 502 bytes --]

On Tue, Dec 09, 2003 at 02:16:11PM +0300, Alexey Bochenin wrote:
> 
> Не пойму, в чем может быть проблема с модулем Net::SMTP? Вот пример крохотного скрипта
> #!/usr/bin/perl -w
> use Net::SMTP;
> use strict;
> my $smtp = Net::SMTP -> new('localhost', Debug=>1);
> print $smtp->domain,"\n";
> 
> При запуске он выдает следующее сообщение об ошибке:
> [root@host home]# ./a.pl
> Can't call method "domain" on an undefined value at ./a.pl line 8.
> [root@tornado statman2]#

Net::SMTP->new вернул undef.

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Comm] Проблемы с perl-модулем Net::SMTP
  2003-12-09 11:16 [Comm] Проблемы с perl-модулем Net::SMTP Alexey Bochenin
  2003-12-09 12:27 ` [Comm] " Alexey Tourbin
@ 2003-12-09 13:01 ` crux
  2003-12-09 14:51   ` Alexey Bochenin
  1 sibling, 1 reply; 6+ messages in thread
From: crux @ 2003-12-09 13:01 UTC (permalink / raw)
  To: community

Alexey Bochenin пишет:

>Не пойму, в чем может быть проблема с модулем Net::SMTP? Вот пример крохотного скрипта
>#!/usr/bin/perl -w
>use Net::SMTP;
>use strict;
>my $smtp = Net::SMTP -> new('localhost', Debug=>1);
>print $smtp->domain,"\n";
>
>При запуске он выдает следующее сообщение об ошибке:
>[root@host home]# ./a.pl
>Can't call method "domain" on an undefined value at ./a.pl line 8.
>[root@tornado statman2]#
>
>В чем может быть проблема?
>  
>
А почтовый сервер-то запущен на localhost'е?

-- 
crux                     




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Comm] Re: Проблемы с perl-модулем Net::SMTP
  2003-12-09 12:27 ` [Comm] " Alexey Tourbin
@ 2003-12-09 14:50   ` Alexey Bochenin
  2003-12-09 18:11     ` Alexey Tourbin
  0 siblings, 1 reply; 6+ messages in thread
From: Alexey Bochenin @ 2003-12-09 14:50 UTC (permalink / raw)
  To: community

On Tue, 9 Dec 2003 15:27:20 +0300
Alexey Tourbin <at@altlinux.ru> wrote:

Это понятно :), непонятна причина такого поведения. Почтовая служба поднята:

[root@host home]# netstat -na|grep LIST|grep 25
tcp        0      0 0.0.0.0:25              0.0.0.0:*               LISTEN



> On Tue, Dec 09, 2003 at 02:16:11PM +0300, Alexey Bochenin wrote:
> > 
> > Не пойму, в чем может быть проблема с модулем Net::SMTP? Вот пример крохотного скрипта
> > #!/usr/bin/perl -w
> > use Net::SMTP;
> > use strict;
> > my $smtp = Net::SMTP -> new('localhost', Debug=>1);
> > print $smtp->domain,"\n";
> > 
> > При запуске он выдает следующее сообщение об ошибке:
> > [root@host home]# ./a.pl
> > Can't call method "domain" on an undefined value at ./a.pl line 8.
> > [root@tornado statman2]#
> 
> Net::SMTP->new вернул undef.
> 


-- 
С уважением, Боченин Алексей


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Comm] Проблемы с perl-модулем Net::SMTP
  2003-12-09 13:01 ` [Comm] " crux
@ 2003-12-09 14:51   ` Alexey Bochenin
  0 siblings, 0 replies; 6+ messages in thread
From: Alexey Bochenin @ 2003-12-09 14:51 UTC (permalink / raw)
  To: community

On Tue, 09 Dec 2003 16:01:09 +0300
crux <crux@syktsu.ru> wrote:

Да, служба запущена и работает:
[root@host home]# netstat -na|grep LIST|grep 25
tcp        0      0 0.0.0.0:25              0.0.0.0:*               LISTEN


> Alexey Bochenin пишет:
> 
> >Не пойму, в чем может быть проблема с модулем Net::SMTP? Вот пример крохотного скрипта
> >#!/usr/bin/perl -w
> >use Net::SMTP;
> >use strict;
> >my $smtp = Net::SMTP -> new('localhost', Debug=>1);
> >print $smtp->domain,"\n";
> >
> >При запуске он выдает следующее сообщение об ошибке:
> >[root@host home]# ./a.pl
> >Can't call method "domain" on an undefined value at ./a.pl line 8.
> >[root@tornado statman2]#
> >
> >В чем может быть проблема?
> >  
> >
> А почтовый сервер-то запущен на localhost'е?
> 
> -- 
> crux                     
> 
> 
> _______________________________________________
> Community mailing list
> Community@altlinux.ru
> http://www.altlinux.ru/mailman/listinfo/community
> 


-- 
С уважением, Боченин Алексей


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Comm] Re: Проблемы с perl-модулем Net::SMTP
  2003-12-09 14:50   ` Alexey Bochenin
@ 2003-12-09 18:11     ` Alexey Tourbin
  0 siblings, 0 replies; 6+ messages in thread
From: Alexey Tourbin @ 2003-12-09 18:11 UTC (permalink / raw)
  To: community

[-- Attachment #1: Type: text/plain, Size: 407 bytes --]

On Tue, Dec 09, 2003 at 05:50:27PM +0300, Alexey Bochenin wrote:
> On Tue, 9 Dec 2003 15:27:20 +0300
> Alexey Tourbin <at@altlinux.ru> wrote:
> 
> Это понятно :), непонятна причина такого поведения. Почтовая служба поднята:

$ telnet localhost 25

?

PS: у меня всё работает.

> [root@host home]# netstat -na|grep LIST|grep 25
> tcp        0      0 0.0.0.0:25              0.0.0.0:*               LISTEN
> 

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2003-12-09 18:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-09 11:16 [Comm] Проблемы с perl-модулем Net::SMTP Alexey Bochenin
2003-12-09 12:27 ` [Comm] " Alexey Tourbin
2003-12-09 14:50   ` Alexey Bochenin
2003-12-09 18:11     ` Alexey Tourbin
2003-12-09 13:01 ` [Comm] " crux
2003-12-09 14:51   ` Alexey Bochenin

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git