I know how to do all the counting and resetting stuff. Does anyone know how to make the script look like a sendmail like program as far as PHP’s mail functions are concerned?

Ah, I see, you're basically asking how to make the interface to your queuing system, which is basically:

* Keep a count of how many messages go out in x amount of time,

* Queue up messages that can't go out after the limit has been reached

* Reset counter after x amount

* Send awaiting messages,

* etc,

I've always used Getopt::Long for command line interfaces. To emulate what you'd give to sendmail, you'd do something like:

#!/usr/bin/perl use Getopt::Long; my $sendmail = '/usr/sbin/sendmail'; my $f_flag = undef; my $t_flag = undef; my $i_flag = undef; my $o_flag = undef; GetOptions("f=s" => \$f_flag, "t" => \$t_flag, "i" => \$i_flag, "o" => \$o_flag, ); # Skipping the queue/count stuff for laziness... my $sendmail_w_flags = $sendmail; if($f_flag){ $sendmail_w_flags .= ' -f'.$f_flag; } if($t_flag){ $sendmail_w_flags .= ' -t';; } if($i_flag){ $sendmail_w_flags .= ' -i';; } if($o_flag){ $sendmail_w_flags .= ' -o';; } my $message = <STDIN>; open(MAIL, '|' . $sendmail_w_flags) or die $!; print MAIL $message or die $!; close MAIL or die $!;
(untested)

 

-justin simoni
skazat me


In reply to Re: mail counter by skazat
in thread mail counter by former33t

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.