Subject: | WWW:Mailman |
Date: | Wed, 7 Sep 2011 15:56:27 -0400 |
To: | bug-WWW-Mailman [...] rt.cpan.org |
From: | Que Nguyen <mydevuser [...] gmail.com> |
Hello,
I am using WWW::Mailman at
http://search.cpan.org/dist/WWW-Mailman/lib/WWW/Mailman.pm
by downloading WWW-Mailman-1.04, WWW-Mechanize-1.52 and other dependencies.
In the provided example, the uri is with http. So it seems to work in this
case.
However, my mailman is https://. And I got 'Segmentation Fault'.
I use perl, v5.8.3 built for i686-linux(Scientific Linux SL release 5.6 - 32
bits)
Can you please advise if there's any module I am missing (like SSL...), or
might give me a hint to sort it out? Thanks.
#!/encs/bin/perl
use strict;
use warnings;
use WWW::Mailman;
# Declare parameters
my %vInventory_users = (
secure => 'true',
uri => '
https://mail.encs.concordia.ca/mailman/listinfo/inventory_users',
email => 'MY_EMAIL',
admin_password => 'MY_PASSWORD');
my $mailinglist = WWW::Mailman->new(%vInventory_users);
# test - get email_pw
print $mailinglist->emailpw;