X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmv%2Fplugins%2Froundcube.rb;fp=lib%2Fmv%2Fplugins%2Froundcube.rb;h=50a52c302cd2a25613f4c463eb5232c7a756b055;hp=0000000000000000000000000000000000000000;hb=7f8654ed6582062a295e1be75ae70e99de41b323;hpb=bd2dabf89ab277fbe315b05e6dfa839afb5ce5ef diff --git a/lib/mv/plugins/roundcube.rb b/lib/mv/plugins/roundcube.rb new file mode 100644 index 0000000..50a52c3 --- /dev/null +++ b/lib/mv/plugins/roundcube.rb @@ -0,0 +1,41 @@ +require 'pg' + +require 'common/roundcube_plugin' +require 'mv/mv_plugin' + +class RoundcubeMv + + include RoundcubePlugin + include MvPlugin + + + def mv_domain(from, to) + # Roundcube doesn't have a concept of domains. + end + + def mv_account(from, to) + sql_queries = ['UPDATE users SET username = $1 WHERE username = $2;'] + + begin + connection = PGconn.connect(@db_host, + @db_port, + @db_opts, + @db_tty, + @db_name, + @db_user, + @db_pass) + + sql_queries.each do |sql_query| + connection.query(sql_query, [to, from]) + end + + connection.close() + + rescue PGError => e + # Pretend like we're database-agnostic in case we ever are. + raise DatabaseError.new(e) + end + + end + +end