Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: I need a simple web form processor that will work with "POP before SMTP".

by Lyla (Initiate)
on Apr 30, 2006 at 15:39 UTC ( [id://546584]=note: print w/replies, xml ) Need Help??


in reply to Re: I need a simple web form processor that will work with "POP before SMTP".
in thread I need a simple web form processor that will work with "POP before SMTP".

I'm sorry, I thought my question was specific.
I need a web form processor, for simple forms, that can send the input to an already existing SMTP server that requires "POP before SMTP" with my already existing POP3 server.
Any recomendations would be greatly appreciated.

Content restored by Arunbear, using g0n's mirror.

Replies are listed 'Best First'.
Re^3: I need a simple web form processor that will work with "POP before SMTP".
by ikegami (Patriarch) on May 13, 2006 at 18:03 UTC
    Use your existing form processor, but add a couple of lines to connect to your POP server (using Net::POP3) before the call to SMTP.
      Yes, that would work. I'm not much of a coder, can you give me a snip?
        According to the document to which we've already linked:
        use Net::POP3; my $pop = Net::POP3->new($host); $pop->login($username, $password) or warn("Unable to connect to POP server. " ."Attempting to connect to SMTP server anyway\n");

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-03-28 16:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found