123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- #!/usr/bin/perl -w
-
- ################################################################################
- #
- # cleanupdirs 1.2 by jared bell <jared@beol.net>
- #
- # display/remove maildir & domains directory tree's not listed in the postfix
- # mysql database. currently setup for use with postfixadmin, but can be
- # adapted. edit settings where it says 'change settings as needed.' by default
- # this program will display a list of directories which need deleted, nothing
- # is actually deleted. to change this behavior, look into the command line
- # arguments.
- #
- # command line arguments:
- # --delete
- # force automatic deletion of directories. instead of displaying a list
- # of deleted directories, they will be logged in the specified logfile.
- # --print
- # display deleted directories as well as log them. only valid when
- # '--delete' has been specified.
- #
- # settings:
- # $root_path = "/home/vmail";
- # if maildir is '/home/vmail/domain.tld/user' then '/home/vmail' is the
- # $root_path. if your maildirs are '/home/vmail/user@domain.tld' then
- # this program will need to be modified in order to work right.
- # $logfile = "/var/log/removed_maildirs.log";
- # the logfile to use when $delete_old_dirs is set to 1
- # $db_* = "*";
- # sets the host, port, database, user and pass to your mysql server
- #
- # version history:
- # 1.2 - removed uneeded settings. added '--print' command line argument
- # 1.1 - added '--delete' command line argument
- # 1.0 - initial release
- #
- ################################################################################
-
- use strict;
- use DBI;
- use File::Path;
- use Getopt::Long;
-
- ### change settings as needed, see notes above #################################
- our $root_path = "/home/vmail";
- our $logfile = "/var/log/removed_maildirs.log";
- our $db_hostname = "localhost";
- our $db_port = "3306"; # this script currently supports MySQL only
- our $db_database = "postfix";
- our $db_username = "someuser";
- our $db_password = "somepass";
-
- # instead of changing this script, you can put your settings to /etc/mail/postfixadmin/cleanupdirs.conf
- # just use perl syntax there to fill the variables listed above (without the "our" keyword). Example:
- # $db_username = 'mail';
- if (-f "/etc/mail/postfixadmin/cleanupdirs.conf") {
- require "/etc/mail/postfixadmin/cleanupdirs.conf";
- }
-
- ################################################################################
-
- ### begin program ##############################################################
- my(@dirs_to_delete, $logfile_open);
- my $delete_old_dirs = 0; # do not delete by default, use cmdline to change this
- my $print_also = 0; # also print items when deleting, use cmdline to change this
- GetOptions ('delete' => \$delete_old_dirs, 'print' => \$print_also);
- my $conn_info = "DBI:mysql:database=$db_database;hostname=$db_hostname;port=$db_port";
- my $dbh = DBI->connect($conn_info, $db_username, $db_password)
- or die $DBI::errstr;
- opendir DOMAINDIR, $root_path
- or die "Unable to access directory '$root_path' ($!)";
- foreach my $domain_dir (sort readdir DOMAINDIR) {
- next if $domain_dir =~ /^\./; # skip dotted dirs
- next if (! -d "$root_path/$domain_dir"); # skip everything that is not a directory
- my $full_domain_dir = "$root_path/$domain_dir";
- opendir USERDIR, $full_domain_dir
- or die "Unable to access directory '$full_domain_dir' ($!)";
- foreach my $user_dir (sort readdir USERDIR) {
- next if $user_dir =~ /^\./; # skip dotted dirs
- push @dirs_to_delete, "$full_domain_dir/$user_dir"
- if &check_dir("SELECT maildir FROM mailbox WHERE maildir = ?",
- "$domain_dir/$user_dir/"); # end slash needed for checkdir
- }
- push @dirs_to_delete, $full_domain_dir
- if &check_dir("SELECT domain FROM domain WHERE domain = ?", $domain_dir);
- }
- closedir USERDIR;
- closedir DOMAINDIR;
- $dbh->disconnect;
- if (@dirs_to_delete) {
- foreach my $to_delete (@dirs_to_delete) {
- if ($delete_old_dirs == 1) {
- $logfile_open = open LOGFILE, ">> $logfile"
- or die "Unable to append logfile '$logfile' ($!)"
- unless $logfile_open;
- rmtree $to_delete;
- print LOGFILE localtime() . " Deleting directory '$to_delete'\n";
- print localtime() . " Deleting directory '$to_delete'\n"
- if $print_also;
- } else {
- print localtime() . " Need to delete directory '$to_delete'\n";
- }
- }
- }
- close LOGFILE if $logfile_open;
- sub check_dir {
- my($query, $dir) = @_;
- my $sth = $dbh->prepare($query);
- my $num_rows = $sth->execute($dir);
- $sth->finish;
- ($num_rows eq "0E0") ? 1 : 0;
- }
|