In your user model, where you call act_as_authentic, this might do the trick:
acts_as_authentic do |config|
config.require_password_confirmation = false
config.ignore_blank_passwords = true
end
These configuration parameters, among other things, can be found in lib / authlogic / actions_as_authentic / password.rb (in version 2.1.3).