# File email/lib/symbiosis/domain/mailbox.rb, line 344
      def password=(pw)
        @password = pw
        self.create

        p_dir, p_file = File.split(self.password_file)

        if @encrypt_password
          set_param(self.dot + "password", self.domain.crypt_password(@password), self.directory, :mode => 0600)
        else
          set_param(self.dot + "password", @password, self.directory, :mode => 0600)
        end

        return @password
      end