/[notice-sender]/trunk/sender.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/sender.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 38 by dpavlin, Tue May 17 21:37:06 2005 UTC revision 49 by dpavlin, Tue May 24 16:44:34 2005 UTC
# Line 19  sender.pl - command line notify sender u Line 19  sender.pl - command line notify sender u
19    
20  In C</etc/aliases> something like:  In C</etc/aliases> something like:
21    
22   mylist: "| /path/to/sender.pl --inbox=mylist"   mylist: "| cd /path/to && ./sender.pl --inbox=mylist"
23    
24  =head2 Command options  =head2 Command options
25    
# Line 40  my $result = GetOptions( Line 40  my $result = GetOptions(
40          "inbox=s" => \$opt->{'inbox'},          "inbox=s" => \$opt->{'inbox'},
41          "debug" => \$debug,          "debug" => \$debug,
42          "verbose" => \$verbose,          "verbose" => \$verbose,
43            "from=s" => \$opt->{'from'},
44            "driver=s" => \$opt->{'email_send_driver'},
45            "sleep=i" => \$opt->{'sleep'},
46  );  );
47    
48  my $nos = new Nos(  my $nos = new Nos(
# Line 73  my $list_name; Line 76  my $list_name;
76    
77  Adds new list. You can also feed list name as first line to C<STDIN>.  Adds new list. You can also feed list name as first line to C<STDIN>.
78    
79    You can also add C<--from='Full name of list'> to specify full name (comment)
80    in outgoing e-mail.
81    
82  =cut  =cut
83    
84  if ($list_name = $opt->{'new'}) {  if ($list_name = $opt->{'new'}) {
# Line 84  if ($list_name = $opt->{'new'}) { Line 90  if ($list_name = $opt->{'new'}) {
90    
91          my $id = $nos->new_list(          my $id = $nos->new_list(
92                  list => $list_name,                  list => $list_name,
93                    from => ($opt->{'from'} || ''),
94                  email => $email,                  email => $email,
95          ) || die "can't add list $list_name\n";          ) || die "can't add list $list_name\n";
96    
# Line 111  on that list. Line 118  on that list.
118    
119          foreach my $list (@lists) {          foreach my $list (@lists) {
120                  print $list->name," <",$list->email,">\n";                  print $list->name," <",$list->email,">\n";
121                  foreach my $user_on_list ($user_list->search(list_id => $list->id)) {                  foreach my $u ($nos->list_members( list => $list->name )) {
122                          my $user = $users->retrieve( id => $user_on_list->user_id );                          print "\t",$u->{'name'}, " <", $u->{'email'}, ">\n";
                         print "\t",$user->full_name," <", $user->email, ">\n";  
123                  }                  }
124          }          }
125    
# Line 200  add C<--verbose> flag, it will display a Line 206  add C<--verbose> flag, it will display a
206  Send e-mails waiting in queue, or with optional argument, just send messages  Send e-mails waiting in queue, or with optional argument, just send messages
207  for single list.  for single list.
208    
209    Optional argument C<--driver=smtp> forces sending using SMTP server at
210    localhost (127.0.0.1).
211    
212    Optional argument C<--sleep=42> defines that sender will sleep 42 seconds
213    between sending e-mail.
214    
215  =cut  =cut
216    
217  } elsif (defined($list_name = $opt->{'send'})) {  } elsif (defined($list_name = $opt->{'send'})) {
218    
219          $nos->send_queued_messages($list_name);          $nos->send_queued_messages(
220                    list => $list_name,
221                    driver => $opt->{'email_send_driver'},
222                    sleep => $opt->{'sleep'},
223            );
224    
225    
226  =item --inbox=list_name  =item --inbox=list_name

Legend:
Removed from v.38  
changed lines
  Added in v.49

  ViewVC Help
Powered by ViewVC 1.1.26