/[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 29 by dpavlin, Mon May 16 20:58:44 2005 UTC revision 47 by dpavlin, Tue May 24 14:02:05 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]
# Line 28  In C</etc/aliases> something like: Line 29  In C</etc/aliases> something like:
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;  
 my $inbox_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          "inbox=s" => \$inbox_opt,          "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  );  );
46    
47  my $nos = new Nos(  my $nos = new Nos(
# Line 70  $queue->set_sql( list_queue => qq{ Line 68  $queue->set_sql( list_queue => qq{
68          JOIN lists on list_id = lists.id          JOIN lists on list_id = lists.id
69  } );  } );
70    
71    my $list_name;
72    
73    
74    =item --new=list_name my-list@example.com
75    
76    Adds new list. You can also feed list name as first line to C<STDIN>.
77    
78    You can also add C<--from='Full name of list'> to specify full name (comment)
79    in outgoing e-mail.
80    
81    =cut
82    
83    if ($list_name = $opt->{'new'}) {
84    
85            my $email = shift @ARGV || <>;
86            chomp($email);
87    
88            die "need e-mail address for list (as argument or on STDIN)\n" unless ($email);
89    
90            my $id = $nos->new_list(
91                    list => $list_name,
92                    from => ($opt->{'from'} || ''),
93                    email => $email,
94            ) || die "can't add list $list_name\n";
95    
96            print "added list $list_name with ID $id\n";
97    
98    
99  =item --list[=list_name]  =item --list[=list_name]
100    
# Line 80  on that list. Line 105  on that list.
105    
106  =cut  =cut
107    
108  if (defined($list_opt)) {  } elsif (defined($list_name = $opt->{'list'})) {
109    
110          my @lists;          my @lists;
111          if ($list_opt ne '') {  
112                  @lists = $lists->search( name=> $list_opt )->first || die "can't find list $list_opt";          if ($list_name ne '') {
113                    @lists = $lists->search( name=> $list_name )->first || die "can't find list $list_name";
114          } else {          } else {
115                  @lists = $lists->retrieve_all;                  @lists = $lists->retrieve_all;
116          }          }
117    
118          foreach my $list (@lists) {          foreach my $list (@lists) {
119                  print $list->name," <",$list->email,">\n";                  print $list->name," <",$list->email,">\n";
120                  foreach my $user_on_list ($user_list->search(list_id => $list->id)) {                  foreach my $u ($nos->list_members( list => $list->name )) {
121                          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";  
122                  }                  }
123          }          }
124    
125    
126  =item --add=list_name  =item --add=list_name
127    
128  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 104  argument) or read from C<STDIN>. List sh Line 131  argument) or read from C<STDIN>. List sh
131   email@example.com      Optional full name of person   email@example.com      Optional full name of person
132   dpavlin@rot13.org      Dobrica Pavlinusic   dpavlin@rot13.org      Dobrica Pavlinusic
133    
 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>.  
   
134  =cut  =cut
135    
136  } 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";  
137    
138          if ($email_opt && $list->email ne $email_opt) {          my $list = $lists->find_or_create({
139                  $list->email($email_opt);                  name => $list_name,
140                  $list->update;          }) || die "can't add list $list_name\n";
                 $list->dbi_commit;  
         }  
141    
142          my $added = 0;          my $added = 0;
143    
# Line 126  B<This seems somewhat cludgy, and it wil Line 145  B<This seems somewhat cludgy, and it wil
145                  chomp;                  chomp;
146                  next if (/^#/ || /^\s*$/);                  next if (/^#/ || /^\s*$/);
147                  my ($email, $name) = split(/\s+/,$_, 2);                  my ($email, $name) = split(/\s+/,$_, 2);
148                  $added++ if ($nos->add_member_to_list( email => $email, name => $name, list => $add_opt ));                  $added++ if ($nos->add_member_to_list( email => $email, name => $name, list => $list_name ));
149          }          }
150    
151          print "list ",$list->name," has $added users\n";          print "list ",$list->name," has $added users\n";
152    
153    
154  =item --queue[=list_name]  =item --queue[=list_name]
155    
156  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 141  add C<--verbose> flag, it will display a Line 161  add C<--verbose> flag, it will display a
161    
162  =cut  =cut
163    
164  } elsif (defined($queue_opt)) {  } elsif (defined($list_name = $opt->{'queue'})) {
165    
166          if ($queue_opt ne '') {          if ($list_name ne '') {
167                  # add message to list queue                  # add message to list queue
168    
169                  my $message_text;                  my $message_text;
# Line 152  add C<--verbose> flag, it will display a Line 172  add C<--verbose> flag, it will display a
172                  }                  }
173    
174                  my $id = $nos->add_message_to_list(                  my $id = $nos->add_message_to_list(
175                          list => $queue_opt,                          list => $list_name,
176                          message => $message_text,                          message => $message_text,
177                  );                  ) || die "can't add message to list $list_name\n";
178    
179                  print "added message $id to list $queue_opt\n";                  print "added message $id to list $list_name\n";
180    
181          } else {          } else {
182                  # list messages in queue                          # list messages in queue        
# Line 171  add C<--verbose> flag, it will display a Line 191  add C<--verbose> flag, it will display a
191                          my $msg = $m->message_id->message;                          my $msg = $m->message_id->message;
192                          $msg =~ s/\s+/ /gs;                          $msg =~ s/\s+/ /gs;
193    
194                          $l .= sprintf(" %-10s %15s : ", $m->list_id->name, $date);                          $l .= sprintf(" %-15s %15s : ", $m->list_id->name, $date);
195                          $l .= substr($msg, 0, 79 - length($l));                          $l .= substr($msg, 0, 79 - length($l));
196    
197                          print "$l\n";                          print "$l\n";
# Line 179  add C<--verbose> flag, it will display a Line 199  add C<--verbose> flag, it will display a
199    
200          }          }
201    
202    
203  =item --send[=list_name]  =item --send[=list_name]
204    
205  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
206  for single list.  for single list.
207    
208    Optional argument C<--driver=smtp> forces sending using SMTP server at
209    localhost (127.0.0.1).
210    
211  =cut  =cut
212    
213  } elsif (defined($send_opt)) {  } elsif (defined($list_name = $opt->{'send'})) {
214    
215            $nos->send_queued_messages($list_name, $opt->{'email_send_driver'});
216    
         $nos->send_queued_messages($send_opt);  
217    
218  =item --inbox=list_name  =item --inbox=list_name
219    
# Line 196  Feed incomming message back into notice Line 221  Feed incomming message back into notice
221    
222  =cut  =cut
223    
224  } elsif ($inbox_opt) {  } elsif ($list_name = $opt->{'inbox'}) {
225    
226            my $message;
227            while(<>) {
228                    $message .= $_;
229            }
230    
231            $nos->inbox_message(
232                    list => $list_name,
233                    message => $message,
234            ) || die "can't receive message for list $list_name";
235    
         warn "inbox option is not implemented";  
236    
237  } else  {  } else  {
238          die "see perldoc $0 for help";          die "see perldoc $0 for help\n";
239  }  }
240    
241  =back  =back
# Line 220  Turn on debugging output from C<Class::D Line 254  Turn on debugging output from C<Class::D
254    
255  Dump more info on screen.  Dump more info on screen.
256    
 =item --email  
   
 Used to specify e-mail address where needed.  
   
257  =back  =back
258    
259    

Legend:
Removed from v.29  
changed lines
  Added in v.47

  ViewVC Help
Powered by ViewVC 1.1.26