├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── .rubocop_dnsimple.yml ├── .rubocop_todo.yml ├── .tool-versions ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── example ├── config.json └── readme.md ├── lib ├── dnsimple_services.rb └── dnsimple_services │ ├── logger │ └── stdout.rb │ └── verifier.rb └── services ├── 404 ├── config.json ├── logo.png └── readme.md ├── 4ormat ├── config.json ├── logo.png └── readme.md ├── aldryn ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── amazon-elasticbeanstalk ├── config.json ├── logo.png └── readme.md ├── amazon-lightsail ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── amazon-s3 ├── config.json ├── logo.png └── readme.md ├── atmail ├── config.json ├── logo.png └── readme.md ├── bitbucket ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── blackbell ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── blogger ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── clickfunnels ├── config.json ├── logo.png └── readme.md ├── cloudflare ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── divshot ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── djeese ├── config.json └── logo.png ├── fanout ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── fastly ├── config.json ├── logo.png └── readme.md ├── fastmail ├── config.json ├── logo.png └── readme.md ├── format ├── config.json ├── logo.png └── readme.md ├── geniuslink ├── config.json ├── logo.png └── readme.md ├── gigalixir ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── github-pages ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── google-apps ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── heroku-ssl ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── heroku ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── icloud-plus ├── config.json ├── logo.png └── readme.md ├── jimdo ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── kickofflabs ├── config.json ├── logo.png └── readme.md ├── launchrock ├── config.json ├── logo.png └── readme.md ├── mailgun ├── config.json ├── logo.png └── readme.md ├── netlify ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── office-365 ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── page-not-found ├── config.json ├── logo.png └── readme.md ├── paperplane ├── config.json ├── logo.png └── readme.md ├── platformsh ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── pobox ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── postmark-dmarc ├── config.json ├── logo.png └── readme.md ├── postmark ├── config.json ├── logo.png └── readme.md ├── rackspace-email ├── config.json ├── logo.png └── readme.md ├── roon ├── config.json ├── logo.png └── readme.md ├── shopify ├── config.json ├── logo.png └── readme.md ├── simplybuilt ├── config.json ├── instructions.md ├── logo.png └── readme.md ├── squarespace ├── config.json ├── logo.png └── readme.md ├── squarespace6 ├── config.json ├── logo.png └── readme.md ├── supadupa ├── config.json ├── logo.png └── readme.md ├── surge ├── config.json ├── logo.png └── readme.md ├── tender ├── config.json ├── logo.png └── readme.md ├── tumblr ├── config.json ├── logo.png └── readme.md ├── urlforward ├── config.json ├── logo.png └── readme.md ├── webflow ├── config.json ├── logo.png └── readme.md ├── weebly ├── config.json ├── logo.png └── readme.md ├── windows-azure ├── config.json ├── logo.png └── readme.md └── wordpress ├── config.json ├── instructions.md ├── logo.png └── readme.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_dnsimple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/.rubocop_dnsimple.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | # Update also: .rubocop.yml 2 | ruby 3.4.2 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/Rakefile -------------------------------------------------------------------------------- /example/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/example/config.json -------------------------------------------------------------------------------- /example/readme.md: -------------------------------------------------------------------------------- 1 | Explain what the service is here. 2 | -------------------------------------------------------------------------------- /lib/dnsimple_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/lib/dnsimple_services.rb -------------------------------------------------------------------------------- /lib/dnsimple_services/logger/stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/lib/dnsimple_services/logger/stdout.rb -------------------------------------------------------------------------------- /lib/dnsimple_services/verifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/lib/dnsimple_services/verifier.rb -------------------------------------------------------------------------------- /services/404/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/404/config.json -------------------------------------------------------------------------------- /services/404/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/404/logo.png -------------------------------------------------------------------------------- /services/404/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/404/readme.md -------------------------------------------------------------------------------- /services/4ormat/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/4ormat/config.json -------------------------------------------------------------------------------- /services/4ormat/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/4ormat/logo.png -------------------------------------------------------------------------------- /services/4ormat/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/4ormat/readme.md -------------------------------------------------------------------------------- /services/aldryn/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/aldryn/config.json -------------------------------------------------------------------------------- /services/aldryn/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/aldryn/instructions.md -------------------------------------------------------------------------------- /services/aldryn/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/aldryn/logo.png -------------------------------------------------------------------------------- /services/aldryn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/aldryn/readme.md -------------------------------------------------------------------------------- /services/amazon-elasticbeanstalk/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/amazon-elasticbeanstalk/config.json -------------------------------------------------------------------------------- /services/amazon-elasticbeanstalk/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/amazon-elasticbeanstalk/logo.png -------------------------------------------------------------------------------- /services/amazon-elasticbeanstalk/readme.md: -------------------------------------------------------------------------------- 1 | Explain what the service is here. 2 | -------------------------------------------------------------------------------- /services/amazon-lightsail/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/amazon-lightsail/config.json -------------------------------------------------------------------------------- /services/amazon-lightsail/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/amazon-lightsail/instructions.md -------------------------------------------------------------------------------- /services/amazon-lightsail/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/amazon-lightsail/logo.png -------------------------------------------------------------------------------- /services/amazon-lightsail/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/amazon-lightsail/readme.md -------------------------------------------------------------------------------- /services/amazon-s3/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/amazon-s3/config.json -------------------------------------------------------------------------------- /services/amazon-s3/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/amazon-s3/logo.png -------------------------------------------------------------------------------- /services/amazon-s3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/amazon-s3/readme.md -------------------------------------------------------------------------------- /services/atmail/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/atmail/config.json -------------------------------------------------------------------------------- /services/atmail/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/atmail/logo.png -------------------------------------------------------------------------------- /services/atmail/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/atmail/readme.md -------------------------------------------------------------------------------- /services/bitbucket/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/bitbucket/config.json -------------------------------------------------------------------------------- /services/bitbucket/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/bitbucket/instructions.md -------------------------------------------------------------------------------- /services/bitbucket/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/bitbucket/logo.png -------------------------------------------------------------------------------- /services/bitbucket/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/bitbucket/readme.md -------------------------------------------------------------------------------- /services/blackbell/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/blackbell/config.json -------------------------------------------------------------------------------- /services/blackbell/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/blackbell/instructions.md -------------------------------------------------------------------------------- /services/blackbell/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/blackbell/logo.png -------------------------------------------------------------------------------- /services/blackbell/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/blackbell/readme.md -------------------------------------------------------------------------------- /services/blogger/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/blogger/config.json -------------------------------------------------------------------------------- /services/blogger/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/blogger/instructions.md -------------------------------------------------------------------------------- /services/blogger/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/blogger/logo.png -------------------------------------------------------------------------------- /services/blogger/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/blogger/readme.md -------------------------------------------------------------------------------- /services/clickfunnels/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/clickfunnels/config.json -------------------------------------------------------------------------------- /services/clickfunnels/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/clickfunnels/logo.png -------------------------------------------------------------------------------- /services/clickfunnels/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/clickfunnels/readme.md -------------------------------------------------------------------------------- /services/cloudflare/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/cloudflare/config.json -------------------------------------------------------------------------------- /services/cloudflare/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/cloudflare/instructions.md -------------------------------------------------------------------------------- /services/cloudflare/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/cloudflare/logo.png -------------------------------------------------------------------------------- /services/cloudflare/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/cloudflare/readme.md -------------------------------------------------------------------------------- /services/divshot/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/divshot/config.json -------------------------------------------------------------------------------- /services/divshot/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/divshot/instructions.md -------------------------------------------------------------------------------- /services/divshot/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/divshot/logo.png -------------------------------------------------------------------------------- /services/divshot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/divshot/readme.md -------------------------------------------------------------------------------- /services/djeese/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/djeese/config.json -------------------------------------------------------------------------------- /services/djeese/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/djeese/logo.png -------------------------------------------------------------------------------- /services/fanout/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/fanout/config.json -------------------------------------------------------------------------------- /services/fanout/instructions.md: -------------------------------------------------------------------------------- 1 | Enter your Fanout realm ID. 2 | -------------------------------------------------------------------------------- /services/fanout/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/fanout/logo.png -------------------------------------------------------------------------------- /services/fanout/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/fanout/readme.md -------------------------------------------------------------------------------- /services/fastly/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/fastly/config.json -------------------------------------------------------------------------------- /services/fastly/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/fastly/logo.png -------------------------------------------------------------------------------- /services/fastly/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/fastly/readme.md -------------------------------------------------------------------------------- /services/fastmail/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/fastmail/config.json -------------------------------------------------------------------------------- /services/fastmail/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/fastmail/logo.png -------------------------------------------------------------------------------- /services/fastmail/readme.md: -------------------------------------------------------------------------------- 1 | Email, calendars and contacts done right. 2 | -------------------------------------------------------------------------------- /services/format/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/format/config.json -------------------------------------------------------------------------------- /services/format/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/format/logo.png -------------------------------------------------------------------------------- /services/format/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/format/readme.md -------------------------------------------------------------------------------- /services/geniuslink/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/geniuslink/config.json -------------------------------------------------------------------------------- /services/geniuslink/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/geniuslink/logo.png -------------------------------------------------------------------------------- /services/geniuslink/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/geniuslink/readme.md -------------------------------------------------------------------------------- /services/gigalixir/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/gigalixir/config.json -------------------------------------------------------------------------------- /services/gigalixir/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/gigalixir/instructions.md -------------------------------------------------------------------------------- /services/gigalixir/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/gigalixir/logo.png -------------------------------------------------------------------------------- /services/gigalixir/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/gigalixir/readme.md -------------------------------------------------------------------------------- /services/github-pages/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/github-pages/config.json -------------------------------------------------------------------------------- /services/github-pages/instructions.md: -------------------------------------------------------------------------------- 1 | Enter your Github Pages user, organization or project name. 2 | -------------------------------------------------------------------------------- /services/github-pages/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/github-pages/logo.png -------------------------------------------------------------------------------- /services/github-pages/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/github-pages/readme.md -------------------------------------------------------------------------------- /services/google-apps/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/google-apps/config.json -------------------------------------------------------------------------------- /services/google-apps/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/google-apps/instructions.md -------------------------------------------------------------------------------- /services/google-apps/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/google-apps/logo.png -------------------------------------------------------------------------------- /services/google-apps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/google-apps/readme.md -------------------------------------------------------------------------------- /services/heroku-ssl/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/heroku-ssl/config.json -------------------------------------------------------------------------------- /services/heroku-ssl/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/heroku-ssl/instructions.md -------------------------------------------------------------------------------- /services/heroku-ssl/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/heroku-ssl/logo.png -------------------------------------------------------------------------------- /services/heroku-ssl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/heroku-ssl/readme.md -------------------------------------------------------------------------------- /services/heroku/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/heroku/config.json -------------------------------------------------------------------------------- /services/heroku/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/heroku/instructions.md -------------------------------------------------------------------------------- /services/heroku/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/heroku/logo.png -------------------------------------------------------------------------------- /services/heroku/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/heroku/readme.md -------------------------------------------------------------------------------- /services/icloud-plus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/icloud-plus/config.json -------------------------------------------------------------------------------- /services/icloud-plus/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/icloud-plus/logo.png -------------------------------------------------------------------------------- /services/icloud-plus/readme.md: -------------------------------------------------------------------------------- 1 | Set up a custom domain with iCloud Mail. 2 | -------------------------------------------------------------------------------- /services/jimdo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/jimdo/config.json -------------------------------------------------------------------------------- /services/jimdo/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/jimdo/instructions.md -------------------------------------------------------------------------------- /services/jimdo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/jimdo/logo.png -------------------------------------------------------------------------------- /services/jimdo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/jimdo/readme.md -------------------------------------------------------------------------------- /services/kickofflabs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/kickofflabs/config.json -------------------------------------------------------------------------------- /services/kickofflabs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/kickofflabs/logo.png -------------------------------------------------------------------------------- /services/kickofflabs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/kickofflabs/readme.md -------------------------------------------------------------------------------- /services/launchrock/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/launchrock/config.json -------------------------------------------------------------------------------- /services/launchrock/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/launchrock/logo.png -------------------------------------------------------------------------------- /services/launchrock/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/launchrock/readme.md -------------------------------------------------------------------------------- /services/mailgun/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/mailgun/config.json -------------------------------------------------------------------------------- /services/mailgun/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/mailgun/logo.png -------------------------------------------------------------------------------- /services/mailgun/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/mailgun/readme.md -------------------------------------------------------------------------------- /services/netlify/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/netlify/config.json -------------------------------------------------------------------------------- /services/netlify/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/netlify/instructions.md -------------------------------------------------------------------------------- /services/netlify/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/netlify/logo.png -------------------------------------------------------------------------------- /services/netlify/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/netlify/readme.md -------------------------------------------------------------------------------- /services/office-365/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/office-365/config.json -------------------------------------------------------------------------------- /services/office-365/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/office-365/instructions.md -------------------------------------------------------------------------------- /services/office-365/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/office-365/logo.png -------------------------------------------------------------------------------- /services/office-365/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/office-365/readme.md -------------------------------------------------------------------------------- /services/page-not-found/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/page-not-found/config.json -------------------------------------------------------------------------------- /services/page-not-found/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/page-not-found/logo.png -------------------------------------------------------------------------------- /services/page-not-found/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/page-not-found/readme.md -------------------------------------------------------------------------------- /services/paperplane/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/paperplane/config.json -------------------------------------------------------------------------------- /services/paperplane/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/paperplane/logo.png -------------------------------------------------------------------------------- /services/paperplane/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/paperplane/readme.md -------------------------------------------------------------------------------- /services/platformsh/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/platformsh/config.json -------------------------------------------------------------------------------- /services/platformsh/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/platformsh/instructions.md -------------------------------------------------------------------------------- /services/platformsh/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/platformsh/logo.png -------------------------------------------------------------------------------- /services/platformsh/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/platformsh/readme.md -------------------------------------------------------------------------------- /services/pobox/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/pobox/config.json -------------------------------------------------------------------------------- /services/pobox/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/pobox/instructions.md -------------------------------------------------------------------------------- /services/pobox/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/pobox/logo.png -------------------------------------------------------------------------------- /services/pobox/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/pobox/readme.md -------------------------------------------------------------------------------- /services/postmark-dmarc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/postmark-dmarc/config.json -------------------------------------------------------------------------------- /services/postmark-dmarc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/postmark-dmarc/logo.png -------------------------------------------------------------------------------- /services/postmark-dmarc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/postmark-dmarc/readme.md -------------------------------------------------------------------------------- /services/postmark/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/postmark/config.json -------------------------------------------------------------------------------- /services/postmark/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/postmark/logo.png -------------------------------------------------------------------------------- /services/postmark/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/postmark/readme.md -------------------------------------------------------------------------------- /services/rackspace-email/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/rackspace-email/config.json -------------------------------------------------------------------------------- /services/rackspace-email/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/rackspace-email/logo.png -------------------------------------------------------------------------------- /services/rackspace-email/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/rackspace-email/readme.md -------------------------------------------------------------------------------- /services/roon/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/roon/config.json -------------------------------------------------------------------------------- /services/roon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/roon/logo.png -------------------------------------------------------------------------------- /services/roon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/roon/readme.md -------------------------------------------------------------------------------- /services/shopify/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/shopify/config.json -------------------------------------------------------------------------------- /services/shopify/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/shopify/logo.png -------------------------------------------------------------------------------- /services/shopify/readme.md: -------------------------------------------------------------------------------- 1 | Use Shopify to create your online store. 2 | -------------------------------------------------------------------------------- /services/simplybuilt/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/simplybuilt/config.json -------------------------------------------------------------------------------- /services/simplybuilt/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/simplybuilt/instructions.md -------------------------------------------------------------------------------- /services/simplybuilt/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/simplybuilt/logo.png -------------------------------------------------------------------------------- /services/simplybuilt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/simplybuilt/readme.md -------------------------------------------------------------------------------- /services/squarespace/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/squarespace/config.json -------------------------------------------------------------------------------- /services/squarespace/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/squarespace/logo.png -------------------------------------------------------------------------------- /services/squarespace/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/squarespace/readme.md -------------------------------------------------------------------------------- /services/squarespace6/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/squarespace6/config.json -------------------------------------------------------------------------------- /services/squarespace6/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/squarespace6/logo.png -------------------------------------------------------------------------------- /services/squarespace6/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/squarespace6/readme.md -------------------------------------------------------------------------------- /services/supadupa/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/supadupa/config.json -------------------------------------------------------------------------------- /services/supadupa/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/supadupa/logo.png -------------------------------------------------------------------------------- /services/supadupa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/supadupa/readme.md -------------------------------------------------------------------------------- /services/surge/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/surge/config.json -------------------------------------------------------------------------------- /services/surge/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/surge/logo.png -------------------------------------------------------------------------------- /services/surge/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/surge/readme.md -------------------------------------------------------------------------------- /services/tender/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/tender/config.json -------------------------------------------------------------------------------- /services/tender/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/tender/logo.png -------------------------------------------------------------------------------- /services/tender/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/tender/readme.md -------------------------------------------------------------------------------- /services/tumblr/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/tumblr/config.json -------------------------------------------------------------------------------- /services/tumblr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/tumblr/logo.png -------------------------------------------------------------------------------- /services/tumblr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/tumblr/readme.md -------------------------------------------------------------------------------- /services/urlforward/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/urlforward/config.json -------------------------------------------------------------------------------- /services/urlforward/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/urlforward/logo.png -------------------------------------------------------------------------------- /services/urlforward/readme.md: -------------------------------------------------------------------------------- 1 | Quickly forward all web traffic from your domain to another URL. 2 | -------------------------------------------------------------------------------- /services/webflow/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/webflow/config.json -------------------------------------------------------------------------------- /services/webflow/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/webflow/logo.png -------------------------------------------------------------------------------- /services/webflow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/webflow/readme.md -------------------------------------------------------------------------------- /services/weebly/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/weebly/config.json -------------------------------------------------------------------------------- /services/weebly/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/weebly/logo.png -------------------------------------------------------------------------------- /services/weebly/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/weebly/readme.md -------------------------------------------------------------------------------- /services/windows-azure/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/windows-azure/config.json -------------------------------------------------------------------------------- /services/windows-azure/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/windows-azure/logo.png -------------------------------------------------------------------------------- /services/windows-azure/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/windows-azure/readme.md -------------------------------------------------------------------------------- /services/wordpress/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/wordpress/config.json -------------------------------------------------------------------------------- /services/wordpress/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/wordpress/instructions.md -------------------------------------------------------------------------------- /services/wordpress/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/wordpress/logo.png -------------------------------------------------------------------------------- /services/wordpress/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnsimple/dnsimple-services/HEAD/services/wordpress/readme.md --------------------------------------------------------------------------------