Some internal SMTP systems might be configured to not require authentication. Keila should support this by letting users pick the authentication method. This should be done in the following way:
smtp_auth_method. It should support the values password and none. Empty values should also be allowed for backwards-compatibility.to_swoosh_config function so that it does the following: When smtp_auth_method is set to "password", set: auth: :always, if it's set to "none", set: auth: :never. Else, set explicitly set auth: :if_available.password and none. password should be the default.