I currently have a script that reads in a message via
my $conn = Net:
OP3->new( $opts{server} )
my $msg = $conn->get($msg_num)
and it parses it through the MIME:
arser to remove the email attatchment.
What I need it to do after that is move that message to a new folder so when I run the script it wont look at the same email twice. I tried to just use move($msg,''new folder') with no luck. Any suggestions?
my $conn = Net:

my $msg = $conn->get($msg_num)
and it parses it through the MIME:

What I need it to do after that is move that message to a new folder so when I run the script it wont look at the same email twice. I tried to just use move($msg,''new folder') with no luck. Any suggestions?