Skip to content

Instantly share code, notes, and snippets.

@markbates
Created August 29, 2008 15:59
Show Gist options
  • Save markbates/7990 to your computer and use it in GitHub Desktop.
Save markbates/7990 to your computer and use it in GitHub Desktop.
configatron do |config|
config.website_url = "http://www.mackframework.com"
config.namespace(:email) do |email|
email.namespace(:pop) do |pop|
pop.address = "pop.example.com"
pop.port = "110"
# etc ...
end
email.namespace(:smtp) do |smtp|
smtp.address = "smtp.example.com"
smtp.port = "25"
# etc ...
end
end
# etc...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment