Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I have a script using Net::POP3 to pop mail off a pop3 server. I'd like to forward the mail to another e-mail account without having to use postfix, or even write it to a file. I haven't been able to get it done. Here's what I have so far:
#!/usr/local/bin/perl # # using pop3get -c will leave the mail on the server. # use Net::POP3; use Getopt::Long; use strict 'vars'; use vars qw($opt_c); GetOptions("c!"); my $ServerName = "my.pop3server.com"; my $pop3 = Net::POP3->new($ServerName, Debug => 0); my $UserName = "user"; my $Password = "pass"; my $inbox = "/export/homes/user/Mail/inbox"; my $msg_id; die "Couldn't log on to server" unless $pop3; my $Num_Messages = $pop3->login($UserName, $Password); my $Messages = $pop3->list(); open FH, ">> $inbox" or die "Couldn't open inbox: ($!)\n"; for $msg_id (keys(%$Messages)) { print "Retriving Msg: $msg_id\n"; my $MsgContent = $pop3->get($msg_id); # Here's where I'd like to forward it on.. for (@$MsgContent) { print FH $_; } my $delete_msg = $pop3->delete($msg_id) unless ($opt_c); } close FH; $pop3->quit();

In reply to Getting Net::POP3 to grab mail then forward it on. by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-04-16 19:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found