]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mv/plugins/dovecot_mailstore.rb
Fix typo in mv_plugin.
[mailshears.git] / lib / mv / plugins / dovecot_mailstore.rb
index f0824528b438c3ab7cf9f823ce7dc13209ea3741..4ce1437f8fa474da5a9d77b798e6a8620a7d2fea 100644 (file)
@@ -67,7 +67,8 @@ class DovecotMailstoreMv < Mailstore
     # Return the filesystem path of this account's mailbox.
     # Only works if the account exists!
     if not account.include?('@')
-      raise InvalidAccountError.new("#{account}: Accounts must contain an '@' symbol.")
+      msg = "#{account}: Accounts must contain an '@' symbol."
+      raise InvalidAccountError.new(msg)
     end
 
     account_parts = account.split('@')