fcn-sympa 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #!/usr/bin/perl
  2. use strict;
  3. use Getopt::Long;
  4. use lib '/usr/share/sympa/lib';
  5. use Conf;
  6. use List;
  7. use Log;
  8. use Data::Dumper;
  9. my %options;
  10. unless (&GetOptions(\%main::options, 'import=s')) {
  11. &fatal_err("Unknown options.");
  12. }
  13. my $config_file = $main::options{'config'} || Sympa::Constants::CONFIG;
  14. ## Load configuration file. Ignoring database config for now
  15. unless (Conf::load($config_file,1)) {
  16. &fatal_err("Configuration file $config_file has errors.");
  17. }
  18. ## Probe Db if defined
  19. if ($Conf{'db_name'} and $Conf{'db_type'}) {
  20. unless (&Upgrade::probe_db()) {
  21. &fatal_err('Database %s defined in sympa.conf has not the right structure', $Conf{'db_name'});
  22. }
  23. }
  24. ## Now trying to load full config (including database)
  25. unless (Conf::load($config_file)) {
  26. &fatal_err("Configuration file $config_file has errors.");
  27. }
  28. do_openlog($Conf::Conf{'syslog'}, $Conf::Conf{'log_socket_type'}, 'bulk');
  29. if ($main::options{'import'}) {
  30. my ($list);
  31. ## The parameter should be a list address
  32. unless ($main::options{'import'} =~ /\@/) {
  33. &do_log('err','Incorrect list address %s', $main::options{'import'});
  34. exit;
  35. }
  36. unless ($list = new List ($main::options{'import'})) {
  37. fatal_err('Unknown list name %s', $main::options{'import'});
  38. }
  39. my %subscribers = ();
  40. ## Read imported data from STDIN
  41. while (<STDIN>) {
  42. next if /^\s*$/;
  43. next if /^\s*\#/;
  44. unless (/^\s*((\S+|\".*\")@\S+)(\s*(\S.*))?\s*$/) {
  45. printf STDERR "Not an email address: %s\n", $_;
  46. }
  47. my $email = lc($1);
  48. my $gecos = "";
  49. my $u;
  50. my $defaults = $list->get_default_user_options();
  51. %{$u} = %{$defaults};
  52. $u->{'email'} = $email;
  53. $u->{'gecos'} = $gecos;
  54. if (!$list->is_user($email)) {
  55. unless($list->add_user($u)) {
  56. printf STDERR "\nCould not add %s\n", $email;
  57. next;
  58. }
  59. }
  60. $subscribers{$email} = 1;
  61. }
  62. ## Remove existing subscribers not found in STDIN
  63. for (my $user = $list->get_first_user(); $user; $user = $list->get_next_user() ) {
  64. my $email = lc($user->{'email'});
  65. if (!exists($subscribers{$email})) {
  66. unless ( $list->delete_user('users' => [$email]) ) {
  67. printf STDERR "\nCould not delete %s\n", $email;
  68. next;
  69. }
  70. }
  71. }
  72. exit 0;
  73. }