perl - authentication failed with special char in password with Net::IMAP::Simple -


when password contains special char $ or * , authentication not successful.

my $imap = net::imap::simple->new('imap.example.com') || die "unable connect imap: $net::imap::simple::errstr\n"; $imap->login('abc','abc$ur*123') 

i have tried escaping special char didn't work. please advice


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -