/[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 30 by dpavlin, Mon May 16 21:54:41 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,          "email=s" => \$opt->{'email'},
44  );  );
45    
46  my $nos = new Nos(  my $nos = new Nos(
# Line 70  $queue->set_sql( list_queue => qq{ Line 67  $queue->set_sql( list_queue => qq{
67          JOIN lists on list_id = lists.id          JOIN lists on list_id = lists.id
68  } );  } );
69    
70    my $list_name;
71    
72    
73    =item --new=list_name my-list@example.com
74    
75    Adds new list. You can also feed list name as first line to C<STDIN>.
76    
77    =cut
78    
79    if ($list_name = $opt->{'new'}) {
80    
81            my $email = shift @ARGV || <>;
82            chomp($email);
83    
84            die "need e-mail address for list (as argument or on STDIN)\n" unless ($email);
85    
86            my $l = $nos->_get_list($list_name) || $nos->_add_list(
87                    list => $list_name,
88                    email => $email,
89            ) || die "can't add list $list_name\n";
90    
91            print "added list $list_name with ID ",$l->id,"\n";
92    
93    
94  =item --list[=list_name]  =item --list[=list_name]
95    
# Line 80  on that list. Line 100  on that list.
100    
101  =cut  =cut
102    
103  if (defined($list_opt)) {  } elsif (defined($list_name = $opt->{'list'})) {
104    
105          my @lists;          my @lists;
106          if ($list_opt ne '') {  
107                  @lists = $lists->search( name=> $list_opt )->first || die "can't find list $list_opt";          if ($list_name ne '') {
108                    @lists = $lists->search( name=> $list_name )->first || die "can't find list $list_name";
109          } else {          } else {
110                  @lists = $lists->retrieve_all;                  @lists = $lists->retrieve_all;
111          }          }
# Line 96  if (defined($list_opt)) { Line 118  if (defined($list_opt)) {
118                  }                  }
119          }          }
120    
121    
122  =item --add=list_name  =item --add=list_name
123    
124  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 109  B<This seems somewhat cludgy, and it wil Line 132  B<This seems somewhat cludgy, and it wil
132    
133  =cut  =cut
134    
135  } 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";  
136    
137          if ($email_opt && $list->email ne $email_opt) {          my $list = $lists->find_or_create({
138                  $list->email($email_opt);                  name => $list_name,
139                  $list->update;          }) || die "can't add list $list_name\n";
                 $list->dbi_commit;  
         }  
140    
141          my $added = 0;          my $added = 0;
142    
# Line 126  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                  $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 ));
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 141  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    
168                  my $message_text;                  my $message_text;
# Line 152  add C<--verbose> flag, it will display a Line 171  add C<--verbose> flag, it will display a
171                  }                  }
172    
173                  my $id = $nos->add_message_to_list(                  my $id = $nos->add_message_to_list(
174                          list => $queue_opt,                          list => $list_name,
175                          message => $message_text,                          message => $message_text,
176                  );                  );
177    
178                  print "added message $id to list $queue_opt\n";                  print "added message $id to list $list_name\n";
179    
180          } else {          } else {
181                  # list messages in queue                          # list messages in queue        
# Line 179  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
# Line 186  for single list. Line 206  for single list.
206    
207  =cut  =cut
208    
209  } elsif (defined($send_opt)) {  } elsif (defined($list_name = $opt->{'send'})) {
210    
211            $nos->send_queued_messages($list_name);
212    
         $nos->send_queued_messages($send_opt);  
213    
214  =item --inbox=list_name  =item --inbox=list_name
215    
# Line 196  Feed incomming message back into notice Line 217  Feed incomming message back into notice
217    
218  =cut  =cut
219    
220  } elsif ($inbox_opt) {  } elsif ($opt->{'inbox'}) {
221    
222          warn "inbox option is not implemented";          warn "inbox option is not implemented";
223    
224  } else  {  } else  {
225          die "see perldoc $0 for help";          die "see perldoc $0 for help\n";
226  }  }
227    
228  =back  =back

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

  ViewVC Help
Powered by ViewVC 1.1.26