Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

perl imap spam text search is not working what i need to do

by vasanthgk91 (Sexton)
on Jul 15, 2014 at 10:46 UTC ( [id://1093673]=perlquestion: print w/replies, xml ) Need Help??

vasanthgk91 has asked for the wisdom of the Perl Monks concerning the following question:

perl imap spam text search is not working what i need to do

use strict; use warnings; use MIME::Parser::Filer; use Mail::IMAPClient; use IO::Socket::SSL; # Connect to IMAP via SSL my $socket = IO::Socket::SSL->new( LocalAddr => '46.16.168.75',PeerAdd +r => 'imap.mail.yahoo.com',PeerPort => 993 ) or die "Socket():$@"; # Build a client attached to the SSL Socket and login # Test username:genxleadtest@yahoo.in Test password:TestUser@123 my $imap = Mail::IMAPClient->new( Socket => $socket,User =>'sheelasqwm +akacynas@yahoo.com',Password =>'Ujo05edo93bdQ') or die "new(): $@"; my $Authenticated = $imap->Authenticated(); my $Connected = $imap->Connected(); $imap->select('Bulk Mail') or warn('Cannot select mail folder - ', $!) +; my @msgs = $imap->search( \("SUBJECT", q{"ela test"} ) ) or warn "sear +ch failed: $@\n";

Replies are listed 'Best First'.
Re: perl imap spam text search is not working what i need to do
by Corion (Patriarch) on Jul 15, 2014 at 10:58 UTC

    So in what sense does it not work?

    What is the error message you get?

    Does Yahoo mail support IMAP search?

    Is there a mail with ela test in the subject of a mail in the folder "Bulk Mail"?

      thank you, i want to search mails by matching string "ela test" from the Bulk Mail(spam) folder, but @msgs returns empty array

        So, have you verified that there are mails with "ela text" in the subject in your Bulk Mail folder?

Re: perl imap spam text search is not working what i need to do
by AppleFritter (Vicar) on Jul 15, 2014 at 10:56 UTC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1093673]
Approved by AppleFritter
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-24 07:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found