I'm a long time reader, but first time seeker. I consider myself at perhaps an intermediate level. Anyway, here's my problem:
The relevant portions of code are as follows:
sub new {
my $self = {};
$self->{_ldap} = Net::LDAP->new($LDAP_SERVER);
bless $self;
return $self;
}
Which initializes my module...it's purpose is to make administering an ldap-aware mail server easier in my company.
sub alias_add_entry {
my $self = shift;
my $alias = shift;
my $user = shift;
my $result;
die "Not enough args to alias_add_entry() $@" if not defined (
+$alias and $user);
$result = $self{"_ldap"}->modify (
dn => "cn=$alias,ou=Aliases,dc=mydomain,dc=com",
add => { rfc822mailmember => $user }
);
return $result;
}
This is the first of many subs which returns the error: Global symbol "%self" requires explicit package name at MyModule.pm line xxx, where xxx references the $result = line.
The thing is, this sub works fine:
sub authenticate {
my $self = shift;
my $pw = shift;
my $user = shift;
die "Not enough args to authenticate() $@" if not defined $pw;
$user = "Manager" if ($user eq "");
my $result = $self->{"_ldap"}->bind (
dn => "cn=$user, dc=sigmatel, dc=com",
password => $pw
);
return $result;
}
Any ideas?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.