EmailConfiguration » History » Revision 2
Revision 1 (Cyber Sprocket, 2009-05-18 22:11) → Revision 2/58 (Philippe Creux, 2009-06-04 12:16)
h1. Email Configuration h2. Configuration Directives This page is a work in progress, the following configuration directives is only a partial list. h3. authentication The type of authentication method expected by your service provider. Valid settings: * :login * :none h3. delivery_method The mail transport method to be used. @:async_smtp@ use asynchronous send. Redmine does not wait the email to be sent to display the next page. Valid settings: * :smtp * :async_smtp h2. Example email.yml Configurations h3. Simple Login Authentication (default settings) <pre> # Outgoing email settings production: delivery_method: :smtp smtp_settings: address: smtp.example.net port: 25 domain: example.net authentication: :login user_name: redmine@example.net password: redmine development: delivery_method: :smtp smtp_settings: address: 127.0.0.1 port: 25 domain: example.net authentication: :login user_name: redmine@example.net password: redmine </pre> h3. No Authentication Example for an SMTP service provider with no authentication. Note the colon before none. <pre> production: delivery_method: :smtp smtp_settings: address: smtp.knology.net port: 25 domain: cybersprocket.com authentication: :none </pre>