Hello monks,
i have a spam filter on my postfix server, and i'm using Net::SMTP to redirect my spam filtered mail to the anti virus server, which in turn sends the mail to my mailbox server. It kind of works allright, but (the omnipresent but) sometimes i get a error redirecting the mail and i need to know if Net::SMTP can give me the error string that the anti virus server is issuing, i have read the perldoc of Net::SMTP and Net::Cmd but there's no method in this documents that refers to the response of the server (or i could just missed something), the closest method to that is the message method but it alwas returns "Invalid command order" so i don't think this is the method i'm looking for.
the code i'm using is this:
$smtp->mail($ARGV[1]);
$smtp->recipient(@to);
if(!$smtp->data($sal.".\r\n")){
print STDERR "Error enviando datos (".$smtp->message.") !!!\n"
+;
$smtp->quit();
exit($EX_TEMPFAIL);
}
$smtp->quit();
exit;
i really appreciate help on this since i can't debug my program and i'm having a very high volume of error messages.
thanks
ignorance, the plague is everywhere
--guttermouth
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.