/[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 49 by dpavlin, Tue May 24 16:44:34 2005 UTC revision 93 by dpavlin, Tue Dec 19 15:04:05 2006 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use strict;  use strict;
4  use blib;  use lib 'lib';
5  use Nos;  use Nos 0.9;
6  use Getopt::Long;  use Getopt::Long;
7    use Pod::Usage;
8    
9  =head1 NAME  =head1 NAME
10    
11  sender.pl - command line notify sender utility  sender.pl - command line notify sender utility
12    
13  =head1 SYNOPSYS  =head1 SYNOPSIS
14    
15   sender.pl --new=mylist   sender.pl --create=mylist
16     sender.pl --drop=mylist
17   sender.pl --add=mylist members.txt   sender.pl --add=mylist members.txt
18     sender.pl --delete=mylist members.txt
19   sender.pl --list[=mylist]   sender.pl --list[=mylist]
20   sender.pl --queue[=mylist message.txt]   sender.pl --queue[=mylist message.txt]
21   sender.pl --send=mylist   sender.pl --send=mylist
22     sender.pl --help
23     sender.pl --man
24    
25  In C</etc/aliases> something like:  =head1 OPTIONS
   
  mylist: "| cd /path/to && ./sender.pl --inbox=mylist"  
   
 =head2 Command options  
26    
27  =over 20  =over 20
28    
# Line 32  my $verbose = 0; Line 33  my $verbose = 0;
33  my $opt;  my $opt;
34    
35  my $result = GetOptions(  my $result = GetOptions(
36          "new=s" => \$opt->{'new'},          "create=s" => \$opt->{'create'},
37            "drop=s" => \$opt->{'drop'},
38          "list:s" => \$opt->{'list'},          "list:s" => \$opt->{'list'},
39          "add=s" => \$opt->{'add'},          "add=s" => \$opt->{'add'},
40            "delete=s" => \$opt->{'delete'},
41          "queue:s" => \$opt->{'queue'},          "queue:s" => \$opt->{'queue'},
42          "send:s" => \$opt->{'send'},          "send:s" => \$opt->{'send'},
43          "inbox=s" => \$opt->{'inbox'},          "inbox=s" => \$opt->{'inbox'},
# Line 43  my $result = GetOptions( Line 46  my $result = GetOptions(
46          "from=s" => \$opt->{'from'},          "from=s" => \$opt->{'from'},
47          "driver=s" => \$opt->{'email_send_driver'},          "driver=s" => \$opt->{'email_send_driver'},
48          "sleep=i" => \$opt->{'sleep'},          "sleep=i" => \$opt->{'sleep'},
49  );          "aliases=s" => \$opt->{'aliases'},
50            "help" => \$opt->{'help'},
51            "man" => \$opt->{'man'}
52    ) || pod2usage(-verbose => 0);
53    
54    pod2usage(-verbose => 1) if ($opt->{'help'});
55    pod2usage(-verbose => 2) if ($opt->{'man'});
56    
57  my $nos = new Nos(  my $nos = new Nos(
58          dsn => 'dbi:Pg:dbname=notices',          dsn => 'dbi:Pg:dbname=notices',
# Line 71  $queue->set_sql( list_queue => qq{ Line 80  $queue->set_sql( list_queue => qq{
80    
81  my $list_name;  my $list_name;
82    
83    =item --aliases=/full/path/to/aliases
84    
85    Optional parametar C<--aliases> can be used to specify aliases file other
86    than default C</etc/aliases>.
87    
88    =cut
89    
90    my $aliases = $opt->{'aliases'} || '/etc/aliases';
91    
92    
93  =item --new=list_name my-list@example.com  =item --create=list_name my-list@example.com
94    
95  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>.
96    
# Line 81  in outgoing e-mail. Line 99  in outgoing e-mail.
99    
100  =cut  =cut
101    
102  if ($list_name = $opt->{'new'}) {  if ($list_name = $opt->{'create'}) {
103    
104          my $email = shift @ARGV || <>;          my $email = shift @ARGV || <>;
105          chomp($email);          chomp($email);
106    
107          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);
108    
109          my $id = $nos->new_list(          my $id = $nos->create_list(
110                  list => $list_name,                  list => $list_name,
111                  from => ($opt->{'from'} || ''),                  from => ($opt->{'from'} || ''),
112                  email => $email,                  email => $email,
113                    aliases => $aliases,
114          ) || die "can't add list $list_name\n";          ) || die "can't add list $list_name\n";
115    
116          print "added list $list_name with ID $id\n";          print "added list $list_name with ID $id\n";
117    
118    
119    =item --drop=list_name
120    
121    Remove list.
122    
123    Optional parametar C<--aliases='/full/path/to/aliases'> can be used to
124    specify aliases file other than C</etc/aliases>.
125    
126    =cut
127    
128    } elsif ($list_name = $opt->{'drop'}) {
129    
130            my $id = $nos->drop_list(
131                    list => $list_name,
132                    aliases => $aliases,
133            ) || die "can't remove list $list_name\n";
134    
135            print "drop list $list_name with ID $id\n";
136    
137    
138  =item --list[=list_name]  =item --list[=list_name]
139    
140  List all available lists and users on them.  List all available lists and users on them.
# Line 117  on that list. Line 155  on that list.
155          }          }
156    
157          foreach my $list (@lists) {          foreach my $list (@lists) {
158                  print $list->name," <",$list->email,">\n";                  print $list->name,": ",$list->from_addr," <",$list->email,">\n";
159                  foreach my $u ($nos->list_members( list => $list->name )) {                  foreach my $u ($nos->list_members( list => $list->name )) {
160                          print "\t",$u->{'name'}, " <", $u->{'email'}, ">\n";                          print "\t",$u->{'name'}, " <", $u->{'email'}, ">",( $u->{'ext_id'} ? ' ['.$u->{'ext_id'}.']' : '' ),"\n";
161                  }                  }
162          }          }
163    
# Line 136  argument) or read from C<STDIN>. List sh Line 174  argument) or read from C<STDIN>. List sh
174    
175  } elsif ($list_name = $opt->{'add'}) {  } elsif ($list_name = $opt->{'add'}) {
176    
177          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";  
178    
179          my $added = 0;          my $added = 0;
180    
# Line 152  argument) or read from C<STDIN>. List sh Line 188  argument) or read from C<STDIN>. List sh
188          print "list ",$list->name," has $added users\n";          print "list ",$list->name," has $added users\n";
189    
190    
191    =item --delete=list_name
192    
193    Delete users from list. User e-mails can be stored in file (which can be
194    supplied as argument) or read from C<STDIN>.
195    
196    =cut
197    } elsif ($list_name = $opt->{'delete'}) {
198    
199            my $list = $nos->_get_list($list_name) || die "can't find list $list_name\n";
200    
201            my $deleted = 0;
202    
203            while(<>) {
204                    chomp;
205                    next if (/^#/ || /^\s*$/);
206                    my $email = $_;
207                    $deleted++ if ($nos->delete_member_from_list( email => $email, list => $list_name ));
208            }
209    
210            print "list ",$list->name," lost $deleted users\n";
211    
212    
213  =item --queue[=list_name]  =item --queue[=list_name]
214    
215  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 216  between sending e-mail. Line 274  between sending e-mail.
274    
275  } elsif (defined($list_name = $opt->{'send'})) {  } elsif (defined($list_name = $opt->{'send'})) {
276    
277            unless ($opt->{'email_send_driver'}) {
278                    print "WARNING: this will dump debugging output to STDERR\n";
279                    print "enter alternative driver (e.g. smtp): ";
280                    my $d = <STDIN>;
281                    chomp($d);
282                    $opt->{'email_send_driver'} = $d;
283            }
284    
285          $nos->send_queued_messages(          $nos->send_queued_messages(
286                  list => $list_name,                  list => $list_name,
287                  driver => $opt->{'email_send_driver'},                  driver => $opt->{'email_send_driver'},
288                  sleep => $opt->{'sleep'},                  sleep => $opt->{'sleep'},
289                    verbose => 1,
290          );          );
291    
292    
# Line 243  Feed incomming message back into notice Line 310  Feed incomming message back into notice
310    
311    
312  } else  {  } else  {
313          die "see perldoc $0 for help\n";          pod2usage(-verbose=>0);
314  }  }
315    
316  =back  =back
# Line 264  Dump more info on screen. Line 331  Dump more info on screen.
331    
332  =back  =back
333    
334    =head1 DESCRIPTION
335    
336    This command will use notice-sender C<Nos.pm> module directly to make modifications on lists
337    or with C<--inbox> option server as incomming mail filter.
338    
339  =head1 AUTHOR  =head1 AUTHOR
340    

Legend:
Removed from v.49  
changed lines
  Added in v.93

  ViewVC Help
Powered by ViewVC 1.1.26