X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmv%2Fplugins%2Fpostfixadmin.rb;fp=lib%2Fmv%2Fplugins%2Fpostfixadmin.rb;h=338be052f63affe1bb8deab2041cd994994cfbb6;hp=3b6d1884975b939bbf7bd01f370fbde10cdf653a;hb=f819b178c5c1cb8adda0182c610e5c52fad8bea7;hpb=8a3e804a4c5f33bee1d80243be6b139e45f07a48 diff --git a/lib/mv/plugins/postfixadmin.rb b/lib/mv/plugins/postfixadmin.rb index 3b6d188..338be05 100644 --- a/lib/mv/plugins/postfixadmin.rb +++ b/lib/mv/plugins/postfixadmin.rb @@ -8,20 +8,19 @@ class PostfixadminMv include PostfixadminPlugin include MvPlugin - def mv_user(user_from, user_to) - if not user_exists(user_from) - raise NonexistentUserError.new("source user #{user_from} does not exist") - end - - user_to_parts = user_to.split('@') - localpart_to = user_to_parts[0] - domain_to = user_to_parts[1] + def mv_user(src, dst) + # It's obviously an error if the source user does not exist. + raise NonexistentUserError.new(src.to_s()) if not user_exists(src) - if not domain_exists(domain_to) - msg = "destination domain #{domain_to} does not exist" - raise NonexistentDomainError.new(msg) + # And if the destination domain does not exist. + if not domain_exists(dst.domain()) + raise NonexistentDomainError.new(dst.domain.to_s()) end + # But the destination *user* should *not* exist. + # And it's an error if the destination user exists already. + raise UserAlreadyExistsError.new(dst.to_s()) if user_exists(dst) + mailbox_query = 'UPDATE mailbox SET ' mailbox_query += ' username=$1,' mailbox_query += ' domain=$2,' @@ -51,10 +50,10 @@ class PostfixadminMv sql_queries.each do |sql_query| varchar = 1043 # from pg_type.h - params = [{:value => user_to, :type => varchar}, - {:value => domain_to, :type => varchar}, - {:value => localpart_to, :type => varchar}, - {:value => user_from, :type => varchar}] + params = [{:value => dst.to_s(), :type => varchar}, + {:value => dst.domainpart(), :type => varchar}, + {:value => dst.localpart(), :type => varchar}, + {:value => src.to_s(), :type => varchar}] connection.query(sql_query, params) end