Thread Net::POP3 streikt mit Portangabe (3 answers)
Opened by MoOnShIn3 at 2008-01-07 03:22

MoOnShIn3
 2008-01-07 03:22
#104449 #104449
User since
2008-01-07
2 Artikel
BenutzerIn
[default_avatar]
Guten Morgen

Ich habe ein kleines Script welches mir die Anzahl neuer E-Mails anzeigt. Nun musste ich beim Wechsel auf GMail noch eine Portangabe machen (ResvPort), aber egal welchen Port ich eintrage streikt nun das Script:

Code: (dl )
1
2
Cannot connect to pop.gmail.com:995
Permission denied at /home/moony/DEV/mails_pop3.pl line 14.


Die verwendete Doku:
http://perldoc.perl.org/Net/POP3.html#CONSTRUCTOR

Mein Script
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl

use strict;
use warnings;
use Net::POP3;

my $popHost = $ARGV[0];
my $popPort = $ARGV[1];
my $popTimeout = 10;
my $user = $ARGV[2];
my $pass = $ARGV[3];


my $pop = Net::POP3->new($popHost,
                                                 Timeout        => $popTimeout,
                                                 ResvPort       => $popPort) or
  die ("Cannot connect to $popHost:$popPort\n$!");

$pop->quit();


Warum habe ich bloss keine Erlaubnis eine Portangabe zu machen?!

Vielen Dank für eure Antwort

View full thread Net::POP3 streikt mit Portangabe