Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts
file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
# Friendly Color Names | |
Black="\[\033[0;30m\]" | |
Dark_Gray="\[\033[1;30m\]" | |
Blue="\[\033[0;34m\]" | |
Light_Blue="\[\033[1;34m\]" | |
Green="\[\033[0;32m\]" | |
Light_Green="\[\033[1;32m\]" | |
Cyan="\[\033[0;36m\]" | |
Light_Cyan="\[\033[1;36m\]" | |
Red="\[\033[0;31m\]" |
Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts
file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
Download hMailServer from here: http://www.hmailserver.com/index.php?page=background_download_file&downloadid=207.
The goal of this document is to provide a simple guide to help Wix.com users to embed the CloudSponge widget.
Wix platform do not support direct JavaScript on pages, only in an iframe. So we've created a sample Wix page to display how embed the CloudSponge widget.
In the follow steps, we'll reproduce the instructions in a new Wix page to embed the CloudSponge widget.
Drupal.org users can easily integrate CloudSponge in Drupal.org using the CloudSponge Drupal module.
If for some reason, users cannot use the above module, there is another alternative: use the CloudSponge widget including our simple snipet in a full HTML page. To achieve this, we'll insert the CloudSponge JavaScript library in the default theme.
Compared to Drupal 6, Drupal 7 platform has changed the way to support JavaScript in the pages and introduced several new techniques that allow users to embed JavaScript in Drupal site's pages.
In the follow steps, we'll reproduce the instructions in a new Drupal instance to embed the CloudSponge widget.
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- | |
Include the script anywhere on your page, usually in the head | |
(don't forget to replace `localhost-only` with your own CloudSponge Widget Key) | |
--> | |
<script src="//api.cloudsponge.com/widget/localhost-only.js"></script> | |
<script> |
# TODO: Add production URLs to the list | |
# Use '*' if you want expose the API to the world | |
accept = [ | |
'http://127.0.0.1:5173', # Dev Frontend | |
'http://localhost:5173', # Dev Frontend | |
'http://127.0.0.1:5174', # Dev Frontend | |
'http://localhost:5174', # Dev Frontend | |
] | |
Rails.application.config.middleware.insert_before 0, Rack::Cors do |