/[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 32 by dpavlin, Mon May 16 22:32:58 2005 UTC revision 57 by dpavlin, Tue Jun 21 09:41:22 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          "email=s" => \$opt->{'email'},          "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 74  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 83  if ($list_name = $opt->{'new'}) { Line 88  if ($list_name = $opt->{'new'}) {
88    
89          die "need e-mail address for list (as argument or on STDIN)\n" unless ($email);          die "need e-mail address for list (as argument or on STDIN)\n" unless ($email);
90    
91          my $l = $nos->_get_list($list_name) || $nos->_add_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    
97          print "added list $list_name with ID ",$l->id,"\n";          print "added list $list_name with ID $id\n";
98    
99    
100  =item --list[=list_name]  =item --list[=list_name]
# Line 111  on that list. Line 117  on that list.
117          }          }
118    
119          foreach my $list (@lists) {          foreach my $list (@lists) {
120                  print $list->name," <",$list->email,">\n";                  print $list->name,": ",$list->from_addr," <",$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'}, ">",( $u->{'ext_id'} ? ' ['.$u->{'ext_id'}.']' : '' ),"\n";
                         print "\t",$user->full_name," <", $user->email, ">\n";  
123                  }                  }
124          }          }
125    
# Line 127  argument) or read from C<STDIN>. List sh Line 132  argument) or read from C<STDIN>. List sh
132   email@example.com      Optional full name of person   email@example.com      Optional full name of person
133   dpavlin@rot13.org      Dobrica Pavlinusic   dpavlin@rot13.org      Dobrica Pavlinusic
134    
 You may use C<--email> parametar at any time to set From: e-mail address for list.  
 B<This seems somewhat cludgy, and it will probably change in future>.  
   
135  =cut  =cut
136    
137  } elsif ($list_name = $opt->{'add'}) {  } elsif ($list_name = $opt->{'add'}) {
138    
139          my $list = $lists->find_or_create({          my $list = $nos->_get_list($list_name) || die "can't find list $list_name\n";
                 name => $list_name,  
         }) || die "can't add list $list_name\n";  
140    
141          my $added = 0;          my $added = 0;
142    
# Line 190  add C<--verbose> flag, it will display a Line 190  add C<--verbose> flag, it will display a
190                          my $msg = $m->message_id->message;                          my $msg = $m->message_id->message;
191                          $msg =~ s/\s+/ /gs;                          $msg =~ s/\s+/ /gs;
192    
193                          $l .= sprintf(" %-10s %15s : ", $m->list_id->name, $date);                          $l .= sprintf(" %-15s %15s : ", $m->list_id->name, $date);
194                          $l .= substr($msg, 0, 79 - length($l));                          $l .= substr($msg, 0, 79 - length($l));
195    
196                          print "$l\n";                          print "$l\n";
# Line 204  add C<--verbose> flag, it will display a Line 204  add C<--verbose> flag, it will display a
204  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
205  for single list.  for single list.
206    
207    Optional argument C<--driver=smtp> forces sending using SMTP server at
208    localhost (127.0.0.1).
209    
210    Optional argument C<--sleep=42> defines that sender will sleep 42 seconds
211    between sending e-mail.
212    
213  =cut  =cut
214    
215  } elsif (defined($list_name = $opt->{'send'})) {  } elsif (defined($list_name = $opt->{'send'})) {
216    
217          $nos->send_queued_messages($list_name);          unless ($opt->{'email_send_driver'}) {
218                    print "WARNING: this will dump debugging output to STDERR\n";
219                    print "enter alternative driver (e.g. smtp): ";
220                    my $d = <STDIN>;
221                    chomp($d);
222                    $opt->{'email_send_driver'} = $d;
223            }
224    
225            $nos->send_queued_messages(
226                    list => $list_name,
227                    driver => $opt->{'email_send_driver'},
228                    sleep => $opt->{'sleep'},
229            );
230    
231    
232  =item --inbox=list_name  =item --inbox=list_name
# Line 217  Feed incomming message back into notice Line 235  Feed incomming message back into notice
235    
236  =cut  =cut
237    
238  } elsif ($opt->{'inbox'}) {  } elsif ($list_name = $opt->{'inbox'}) {
239    
240            my $message;
241            while(<>) {
242                    $message .= $_;
243            }
244    
245            $nos->inbox_message(
246                    list => $list_name,
247                    message => $message,
248            ) || die "can't receive message for list $list_name";
249    
         warn "inbox option is not implemented";  
250    
251  } else  {  } else  {
252          die "see perldoc $0 for help\n";          die "see perldoc $0 for help\n";
# Line 241  Turn on debugging output from C<Class::D Line 268  Turn on debugging output from C<Class::D
268    
269  Dump more info on screen.  Dump more info on screen.
270    
 =item --email  
   
 Used to specify e-mail address where needed.  
   
271  =back  =back
272    
273    

Legend:
Removed from v.32  
changed lines
  Added in v.57

  ViewVC Help
Powered by ViewVC 1.1.26