/[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 22 by dpavlin, Sun May 15 21:52:56 2005 UTC revision 51 by dpavlin, Wed May 25 15:02:12 2005 UTC
# Line 11  sender.pl - command line notify sender u Line 11  sender.pl - command line notify sender u
11    
12  =head1 SYNOPSYS  =head1 SYNOPSYS
13    
14     sender.pl --new=mylist
15   sender.pl --add=mylist members.txt   sender.pl --add=mylist members.txt
16   sender.pl --list[=mylist]   sender.pl --list[=mylist]
17   sender.pl --queue[=mylist message.txt]   sender.pl --queue[=mylist message.txt]
18   sender.pl --send=mylist   sender.pl --send=mylist
19    
20    In C</etc/aliases> something like:
21    
22     mylist: "| cd /path/to && ./sender.pl --inbox=mylist"
23    
24  =head2 Command options  =head2 Command options
25    
26  =over 20  =over 20
# Line 24  sender.pl - command line notify sender u Line 29  sender.pl - command line notify sender u
29    
30  my $debug = 0;  my $debug = 0;
31  my $verbose = 0;  my $verbose = 0;
32  my $list_opt;  my $opt;
 my $add_opt;  
 my $queue_opt;  
 my $send_opt;  
 my $email_opt;  
33    
34  my $result = GetOptions(  my $result = GetOptions(
35          "list:s" => \$list_opt,          "new=s" => \$opt->{'new'},
36          "add=s" => \$add_opt,          "list:s" => \$opt->{'list'},
37          "queue:s" => \$queue_opt,          "add=s" => \$opt->{'add'},
38          "send:s" => \$send_opt,          "queue:s" => \$opt->{'queue'},
39            "send:s" => \$opt->{'send'},
40            "inbox=s" => \$opt->{'inbox'},
41          "debug" => \$debug,          "debug" => \$debug,
42          "verbose" => \$verbose,          "verbose" => \$verbose,
43          "email=s" => \$email_opt,          "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 64  $queue->set_sql( list_queue => qq{ Line 69  $queue->set_sql( list_queue => qq{
69          JOIN lists on list_id = lists.id          JOIN lists on list_id = lists.id
70  } );  } );
71    
72    my $list_name;
73    
74    
75    =item --new=list_name my-list@example.com
76    
77    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
83    
84    if ($list_name = $opt->{'new'}) {
85    
86            my $email = shift @ARGV || <>;
87            chomp($email);
88    
89            die "need e-mail address for list (as argument or on STDIN)\n" unless ($email);
90    
91            my $id = $nos->new_list(
92                    list => $list_name,
93                    from => ($opt->{'from'} || ''),
94                    email => $email,
95            ) || die "can't add list $list_name\n";
96    
97            print "added list $list_name with ID $id\n";
98    
99    
100  =item --list[=list_name]  =item --list[=list_name]
101    
# Line 74  on that list. Line 106  on that list.
106    
107  =cut  =cut
108    
109  if (defined($list_opt)) {  } elsif (defined($list_name = $opt->{'list'})) {
110    
111          my @lists;          my @lists;
112          if ($list_opt ne '') {  
113                  @lists = $lists->search( name=> $list_opt )->first || die "can't find list $list_opt";          if ($list_name ne '') {
114                    @lists = $lists->search( name=> $list_name )->first || die "can't find list $list_name";
115          } else {          } else {
116                  @lists = $lists->retrieve_all;                  @lists = $lists->retrieve_all;
117          }          }
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    
126    
127  =item --add=list_name  =item --add=list_name
128    
129  Add users to list. Users are stored in file (which can be supplied as  Add users to list. Users are stored in file (which can be supplied as
# Line 98  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 ($add_opt) {  } elsif ($list_name = $opt->{'add'}) {
         my $list = $lists->find_or_create({  
                 name => $add_opt,  
         }) || die "can't add list $add_opt\n";  
138    
139          if ($email_opt && $list->email ne $email_opt) {          my $list = $nos->_get_list($list_name) || die "can't find list $list_name\n";
                 $list->email($email_opt);  
                 $list->update;  
                 $list->dbi_commit;  
         }  
140    
141          my $added = 0;          my $added = 0;
142    
# Line 120  B<This seems somewhat cludgy, and it wil Line 144  B<This seems somewhat cludgy, and it wil
144                  chomp;                  chomp;
145                  next if (/^#/ || /^\s*$/);                  next if (/^#/ || /^\s*$/);
146                  my ($email, $name) = split(/\s+/,$_, 2);                  my ($email, $name) = split(/\s+/,$_, 2);
147                  $name ||= '';                  $added++ if ($nos->add_member_to_list( email => $email, name => $name, list => $list_name ));
                 if (! Email::Valid->address($email)) {  
                         print "SKIPPING $name <$email>\n";  
                         next;  
                 }  
                 print "# $name <$email>\n";  
                 my $this_user = $users->find_or_create({  
                         email => $email,  
                         full_name => $name,  
                 }) || die "can't find or create member\n";  
                 my $user_on_list = $user_list->find_or_create({  
                         user_id => $this_user->id,  
                         list_id => $list->id,  
                 }) || die "can't add user to list";  
                 $added++;  
         }  
   
         foreach my $c_name ($loader->tables) {  
                 my $c = $loader->find_class($c_name)|| die "can't find $c_name";  
                 $c->dbi_commit();  
148          }          }
149    
150          print "list ",$list->name," has $added users\n";          print "list ",$list->name," has $added users\n";
151    
152    
153  =item --queue[=list_name]  =item --queue[=list_name]
154    
155  Queue message for later delivery. Message can be read from file (specified as  Queue message for later delivery. Message can be read from file (specified as
# Line 154  add C<--verbose> flag, it will display a Line 160  add C<--verbose> flag, it will display a
160    
161  =cut  =cut
162    
163  } elsif (defined($queue_opt)) {  } elsif (defined($list_name = $opt->{'queue'})) {
164    
165          if ($queue_opt ne '') {          if ($list_name ne '') {
166                  # add message to list queue                  # add message to list queue
167    
                 my $this_list = $lists->search(  
                         name => $queue_opt,  
                 )->first || die "can't find list $queue_opt";  
   
168                  my $message_text;                  my $message_text;
169                  while(<>) {                  while(<>) {
170                          $message_text .= $_;                          $message_text .= $_;
171                  }                  }
172    
173                  die "no message" unless ($message_text);                  my $id = $nos->add_message_to_list(
174                            list => $list_name,
175                  my $this_message = $messages->find_or_create({                          message => $message_text,
176                          message => $message_text                  ) || die "can't add message to list $list_name\n";
                 }) || die "can't insert message";  
   
                 $this_message->dbi_commit() || die "can't add message";  
   
                 $queue->find_or_create({  
                         message_id => $this_message->id,  
                         list_id => $this_list->id,  
                 }) || die "can't add message ",$this_message->id," to list ",$this_list->id, ": ",$this_list->name;  
   
                 $queue->dbi_commit || die "can't add message to list ",$this_list->name;  
177    
178                  print "added message ",$this_message->id, " to list ",$this_list->name,"\n";                  print "added message $id to list $list_name\n";
179    
180          } else {          } else {
181                  # list messages in queue                          # list messages in queue        
# Line 198  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 206  add C<--verbose> flag, it will display a Line 198  add C<--verbose> flag, it will display a
198    
199          }          }
200    
201    
202  =item --send[=list_name]  =item --send[=list_name]
203    
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
214    
215    } elsif (defined($list_name = $opt->{'send'})) {
216    
217            $nos->send_queued_messages(
218                    list => $list_name,
219                    driver => $opt->{'email_send_driver'},
220                    sleep => $opt->{'sleep'},
221            );
222    
223    
224    =item --inbox=list_name
225    
226    Feed incomming message back into notice sender.
227    
228  =cut  =cut
229    
230  } elsif (defined($send_opt)) {  } elsif ($list_name = $opt->{'inbox'}) {
231    
232            my $message;
233            while(<>) {
234                    $message .= $_;
235            }
236    
237            $nos->inbox_message(
238                    list => $list_name,
239                    message => $message,
240            ) || die "can't receive message for list $list_name";
241    
         $nos->send_queued_messages($send_opt);  
242    
243  } else  {  } else  {
244          die "see perldoc $0 for help";          die "see perldoc $0 for help\n";
245  }  }
246    
247  =back  =back
# Line 237  Turn on debugging output from C<Class::D Line 260  Turn on debugging output from C<Class::D
260    
261  Dump more info on screen.  Dump more info on screen.
262    
 =item --email  
   
 Used to specify e-mail address where needed.  
   
263  =back  =back
264    
265    

Legend:
Removed from v.22  
changed lines
  Added in v.51

  ViewVC Help
Powered by ViewVC 1.1.26