/[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 38 by dpavlin, Tue May 17 21:37:06 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,
         "email=s" => \$email_opt,  
43  );  );
44    
45  my $nos = new Nos(  my $nos = new Nos(
# Line 70  $queue->set_sql( list_queue => qq{ Line 66  $queue->set_sql( list_queue => qq{
66          JOIN lists on list_id = lists.id          JOIN lists on list_id = lists.id
67  } );  } );
68    
69    my $list_name;
70    
71    
72    =item --new=list_name my-list@example.com
73    
74    Adds new list. You can also feed list name as first line to C<STDIN>.
75    
76    =cut
77    
78    if ($list_name = $opt->{'new'}) {
79    
80            my $email = shift @ARGV || <>;
81            chomp($email);
82    
83            die "need e-mail address for list (as argument or on STDIN)\n" unless ($email);
84    
85            my $id = $nos->new_list(
86                    list => $list_name,
87                    email => $email,
88            ) || die "can't add list $list_name\n";
89    
90            print "added list $list_name with ID $id\n";
91    
92    
93  =item --list[=list_name]  =item --list[=list_name]
94    
# Line 80  on that list. Line 99  on that list.
99    
100  =cut  =cut
101    
102  if (defined($list_opt)) {  } elsif (defined($list_name = $opt->{'list'})) {
103    
104          my @lists;          my @lists;
105          if ($list_opt ne '') {  
106                  @lists = $lists->search( name=> $list_opt )->first || die "can't find list $list_opt";          if ($list_name ne '') {
107                    @lists = $lists->search( name=> $list_name )->first || die "can't find list $list_name";
108          } else {          } else {
109                  @lists = $lists->retrieve_all;                  @lists = $lists->retrieve_all;
110          }          }
# Line 96  if (defined($list_opt)) { Line 117  if (defined($list_opt)) {
117                  }                  }
118          }          }
119    
120    
121  =item --add=list_name  =item --add=list_name
122    
123  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 126  argument) or read from C<STDIN>. List sh
126   email@example.com      Optional full name of person   email@example.com      Optional full name of person
127   dpavlin@rot13.org      Dobrica Pavlinusic   dpavlin@rot13.org      Dobrica Pavlinusic
128    
 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>.  
   
129  =cut  =cut
130    
131  } 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";  
132    
133          if ($email_opt && $list->email ne $email_opt) {          my $list = $lists->find_or_create({
134                  $list->email($email_opt);                  name => $list_name,
135                  $list->update;          }) || die "can't add list $list_name\n";
                 $list->dbi_commit;  
         }  
136    
137          my $added = 0;          my $added = 0;
138    
# Line 126  B<This seems somewhat cludgy, and it wil Line 140  B<This seems somewhat cludgy, and it wil
140                  chomp;                  chomp;
141                  next if (/^#/ || /^\s*$/);                  next if (/^#/ || /^\s*$/);
142                  my ($email, $name) = split(/\s+/,$_, 2);                  my ($email, $name) = split(/\s+/,$_, 2);
143                  $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 ));
144          }          }
145    
146          print "list ",$list->name," has $added users\n";          print "list ",$list->name," has $added users\n";
147    
148    
149  =item --queue[=list_name]  =item --queue[=list_name]
150    
151  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 156  add C<--verbose> flag, it will display a
156    
157  =cut  =cut
158    
159  } elsif (defined($queue_opt)) {  } elsif (defined($list_name = $opt->{'queue'})) {
160    
161          if ($queue_opt ne '') {          if ($list_name ne '') {
162                  # add message to list queue                  # add message to list queue
163    
164                  my $message_text;                  my $message_text;
# Line 152  add C<--verbose> flag, it will display a Line 167  add C<--verbose> flag, it will display a
167                  }                  }
168    
169                  my $id = $nos->add_message_to_list(                  my $id = $nos->add_message_to_list(
170                          list => $queue_opt,                          list => $list_name,
171                          message => $message_text,                          message => $message_text,
172                  );                  ) || die "can't add message to list $list_name\n";
173    
174                  print "added message $id to list $queue_opt\n";                  print "added message $id to list $list_name\n";
175    
176          } else {          } else {
177                  # list messages in queue                          # list messages in queue        
# Line 171  add C<--verbose> flag, it will display a Line 186  add C<--verbose> flag, it will display a
186                          my $msg = $m->message_id->message;                          my $msg = $m->message_id->message;
187                          $msg =~ s/\s+/ /gs;                          $msg =~ s/\s+/ /gs;
188    
189                          $l .= sprintf(" %-10s %15s : ", $m->list_id->name, $date);                          $l .= sprintf(" %-15s %15s : ", $m->list_id->name, $date);
190                          $l .= substr($msg, 0, 79 - length($l));                          $l .= substr($msg, 0, 79 - length($l));
191    
192                          print "$l\n";                          print "$l\n";
# Line 179  add C<--verbose> flag, it will display a Line 194  add C<--verbose> flag, it will display a
194    
195          }          }
196    
197    
198  =item --send[=list_name]  =item --send[=list_name]
199    
200  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
# Line 186  for single list. Line 202  for single list.
202    
203  =cut  =cut
204    
205  } elsif (defined($send_opt)) {  } elsif (defined($list_name = $opt->{'send'})) {
206    
207            $nos->send_queued_messages($list_name);
208    
         $nos->send_queued_messages($send_opt);  
209    
210  =item --inbox=list_name  =item --inbox=list_name
211    
# Line 196  Feed incomming message back into notice Line 213  Feed incomming message back into notice
213    
214  =cut  =cut
215    
216  } elsif ($inbox_opt) {  } elsif ($list_name = $opt->{'inbox'}) {
217    
218            my $message;
219            while(<>) {
220                    $message .= $_;
221            }
222    
223            $nos->inbox_message(
224                    list => $list_name,
225                    message => $message,
226            ) || die "can't receive message for list $list_name";
227    
         warn "inbox option is not implemented";  
228    
229  } else  {  } else  {
230          die "see perldoc $0 for help";          die "see perldoc $0 for help\n";
231  }  }
232    
233  =back  =back
# Line 220  Turn on debugging output from C<Class::D Line 246  Turn on debugging output from C<Class::D
246    
247  Dump more info on screen.  Dump more info on screen.
248    
 =item --email  
   
 Used to specify e-mail address where needed.  
   
249  =back  =back
250    
251    

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

  ViewVC Help
Powered by ViewVC 1.1.26